hotspot/src/share/vm/gc/cms/concurrentMarkSweepGeneration.cpp
author goetz
Thu, 22 Oct 2015 13:07:10 -0400
changeset 33589 7cbd1b2c139b
parent 33230 23bb11a5cf4e
child 33590 338b512e9b40
permissions -rw-r--r--
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux. Reviewed-by: stuefe, coleenp, roland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 28511
diff changeset
     2
 * Copyright (c) 2001, 2015, 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: 5434
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5434
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: 5434
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: 6985
diff changeset
    25
#include "precompiled.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    26
#include "classfile/classLoaderData.hpp"
24426
0a69c8cdfca9 8038654: Separate SymbolTable and StringTable code
gziemski
parents: 24110
diff changeset
    27
#include "classfile/stringTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    29
#include "code/codeCache.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    30
#include "gc/cms/cmsCollectorPolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    31
#include "gc/cms/cmsOopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    32
#include "gc/cms/compactibleFreeListSpace.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    33
#include "gc/cms/concurrentMarkSweepGeneration.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    34
#include "gc/cms/concurrentMarkSweepThread.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    35
#include "gc/cms/parNewGeneration.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    36
#include "gc/cms/vmCMSOperations.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    37
#include "gc/serial/genMarkSweep.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    38
#include "gc/serial/tenuredGeneration.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    39
#include "gc/shared/adaptiveSizePolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    40
#include "gc/shared/cardGeneration.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    41
#include "gc/shared/cardTableRS.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    42
#include "gc/shared/collectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    43
#include "gc/shared/collectorCounters.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    44
#include "gc/shared/collectorPolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    45
#include "gc/shared/gcLocker.inline.hpp"
30771
0d139bc2a24a 8080584: isGCActiveMark.hpp should not include parallelScavengeHeap.hpp
pliden
parents: 30764
diff changeset
    46
#include "gc/shared/gcPolicyCounters.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    47
#include "gc/shared/gcTimer.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    48
#include "gc/shared/gcTrace.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    49
#include "gc/shared/gcTraceTime.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    50
#include "gc/shared/genCollectedHeap.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    51
#include "gc/shared/genOopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    52
#include "gc/shared/isGCActiveMark.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    53
#include "gc/shared/referencePolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    54
#include "gc/shared/strongRootsScope.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    55
#include "gc/shared/taskqueue.inline.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
    56
#include "memory/allocation.hpp"
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
    57
#include "memory/iterator.inline.hpp"
19285
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18996
diff changeset
    58
#include "memory/padded.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    59
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    60
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    61
#include "prims/jvmtiExport.hpp"
25351
7c198a690050 8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents: 25350
diff changeset
    62
#include "runtime/atomic.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    63
#include "runtime/globals_extension.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    64
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    65
#include "runtime/java.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 24110
diff changeset
    66
#include "runtime/orderAccess.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    67
#include "runtime/vmThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    68
#include "services/memoryService.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    69
#include "services/runtimeService.hpp"
30175
543725014c9d 8076457: Fix includes of inline.hpp in GC code
stefank
parents: 30173
diff changeset
    70
#include "utilities/stack.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// statics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
CMSCollector* ConcurrentMarkSweepGeneration::_collector = NULL;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
    74
bool CMSCollector::_full_gc_requested = false;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
    75
GCCause::Cause CMSCollector::_full_gc_cause = GCCause::_no_gc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// In support of CMS/VM thread synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// We split use of the CGC_lock into 2 "levels".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// The low-level locking is of the usual CGC_lock monitor. We introduce
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// a higher level "token" (hereafter "CMS token") built on top of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// low level monitor (hereafter "CGC lock").
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// The token-passing protocol gives priority to the VM thread. The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
// CMS-lock doesn't provide any fairness guarantees, but clients
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// should ensure that it is only held for very short, bounded
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// durations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// When either of the CMS thread or the VM thread is involved in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// collection operations during which it does not want the other
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// thread to interfere, it obtains the CMS token.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// If either thread tries to get the token while the other has
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// it, that thread waits. However, if the VM thread and CMS thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// both want the token, then the VM thread gets priority while the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// CMS thread waits. This ensures, for instance, that the "concurrent"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// phases of the CMS thread's work do not block out the VM thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// for long periods of time as the CMS thread continues to hog
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// the token. (See bug 4616232).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// The baton-passing functions are, however, controlled by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// flags _foregroundGCShouldWait and _foregroundGCIsActive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// and here the low-level CMS lock, not the high level token,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// ensures mutual exclusion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Two important conditions that we have to satisfy:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// 1. if a thread does a low-level wait on the CMS lock, then it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
//    relinquishes the CMS token if it were holding that token
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
//    when it acquired the low-level CMS lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// 2. any low-level notifications on the low-level lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
//    should only be sent when a thread has relinquished the token.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// In the absence of either property, we'd have potential deadlock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// We protect each of the CMS (concurrent and sequential) phases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// with the CMS _token_, not the CMS _lock_.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// The only code protected by CMS lock is the token acquisition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// itself, see ConcurrentMarkSweepThread::[de]synchronize(), and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
// baton-passing code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
// Unfortunately, i couldn't come up with a good abstraction to factor and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
// hide the naked CGC_lock manipulation in the baton-passing code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// further below. That's something we should try to do. Also, the proof
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// of correctness of this 2-level locking scheme is far from obvious,
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
   126
// and potentially quite slippery. We have an uneasy suspicion, for instance,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// that there may be a theoretical possibility of delay/starvation in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// low-level lock/wait/notify scheme used for the baton-passing because of
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
   129
// potential interference with the priority scheme embodied in the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// CMS-token-passing protocol. See related comments at a CGC_lock->wait()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// invocation further below and marked with "XXX 20011219YSR".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// Indeed, as we note elsewhere, this may become yet more slippery
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// in the presence of multiple CMS and/or multiple VM threads. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
class CMSTokenSync: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  bool _is_cms_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  CMSTokenSync(bool is_cms_thread):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _is_cms_thread(is_cms_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    assert(is_cms_thread == Thread::current()->is_ConcurrentGC_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
           "Incorrect argument to constructor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    ConcurrentMarkSweepThread::synchronize(_is_cms_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  ~CMSTokenSync() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    assert(_is_cms_thread ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
             ConcurrentMarkSweepThread::cms_thread_has_cms_token() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
             ConcurrentMarkSweepThread::vm_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
          "Incorrect state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    ConcurrentMarkSweepThread::desynchronize(_is_cms_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// Convenience class that does a CMSTokenSync, and then acquires
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// upto three locks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
class CMSTokenSyncWithLocks: public CMSTokenSync {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Note: locks are acquired in textual declaration order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // and released in the opposite order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  MutexLockerEx _locker1, _locker2, _locker3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  CMSTokenSyncWithLocks(bool is_cms_thread, Mutex* mutex1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
                        Mutex* mutex2 = NULL, Mutex* mutex3 = NULL):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    CMSTokenSync(is_cms_thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    _locker1(mutex1, Mutex::_no_safepoint_check_flag),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    _locker2(mutex2, Mutex::_no_safepoint_check_flag),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    _locker3(mutex3, Mutex::_no_safepoint_check_flag)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
//  Concurrent Mark-Sweep Generation /////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
NOT_PRODUCT(CompactibleFreeListSpace* debug_cms_space;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// This struct contains per-thread things necessary to support parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// young-gen collection.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   181
class CMSParGCThreadState: public CHeapObj<mtGC> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  CFLS_LAB lab;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  PromotionInfo promo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Constructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  CMSParGCThreadState(CompactibleFreeListSpace* cfls) : lab(cfls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    promo.setSpace(cfls);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
ConcurrentMarkSweepGeneration::ConcurrentMarkSweepGeneration(
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   193
     ReservedSpace rs, size_t initial_byte_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
     CardTableRS* ct, bool use_adaptive_freelists,
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 12379
diff changeset
   195
     FreeBlockDictionary<FreeChunk>::DictionaryChoice dictionaryChoice) :
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   196
  CardGeneration(rs, initial_byte_size, ct),
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 5434
diff changeset
   197
  _dilatation_factor(((double)MinChunkSize)/((double)(CollectedHeap::min_fill_size()))),
17325
694922ea5785 8013184: CMS: Call reset_after_compaction() only if a compaction has been done
jmasa
parents: 17324
diff changeset
   198
  _did_compact(false)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  HeapWord* bottom = (HeapWord*) _virtual_space.low();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  HeapWord* end    = (HeapWord*) _virtual_space.high();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  _direct_allocated_words = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    _numObjectsPromoted = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    _numWordsPromoted = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    _numObjectsAllocated = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    _numWordsAllocated = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  _cmsSpace = new CompactibleFreeListSpace(_bts, MemRegion(bottom, end),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
                                           use_adaptive_freelists,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                                           dictionaryChoice);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  NOT_PRODUCT(debug_cms_space = _cmsSpace;)
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   215
  _cmsSpace->_old_gen = this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  _gc_stats = new CMSGCStats();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Verify the assumption that FreeChunk::_prev and OopDesc::_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // offsets match. The ability to tell free chunks from objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // depends on this property.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  debug_only(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    FreeChunk* junk = NULL;
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19548
diff changeset
   224
    assert(UseCompressedClassPointers ||
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
   225
           junk->prev_addr() == (void*)(oop(junk)->klass_addr()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
           "Offset of FreeChunk::_prev within FreeChunk must match"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
           "  that of OopDesc::_klass within OopDesc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  )
30581
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
   229
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
   230
  _par_gc_thread_states = NEW_C_HEAP_ARRAY(CMSParGCThreadState*, ParallelGCThreads, mtGC);
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
   231
  for (uint i = 0; i < ParallelGCThreads; i++) {
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
   232
    _par_gc_thread_states[i] = new CMSParGCThreadState(cmsSpace());
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
   233
  }
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
   234
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  _incremental_collection_failed = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // The "dilatation_factor" is the expansion that can occur on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // account of the fact that the minimum object size in the CMS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // generation may be larger than that in, say, a contiguous young
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  //  generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Ideally, in the calculation below, we'd compute the dilatation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // factor as: MinChunkSize/(promoting_gen's min object size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // Since we do not have such a general query interface for the
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
   243
  // promoting generation, we'll instead just use the minimum
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // object size (which today is a header's worth of space);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // note that all arithmetic is in units of HeapWords.
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 5434
diff changeset
   246
  assert(MinChunkSize >= CollectedHeap::min_fill_size(), "just checking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  assert(_dilatation_factor >= 1.0, "from previous assert");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   250
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   251
// The field "_initiating_occupancy" represents the occupancy percentage
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   252
// at which we trigger a new collection cycle.  Unless explicitly specified
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   253
// via CMSInitiatingOccupancyFraction (argument "io" below), it
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   254
// is calculated by:
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   255
//
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   256
//   Let "f" be MinHeapFreeRatio in
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   257
//
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
   258
//    _initiating_occupancy = 100-f +
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   259
//                           f * (CMSTriggerRatio/100)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   260
//   where CMSTriggerRatio is the argument "tr" below.
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   261
//
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   262
// That is, if we assume the heap is at its desired maximum occupancy at the
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   263
// end of a collection, we let CMSTriggerRatio of the (purported) free
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   264
// space be allocated before initiating a new collection cycle.
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   265
//
15605
bf7de87bbe3a 8006432: Ratio flags should be unsigned
jwilhelm
parents: 15232
diff changeset
   266
void ConcurrentMarkSweepGeneration::init_initiating_occupancy(intx io, uintx tr) {
bf7de87bbe3a 8006432: Ratio flags should be unsigned
jwilhelm
parents: 15232
diff changeset
   267
  assert(io <= 100 && tr <= 100, "Check the arguments");
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   268
  if (io >= 0) {
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   269
    _initiating_occupancy = (double)io / 100.0;
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   270
  } else {
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   271
    _initiating_occupancy = ((100 - MinHeapFreeRatio) +
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   272
                             (double)(tr * MinHeapFreeRatio) / 100.0)
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   273
                            / 100.0;
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   274
  }
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   275
}
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   276
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
void ConcurrentMarkSweepGeneration::ref_processor_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  assert(collector() != NULL, "no collector");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  collector()->ref_processor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
void CMSCollector::ref_processor_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  if (_ref_processor == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    // Allocate and initialize a reference processor
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
   285
    _ref_processor =
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
   286
      new ReferenceProcessor(_span,                               // span
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
   287
                             (ParallelGCThreads > 1) && ParallelRefProcEnabled, // mt processing
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30881
diff changeset
   288
                             ParallelGCThreads,                   // mt processing degree
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
   289
                             _cmsGen->refs_discovery_is_mt(),     // mt discovery
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30881
diff changeset
   290
                             MAX2(ConcGCThreads, ParallelGCThreads), // mt discovery degree
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
   291
                             _cmsGen->refs_discovery_is_atomic(), // discovery is not atomic
24845
e8b8894a77df 8043239: G1: Missing post barrier in processing of j.l.ref.Reference objects
brutisso
parents: 24457
diff changeset
   292
                             &_is_alive_closure);                 // closure for liveness info
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    // Initialize the _ref_processor field of CMSGen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    _cmsGen->set_ref_processor(_ref_processor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
25485
9c3d427eed01 8034246: remove CMS and ParNew adaptive size policy code
jcoomes
parents: 25356
diff changeset
   299
AdaptiveSizePolicy* CMSCollector::size_policy() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  GenCollectedHeap* gch = GenCollectedHeap::heap();
25485
9c3d427eed01 8034246: remove CMS and ParNew adaptive size policy code
jcoomes
parents: 25356
diff changeset
   301
  return gch->gen_policy()->size_policy();
9c3d427eed01 8034246: remove CMS and ParNew adaptive size policy code
jcoomes
parents: 25356
diff changeset
   302
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
void ConcurrentMarkSweepGeneration::initialize_performance_counters() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  const char* gen_name = "old";
32735
c6063d028c3c 8134797: Remove explicit casts in CollectorPolicy hierarchy
kbarrett
parents: 32623
diff changeset
   307
  GenCollectorPolicy* gcp = GenCollectedHeap::heap()->gen_policy();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // Generation Counters - generation 1, 1 subspace
26324
6b9c12e15535 8028787: tmtools/jstat/gcoldcapacity/jstat_gcoldcapacity02 fails nsk.share.Failure: OGC < OGCMN in RT_Baseline
sjohanss
parents: 25893
diff changeset
   309
  _gen_counters = new GenerationCounters(gen_name, 1, 1,
6b9c12e15535 8028787: tmtools/jstat/gcoldcapacity/jstat_gcoldcapacity02 fails nsk.share.Failure: OGC < OGCMN in RT_Baseline
sjohanss
parents: 25893
diff changeset
   310
      gcp->min_old_size(), gcp->max_old_size(), &_virtual_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  _space_counters = new GSpaceCounters(gen_name, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
                                       _virtual_space.reserved_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
                                       this, _gen_counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
CMSStats::CMSStats(ConcurrentMarkSweepGeneration* cms_gen, unsigned int alpha):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  _cms_gen(cms_gen)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  assert(alpha <= 100, "bad value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  _saved_alpha = alpha;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // Initialize the alphas to the bootstrap value of 100.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  _gc0_alpha = _cms_alpha = 100;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  _cms_begin_time.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  _cms_end_time.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  _gc0_duration = 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  _gc0_period = 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  _gc0_promoted = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  _cms_duration = 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  _cms_period = 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  _cms_allocated = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  _cms_used_at_gc0_begin = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  _cms_used_at_gc0_end = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  _allow_duty_cycle_reduction = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  _valid_bits = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   343
double CMSStats::cms_free_adjustment_factor(size_t free) const {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   344
  // TBD: CR 6909490
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   345
  return 1.0;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   346
}
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   347
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   348
void CMSStats::adjust_cms_free_adjustment_factor(bool fail, size_t free) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   349
}
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   350
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
// If promotion failure handling is on use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
// the padded average size of the promotion for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
// young generation collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
double CMSStats::time_until_cms_gen_full() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  size_t cms_free = _cms_gen->cmsSpace()->free();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  GenCollectedHeap* gch = GenCollectedHeap::heap();
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29464
diff changeset
   357
  size_t expected_promotion = MIN2(gch->young_gen()->capacity(),
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   358
                                   (size_t) _cms_gen->gc_stats()->avg_promoted()->padded_average());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  if (cms_free > expected_promotion) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    // Start a cms collection if there isn't enough space to promote
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   361
    // for the next young collection.  Use the padded average as
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    // a safety factor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    cms_free -= expected_promotion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    // Adjust by the safety factor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    double cms_free_dbl = (double)cms_free;
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   367
    double cms_adjustment = (100.0 - CMSIncrementalSafetyFactor) / 100.0;
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   368
    // Apply a further correction factor which tries to adjust
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   369
    // for recent occurance of concurrent mode failures.
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   370
    cms_adjustment = cms_adjustment * cms_free_adjustment_factor(cms_free);
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   371
    cms_free_dbl = cms_free_dbl * cms_adjustment;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    if (PrintGCDetails && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      gclog_or_tty->print_cr("CMSStats::time_until_cms_gen_full: cms_free "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
        SIZE_FORMAT " expected_promotion " SIZE_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
        cms_free, expected_promotion);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      gclog_or_tty->print_cr("  cms_free_dbl %f cms_consumption_rate %f",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
        cms_free_dbl, cms_consumption_rate() + 1.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    // Add 1 in case the consumption rate goes to zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    return cms_free_dbl / (cms_consumption_rate() + 1.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  return 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
// Compare the duration of the cms collection to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// time remaining before the cms generation is empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
// Note that the time from the start of the cms collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
// to the start of the cms sweep (less than the total
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
// duration of the cms collection) can be used.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
// has been tried and some applications experienced
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
// promotion failures early in execution.  This was
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
// possibly because the averages were not accurate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// enough at the beginning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
double CMSStats::time_until_cms_start() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // We add "gc0_period" to the "work" calculation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // below because this query is done (mostly) at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // end of a scavenge, so we need to conservatively
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // account for that much possible delay
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // in the query so as to avoid concurrent mode failures
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // due to starting the collection just a wee bit too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // late.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  double work = cms_duration() + gc0_period();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  double deadline = time_until_cms_gen_full();
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   405
  // If a concurrent mode failure occurred recently, we want to be
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   406
  // more conservative and halve our expected time_until_cms_gen_full()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  if (work > deadline) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    if (Verbose && PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
      gclog_or_tty->print(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
        " CMSCollector: collect because of anticipated promotion "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
        "before full %3.7f + %3.7f > %3.7f ", cms_duration(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
        gc0_period(), time_until_cms_gen_full());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    return 0.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  return work - deadline;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
void CMSStats::print_on(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  st->print(" gc0_alpha=%d,cms_alpha=%d", _gc0_alpha, _cms_alpha);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  st->print(",gc0_dur=%g,gc0_per=%g,gc0_promo=" SIZE_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
               gc0_duration(), gc0_period(), gc0_promoted());
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27252
diff changeset
   424
  st->print(",cms_dur=%g,cms_per=%g,cms_alloc=" SIZE_FORMAT,
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27252
diff changeset
   425
            cms_duration(), cms_period(), cms_allocated());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  st->print(",cms_since_beg=%g,cms_since_end=%g",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
            cms_time_since_begin(), cms_time_since_end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  st->print(",cms_used_beg=" SIZE_FORMAT ",cms_used_end=" SIZE_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
            _cms_used_at_gc0_begin, _cms_used_at_gc0_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  if (valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    st->print(",promo_rate=%g,cms_alloc_rate=%g",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
              promotion_rate(), cms_allocation_rate());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    st->print(",cms_consumption_rate=%g,time_until_full=%g",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
              cms_consumption_rate(), time_until_cms_gen_full());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  st->print(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
#endif // #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
CMSCollector::CollectorState CMSCollector::_collectorState =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
                             CMSCollector::Idling;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
bool CMSCollector::_foregroundGCIsActive = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
bool CMSCollector::_foregroundGCShouldWait = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
CMSCollector::CMSCollector(ConcurrentMarkSweepGeneration* cmsGen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
                           CardTableRS*                   ct,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
                           ConcurrentMarkSweepPolicy*     cp):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  _cmsGen(cmsGen),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  _ct(ct),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  _ref_processor(NULL),    // will be set later
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  _conc_workers(NULL),     // may be set later
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  _abort_preclean(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  _start_sampling(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  _between_prologue_and_epilogue(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  _markBitMap(0, Mutex::leaf + 1, "CMS_markBitMap_lock"),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  _modUnionTable((CardTableModRefBS::card_shift - LogHeapWordSize),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
                 -1 /* lock-free */, "No_lock" /* dummy */),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  _modUnionClosurePar(&_modUnionTable),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   460
  // Adjust my span to cover old (cms) gen
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   461
  _span(cmsGen->reserved()),
390
2e094c1be4af 6662086: 6u4+, 7b11+: CMS never clears referents when -XX:+ParallelRefProcEnabled
ysr
parents: 360
diff changeset
   462
  // Construct the is_alive_closure with _span & markBitMap
2e094c1be4af 6662086: 6u4+, 7b11+: CMS never clears referents when -XX:+ParallelRefProcEnabled
ysr
parents: 360
diff changeset
   463
  _is_alive_closure(_span, &_markBitMap),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  _restart_addr(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  _overflow_list(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  _stats(cmsGen),
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27905
diff changeset
   467
  _eden_chunk_lock(new Mutex(Mutex::leaf + 1, "CMS_eden_chunk_lock", true,
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27905
diff changeset
   468
                             //verify that this lock should be acquired with safepoint check.
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27905
diff changeset
   469
                             Monitor::_safepoint_check_sometimes)),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  _eden_chunk_array(NULL),     // may be set in ctor body
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  _eden_chunk_capacity(0),     // -- ditto --
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  _eden_chunk_index(0),        // -- ditto --
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  _survivor_plab_array(NULL),  // -- ditto --
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  _survivor_chunk_array(NULL), // -- ditto --
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  _survivor_chunk_capacity(0), // -- ditto --
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  _survivor_chunk_index(0),    // -- ditto --
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  _ser_pmc_preclean_ovflw(0),
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
   478
  _ser_kac_preclean_ovflw(0),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  _ser_pmc_remark_ovflw(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  _par_pmc_remark_ovflw(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  _ser_kac_ovflw(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  _par_kac_ovflw(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  _num_par_pushes(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  _collection_count_start(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  _verifying(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  _verification_mark_bm(0, Mutex::leaf + 1, "CMS_verification_mark_bm_lock"),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  _completed_initialization(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  _collector_policy(cp),
21564
4f7edcc6525e 8024954: CMS: CMSClassUnloadingMaxInterval is not implemented correctly. This change is also part of the fix for 8024483.
jmasa
parents: 20282
diff changeset
   491
  _should_unload_classes(CMSClassUnloadingEnabled),
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   492
  _concurrent_cycles_since_last_unload(0),
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
   493
  _roots_scanning_options(GenCollectedHeap::SO_None),
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   494
  _inter_sweep_estimate(CMS_SweepWeight, CMS_SweepPadding),
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
   495
  _intra_sweep_estimate(CMS_SweepWeight, CMS_SweepPadding),
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
   496
  _gc_tracer_cm(new (ResourceObj::C_HEAP, mtGC) CMSTracer()),
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
   497
  _gc_timer_cm(new (ResourceObj::C_HEAP, mtGC) ConcurrentGCTimer()),
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
   498
  _cms_start_registered(false)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  if (ExplicitGCInvokesConcurrentAndUnloadsClasses) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    ExplicitGCInvokesConcurrent = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // Now expand the span and allocate the collection support structures
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  // (MUT, marking bit map etc.) to cover both generations subject to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // For use by dirty card to oop closures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  _cmsGen->cmsSpace()->set_collector(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // Allocate MUT and marking bit map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    MutexLockerEx x(_markBitMap.lock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    if (!_markBitMap.allocate(_span)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
      warning("Failed to allocate CMS Bit Map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    assert(_markBitMap.covers(_span), "_markBitMap inconsistency?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    _modUnionTable.allocate(_span);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    assert(_modUnionTable.covers(_span), "_modUnionTable inconsistency?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
   524
  if (!_markStack.allocate(MarkStackSize)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    warning("Failed to allocate CMS Marking Stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // Support for multi-threaded concurrent phases
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
   530
  if (CMSConcurrentMTEnabled) {
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
   531
    if (FLAG_IS_DEFAULT(ConcGCThreads)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      // just for now
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   533
      FLAG_SET_DEFAULT(ConcGCThreads, (ParallelGCThreads + 3) / 4);
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
   534
    }
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
   535
    if (ConcGCThreads > 1) {
29464
02c245ad3ec9 8073545: Use shorter and more descriptive names for GC worker threads
david
parents: 29200
diff changeset
   536
      _conc_workers = new YieldingFlexibleWorkGang("CMS Thread",
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
   537
                                 ConcGCThreads, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      if (_conc_workers == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
        warning("GC/CMS: _conc_workers allocation failure: "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
              "forcing -CMSConcurrentMTEnabled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
        CMSConcurrentMTEnabled = false;
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
   542
      } else {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
   543
        _conc_workers->initialize_workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
      CMSConcurrentMTEnabled = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  if (!CMSConcurrentMTEnabled) {
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
   550
    ConcGCThreads = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    // Turn off CMSCleanOnEnter optimization temporarily for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    // the MT case where it's not fixed yet; see 6178663.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    CMSCleanOnEnter = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  }
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
   556
  assert((_conc_workers != NULL) == (ConcGCThreads > 1),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
         "Inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  // Parallel task queues; these are shared for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  // concurrent and stop-world phases of CMS, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // are not shared with parallel scavenge (ParNew).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    uint i;
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30881
diff changeset
   564
    uint num_queues = MAX2(ParallelGCThreads, ConcGCThreads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    if ((CMSParallelRemarkEnabled || CMSConcurrentMTEnabled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
         || ParallelRefProcEnabled)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
        && num_queues > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      _task_queues = new OopTaskQueueSet(num_queues);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
      if (_task_queues == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
        warning("task_queues allocation failure.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   574
      _hash_seed = NEW_C_HEAP_ARRAY(int, num_queues, mtGC);
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5702
diff changeset
   575
      typedef Padded<OopTaskQueue> PaddedOopTaskQueue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
      for (i = 0; i < num_queues; i++) {
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5702
diff changeset
   577
        PaddedOopTaskQueue *q = new PaddedOopTaskQueue();
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5702
diff changeset
   578
        if (q == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
          warning("work_queue allocation failure.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
        }
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5702
diff changeset
   582
        _task_queues->register_queue(i, q);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
      for (i = 0; i < num_queues; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
        _task_queues->queue(i)->initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
        _hash_seed[i] = 17;  // copied from ParNew
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   591
  _cmsGen ->init_initiating_occupancy(CMSInitiatingOccupancyFraction, CMSTriggerRatio);
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
   592
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  // Clip CMSBootstrapOccupancy between 0 and 100.
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   594
  _bootstrap_occupancy = CMSBootstrapOccupancy / 100.0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  // Now tell CMS generations the identity of their collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  ConcurrentMarkSweepGeneration::set_collector(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  // Create & start a CMS thread for this CMS collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  _cmsThread = ConcurrentMarkSweepThread::start(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  assert(cmsThread() != NULL, "CMS Thread should have been created");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  assert(cmsThread()->collector() == this,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
         "CMS Thread should refer to this gen");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  assert(CGC_lock != NULL, "Where's the CGC_lock?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  // Support for parallelizing young gen rescan
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  GenCollectedHeap* gch = GenCollectedHeap::heap();
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29464
diff changeset
   608
  assert(gch->young_gen()->kind() == Generation::ParNew, "CMS can only be used with ParNew");
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29464
diff changeset
   609
  _young_gen = (ParNewGeneration*)gch->young_gen();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  if (gch->supports_inline_contig_alloc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    _top_addr = gch->top_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    _end_addr = gch->end_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    assert(_young_gen != NULL, "no _young_gen");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    _eden_chunk_index = 0;
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   615
    _eden_chunk_capacity = (_young_gen->max_capacity() + CMSSamplingGrain) / CMSSamplingGrain;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   616
    _eden_chunk_array = NEW_C_HEAP_ARRAY(HeapWord*, _eden_chunk_capacity, mtGC);
30148
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   617
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // Support for parallelizing survivor space rescan
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
   620
  if ((CMSParallelRemarkEnabled && CMSParallelSurvivorRemarkEnabled) || CMSParallelInitialMarkEnabled) {
5040
529add9be0d5 6910182: CMS: assert(_cursor[j] == _survivor_plab_array[j].end(),"Ctl pt invariant")
jmasa
parents: 5035
diff changeset
   621
    const size_t max_plab_samples =
32368
c7756b9bd6bd 8133349: CMS: Assert failed: Ctl pt invariant
ecaspole
parents: 32360
diff changeset
   622
      _young_gen->max_survivor_size() / (PLAB::min_size() * HeapWordSize);
5040
529add9be0d5 6910182: CMS: assert(_cursor[j] == _survivor_plab_array[j].end(),"Ctl pt invariant")
jmasa
parents: 5035
diff changeset
   623
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   624
    _survivor_plab_array  = NEW_C_HEAP_ARRAY(ChunkArray, ParallelGCThreads, mtGC);
32195
97d13dafd7f8 8078904: CMS: Assert failed: Ctl pt invariant
ecaspole
parents: 31606
diff changeset
   625
    _survivor_chunk_array = NEW_C_HEAP_ARRAY(HeapWord*, max_plab_samples, mtGC);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   626
    _cursor               = NEW_C_HEAP_ARRAY(size_t, ParallelGCThreads, mtGC);
32195
97d13dafd7f8 8078904: CMS: Assert failed: Ctl pt invariant
ecaspole
parents: 31606
diff changeset
   627
    _survivor_chunk_capacity = max_plab_samples;
30148
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   628
    for (uint i = 0; i < ParallelGCThreads; i++) {
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   629
      HeapWord** vec = NEW_C_HEAP_ARRAY(HeapWord*, max_plab_samples, mtGC);
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   630
      ChunkArray* cur = ::new (&_survivor_plab_array[i]) ChunkArray(vec, max_plab_samples);
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   631
      assert(cur->end() == 0, "Should be 0");
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   632
      assert(cur->array() == vec, "Should be vec");
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   633
      assert(cur->capacity() == max_plab_samples, "Error");
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   634
    }
1d79283147a2 8016276: CMS concurrentMarkSweepGeneration contains lots of unnecessary allocation failure handling
david
parents: 29797
diff changeset
   635
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  NOT_PRODUCT(_overflow_counter = CMSMarkStackOverflowInterval;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  _gc_counters = new CollectorCounters("CMS", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  _completed_initialization = true;
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   640
  _inter_sweep_timer.start();  // start of time
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
const char* ConcurrentMarkSweepGeneration::name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  return "concurrent mark-sweep generation";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
void ConcurrentMarkSweepGeneration::update_counters() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    _space_counters->update_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    _gen_counters->update_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
// this is an optimized version of update_counters(). it takes the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
// used value as a parameter rather than computing it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
void ConcurrentMarkSweepGeneration::update_counters(size_t used) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    _space_counters->update_used(used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    _space_counters->update_capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    _gen_counters->update_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
void ConcurrentMarkSweepGeneration::print() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  Generation::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  cmsSpace()->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
void ConcurrentMarkSweepGeneration::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  cmsSpace()->printFLCensus(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
void ConcurrentMarkSweepGeneration::printOccupancy(const char *s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  if (PrintGCDetails) {
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   678
    // I didn't want to change the logging when removing the level concept,
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   679
    // but I guess this logging could say "old" or something instead of "1".
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   680
    assert(gch->is_old_gen(this),
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   681
           "The CMS generation should be the old generation");
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   682
    uint level = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    if (Verbose) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
   684
      gclog_or_tty->print("[%u %s-%s: " SIZE_FORMAT "(" SIZE_FORMAT ")]",
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   685
        level, short_name(), s, used(), capacity());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    } else {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
   687
      gclog_or_tty->print("[%u %s-%s: " SIZE_FORMAT "K(" SIZE_FORMAT "K)]",
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   688
        level, short_name(), s, used() / K, capacity() / K);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  if (Verbose) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
   692
    gclog_or_tty->print(" " SIZE_FORMAT "(" SIZE_FORMAT ")",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
              gch->used(), gch->capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  } else {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
   695
    gclog_or_tty->print(" " SIZE_FORMAT "K(" SIZE_FORMAT "K)",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
              gch->used() / K, gch->capacity() / K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
ConcurrentMarkSweepGeneration::contiguous_available() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  // dld proposes an improvement in precision here. If the committed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  // part of the space ends in a free block we should add that to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  // uncommitted size in the calculation below. Will make this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  // change later, staying with the approximation below for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  // time being. -- ysr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  return MAX2(_virtual_space.uncommitted_size(), unsafe_max_alloc_nogc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
ConcurrentMarkSweepGeneration::unsafe_max_alloc_nogc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  return _cmsSpace->max_alloc_in_words() * HeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
size_t ConcurrentMarkSweepGeneration::max_available() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  return free() + _virtual_space.uncommitted_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   719
bool ConcurrentMarkSweepGeneration::promotion_attempt_is_safe(size_t max_promotion_in_bytes) const {
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   720
  size_t available = max_available();
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   721
  size_t av_promo  = (size_t)gc_stats()->avg_promoted()->padded_average();
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   722
  bool   res = (available >= av_promo) || (available >= max_promotion_in_bytes);
7419
263dd4e89b9d 7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents: 7397
diff changeset
   723
  if (Verbose && PrintGCDetails) {
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   724
    gclog_or_tty->print_cr(
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
   725
      "CMS: promo attempt is%s safe: available(" SIZE_FORMAT ") %s av_promo(" SIZE_FORMAT "),"
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
   726
      "max_promo(" SIZE_FORMAT ")",
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   727
      res? "":" not", available, res? ">=":"<",
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   728
      av_promo, max_promotion_in_bytes);
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   729
  }
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
   730
  return res;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   733
// At a promotion failure dump information on block layout in heap
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   734
// (cms old generation).
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   735
void ConcurrentMarkSweepGeneration::promotion_failure_occurred() {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   736
  if (CMSDumpAtPromotionFailure) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   737
    cmsSpace()->dump_at_safepoint_with_locks(collector(), gclog_or_tty);
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   738
  }
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   739
}
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
   740
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
void ConcurrentMarkSweepGeneration::reset_after_compaction() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  // Clear the promotion information.  These pointers can be adjusted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  // along with all the other pointers into the heap but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  // compaction is expected to be a rare event with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  // a heap using cms so don't do it without seeing the need.
27251
7d667f91ec8d 6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents: 27249
diff changeset
   746
  for (uint i = 0; i < ParallelGCThreads; i++) {
7d667f91ec8d 6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents: 27249
diff changeset
   747
    _par_gc_thread_states[i]->promo.reset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
void ConcurrentMarkSweepGeneration::compute_new_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  assert_locked_or_safepoint(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // If incremental collection failed, we just want to expand
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  // to the limit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  if (incremental_collection_failed()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    clear_incremental_collection_failed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    grow_to_reserved();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
17324
a1518aa0678c 8013032: CMS: assert(used() == used_after_gc && used_after_gc <= capacity()) failed: used: 0 used_after_gc: 292080 capacity: 1431699456
jmasa
parents: 17114
diff changeset
   762
  // The heap has been compacted but not reset yet.
a1518aa0678c 8013032: CMS: assert(used() == used_after_gc && used_after_gc <= capacity()) failed: used: 0 used_after_gc: 292080 capacity: 1431699456
jmasa
parents: 17114
diff changeset
   763
  // Any metric such as free() or used() will be incorrect.
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   764
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   765
  CardGeneration::compute_new_size();
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   766
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   767
  // Reset again after a possible resizing
17325
694922ea5785 8013184: CMS: Call reset_after_compaction() only if a compaction has been done
jmasa
parents: 17324
diff changeset
   768
  if (did_compact()) {
694922ea5785 8013184: CMS: Call reset_after_compaction() only if a compaction has been done
jmasa
parents: 17324
diff changeset
   769
    cmsSpace()->reset_after_compaction();
694922ea5785 8013184: CMS: Call reset_after_compaction() only if a compaction has been done
jmasa
parents: 17324
diff changeset
   770
  }
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   771
}
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   772
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   773
void ConcurrentMarkSweepGeneration::compute_new_size_free_list() {
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   774
  assert_locked_or_safepoint(Heap_lock);
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   775
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   776
  // If incremental collection failed, we just want to expand
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   777
  // to the limit.
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   778
  if (incremental_collection_failed()) {
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   779
    clear_incremental_collection_failed();
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   780
    grow_to_reserved();
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   781
    return;
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   782
  }
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   783
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  double free_percentage = ((double) free()) / capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  double desired_free_percentage = (double) MinHeapFreeRatio / 100;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  double maximum_free_percentage = (double) MaxHeapFreeRatio / 100;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  // compute expansion delta needed for reaching desired free percentage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  if (free_percentage < desired_free_percentage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    size_t desired_capacity = (size_t)(used() / ((double) 1 - desired_free_percentage));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    assert(desired_capacity >= capacity(), "invalid expansion size");
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   792
    size_t expand_bytes = MAX2(desired_capacity - capacity(), MinHeapDeltaBytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    if (PrintGCDetails && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
      size_t desired_capacity = (size_t)(used() / ((double) 1 - desired_free_percentage));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
      gclog_or_tty->print_cr("\nFrom compute_new_size: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
      gclog_or_tty->print_cr("  Free fraction %f", free_percentage);
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   797
      gclog_or_tty->print_cr("  Desired free fraction %f", desired_free_percentage);
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   798
      gclog_or_tty->print_cr("  Maximum free fraction %f", maximum_free_percentage);
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   799
      gclog_or_tty->print_cr("  Capacity " SIZE_FORMAT, capacity() / 1000);
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   800
      gclog_or_tty->print_cr("  Desired capacity " SIZE_FORMAT, desired_capacity / 1000);
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   801
      GenCollectedHeap* gch = GenCollectedHeap::heap();
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   802
      assert(gch->is_old_gen(this), "The CMS generation should always be the old generation");
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   803
      size_t young_size = gch->young_gen()->capacity();
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   804
      gclog_or_tty->print_cr("  Young gen size " SIZE_FORMAT, young_size / 1000);
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   805
      gclog_or_tty->print_cr("  unsafe_max_alloc_nogc " SIZE_FORMAT, unsafe_max_alloc_nogc() / 1000);
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   806
      gclog_or_tty->print_cr("  contiguous available " SIZE_FORMAT, contiguous_available() / 1000);
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   807
      gclog_or_tty->print_cr("  Expand by " SIZE_FORMAT " (bytes)", expand_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    // safe if expansion fails
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
   810
    expand_for_gc_cause(expand_bytes, 0, CMSExpansionCause::_satisfy_free_ratio);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
    if (PrintGCDetails && Verbose) {
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   812
      gclog_or_tty->print_cr("  Expanded free fraction %f", ((double) free()) / capacity());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    }
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   814
  } else {
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   815
    size_t desired_capacity = (size_t)(used() / ((double) 1 - desired_free_percentage));
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   816
    assert(desired_capacity <= capacity(), "invalid expansion size");
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   817
    size_t shrink_bytes = capacity() - desired_capacity;
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   818
    // Don't shrink unless the delta is greater than the minimum shrink we want
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   819
    if (shrink_bytes >= MinHeapDeltaBytes) {
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   820
      shrink_free_list_by(shrink_bytes);
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
   821
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
Mutex* ConcurrentMarkSweepGeneration::freelistLock() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  return cmsSpace()->freelistLock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   829
HeapWord* ConcurrentMarkSweepGeneration::allocate(size_t size, bool tlab) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  CMSSynchronousYieldRequest yr;
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   831
  MutexLockerEx x(freelistLock(), Mutex::_no_safepoint_check_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  return have_lock_and_allocate(size, tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
HeapWord* ConcurrentMarkSweepGeneration::have_lock_and_allocate(size_t size,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
   836
                                                                bool   tlab /* ignored */) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  assert_lock_strong(freelistLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  size_t adjustedSize = CompactibleFreeListSpace::adjustObjectSize(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  HeapWord* res = cmsSpace()->allocate(adjustedSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  // Allocate the object live (grey) if the background collector has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  // started marking. This is necessary because the marker may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  // have passed this address and consequently this object will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  // not otherwise be greyed and would be incorrectly swept up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  // Note that if this object contains references, the writing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  // of those references will dirty the card containing this object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  // allowing the object to be blackened (and its references scanned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  // either during a preclean phase or at the final checkpoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  if (res != NULL) {
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   849
    // We may block here with an uninitialized object with
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   850
    // its mark-bit or P-bits not yet set. Such objects need
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   851
    // to be safely navigable by block_start().
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   852
    assert(oop(res)->klass_or_null() == NULL, "Object should be uninitialized here.");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   853
    assert(!((FreeChunk*)res)->is_free(), "Error, block will look free but show wrong size");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    collector()->direct_allocated(res, adjustedSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    _direct_allocated_words += adjustedSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    // allocation counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
      _numObjectsAllocated++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
      _numWordsAllocated += (int)adjustedSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
// In the case of direct allocation by mutators in a generation that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
// is being concurrently collected, the object must be allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
// live (grey) if the background collector has started marking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
// This is necessary because the marker may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
// have passed this address and consequently this object will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
// not otherwise be greyed and would be incorrectly swept up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
// Note that if this object contains references, the writing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
// of those references will dirty the card containing this object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
// allowing the object to be blackened (and its references scanned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
// either during a preclean phase or at the final checkpoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
void CMSCollector::direct_allocated(HeapWord* start, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  assert(_markBitMap.covers(start, size), "Out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  if (_collectorState >= Marking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    MutexLockerEx y(_markBitMap.lock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
                    Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    // [see comments preceding SweepClosure::do_blk() below for details]
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   881
    //
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   882
    // Can the P-bits be deleted now?  JJJ
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   883
    //
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    // 1. need to mark the object as live so it isn't collected
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    // 2. need to mark the 2nd bit to indicate the object may be uninitialized
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   886
    // 3. need to mark the end of the object so marking, precleaning or sweeping
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   887
    //    can skip over uninitialized or unparsable objects. An allocated
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   888
    //    object is considered uninitialized for our purposes as long as
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   889
    //    its klass word is NULL.  All old gen objects are parsable
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   890
    //    as soon as they are initialized.)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    _markBitMap.mark(start);          // object is live
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    _markBitMap.mark(start + 1);      // object is potentially uninitialized?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    _markBitMap.mark(start + size - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
                                      // mark end of object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  // check that oop looks uninitialized
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
   897
  assert(oop(start)->klass_or_null() == NULL, "_klass should be NULL");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
void CMSCollector::promoted(bool par, HeapWord* start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
                            bool is_obj_array, size_t obj_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  assert(_markBitMap.covers(start), "Out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  // See comment in direct_allocated() about when objects should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  // be allocated live.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  if (_collectorState >= Marking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    // we already hold the marking bit map lock, taken in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    // the prologue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    if (par) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
      _markBitMap.par_mark(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
      _markBitMap.mark(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
    // We don't need to mark the object as uninitialized (as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    // in direct_allocated above) because this is being done with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    // world stopped and the object will be initialized by the
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   916
    // time the marking, precleaning or sweeping get to look at it.
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   917
    // But see the code for copying objects into the CMS generation,
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   918
    // where we need to ensure that concurrent readers of the
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   919
    // block offset table are able to safely navigate a block that
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   920
    // is in flux from being free to being allocated (and in
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   921
    // transition while being copied into) and subsequently
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   922
    // becoming a bona-fide object when the copy/promotion is complete.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
           "expect promotion only at safepoints");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    if (_collectorState < Sweeping) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
      // Mark the appropriate cards in the modUnionTable, so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
      // this object gets scanned before the sweep. If this is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
      // not done, CMS generation references in the object might
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
      // not get marked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
      // For the case of arrays, which are otherwise precisely
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
      // marked, we need to dirty the entire array, not just its head.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
      if (is_obj_array) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
        // The [par_]mark_range() method expects mr.end() below to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
        // be aligned to the granularity of a bit's representation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
        // in the heap. In the case of the MUT below, that's a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        // card size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
        MemRegion mr(start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
                     (HeapWord*)round_to((intptr_t)(start + obj_size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
                        CardTableModRefBS::card_size /* bytes */));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
        if (par) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
          _modUnionTable.par_mark_range(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
          _modUnionTable.mark_range(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
      } else {  // not an obj array; we can just mark the head
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
        if (par) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
          _modUnionTable.par_mark(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
          _modUnionTable.mark(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
   957
oop ConcurrentMarkSweepGeneration::promote(oop obj, size_t obj_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  assert(obj_size == (size_t)obj->size(), "bad obj_size passed in");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  // allocate, copy and if necessary update promoinfo --
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  // delegate to underlying space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  assert_lock_strong(freelistLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
#ifndef PRODUCT
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30153
diff changeset
   964
  if (GenCollectedHeap::heap()->promotion_should_fail()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
#endif  // #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
   969
  oop res = _cmsSpace->promote(obj, obj_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  if (res == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    // expand and retry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    size_t s = _cmsSpace->expansionSpaceRequired(obj_size);  // HeapWords
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
   973
    expand_for_gc_cause(s*HeapWordSize, MinHeapDeltaBytes, CMSExpansionCause::_satisfy_promotion);
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29464
diff changeset
   974
    // Since this is the old generation, we don't try to promote
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    // into a more senior generation.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
   976
    res = _cmsSpace->promote(obj, obj_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  if (res != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    // See comment in allocate() about when objects should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    // be allocated live.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    assert(obj->is_oop(), "Will dereference klass pointer below");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    collector()->promoted(false,           // Not parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
                          (HeapWord*)res, obj->is_objArray(), obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
    // promotion counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
      _numObjectsPromoted++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
      _numWordsPromoted +=
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
        (int)(CompactibleFreeListSpace::adjustObjectSize(obj->size()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   995
// IMPORTANT: Notes on object size recognition in CMS.
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   996
// ---------------------------------------------------
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   997
// A block of storage in the CMS generation is always in
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   998
// one of three states. A free block (FREE), an allocated
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
   999
// object (OBJECT) whose size() method reports the correct size,
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1000
// and an intermediate state (TRANSIENT) in which its size cannot
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1001
// be accurately determined.
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1002
// STATE IDENTIFICATION:   (32 bit and 64 bit w/o COOPS)
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1003
// -----------------------------------------------------
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1004
// FREE:      klass_word & 1 == 1; mark_word holds block size
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1005
//
6447
32cc5cad7fa6 6983930: CMS: Various small cleanups ca September 2010
ysr
parents: 6262
diff changeset
  1006
// OBJECT:    klass_word installed; klass_word != 0 && klass_word & 1 == 0;
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1007
//            obj->size() computes correct size
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1008
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1009
// TRANSIENT: klass_word == 0; size is indeterminate until we become an OBJECT
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1010
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1011
// STATE IDENTIFICATION: (64 bit+COOPS)
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1012
// ------------------------------------
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1013
// FREE:      mark_word & CMS_FREE_BIT == 1; mark_word & ~CMS_FREE_BIT gives block_size
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1014
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1015
// OBJECT:    klass_word installed; klass_word != 0;
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1016
//            obj->size() computes correct size
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1017
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1018
// TRANSIENT: klass_word == 0; size is indeterminate until we become an OBJECT
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1019
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1020
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1021
// STATE TRANSITION DIAGRAM
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1022
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1023
//        mut / parnew                     mut  /  parnew
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1024
// FREE --------------------> TRANSIENT ---------------------> OBJECT --|
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1025
//  ^                                                                   |
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1026
//  |------------------------ DEAD <------------------------------------|
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1027
//         sweep                            mut
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1028
//
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1029
// While a block is in TRANSIENT state its size cannot be determined
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1030
// so readers will either need to come back later or stall until
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1031
// the size can be determined. Note that for the case of direct
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1032
// allocation, P-bits, when available, may be used to determine the
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1033
// size of an object that may not yet have been initialized.
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1034
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
// Things to support parallel young-gen collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
ConcurrentMarkSweepGeneration::par_promote(int thread_num,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
                                           oop old, markOop m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
                                           size_t word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
#ifndef PRODUCT
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30153
diff changeset
  1041
  if (GenCollectedHeap::heap()->promotion_should_fail()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
#endif  // #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  CMSParGCThreadState* ps = _par_gc_thread_states[thread_num];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  PromotionInfo* promoInfo = &ps->promo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  // if we are tracking promotions, then first ensure space for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  // promotion (including spooling space for saving header if necessary).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  // then allocate and copy, then track promoted info if needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  // When tracking (see PromotionInfo::track()), the mark word may
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  // be displaced and in this case restoration of the mark word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  // occurs in the (oop_since_save_marks_)iterate phase.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  if (promoInfo->tracking() && !promoInfo->ensure_spooling_space()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
    // Out of space for allocating spooling buffers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
    // try expanding and allocating spooling buffers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    if (!expand_and_ensure_spooling_space(promoInfo)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  assert(promoInfo->has_spooling_space(), "Control point invariant");
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1062
  const size_t alloc_sz = CompactibleFreeListSpace::adjustObjectSize(word_sz);
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1063
  HeapWord* obj_ptr = ps->lab.alloc(alloc_sz);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  if (obj_ptr == NULL) {
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1065
     obj_ptr = expand_and_par_lab_allocate(ps, alloc_sz);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
     if (obj_ptr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
       return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  oop obj = oop(obj_ptr);
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1071
  OrderAccess::storestore();
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  1072
  assert(obj->klass_or_null() == NULL, "Object should be uninitialized here.");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  1073
  assert(!((FreeChunk*)obj_ptr)->is_free(), "Error, block will look free but show wrong size");
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1074
  // IMPORTANT: See note on object initialization for CMS above.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  // Otherwise, copy the object.  Here we must be careful to insert the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  // klass pointer last, since this marks the block as an allocated object.
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  1077
  // Except with compressed oops it's the mark word.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  HeapWord* old_ptr = (HeapWord*)old;
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1079
  // Restore the mark word copied above.
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1080
  obj->set_mark(m);
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1081
  assert(obj->klass_or_null() == NULL, "Object should be uninitialized here.");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  1082
  assert(!((FreeChunk*)obj_ptr)->is_free(), "Error, block will look free but show wrong size");
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1083
  OrderAccess::storestore();
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1084
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19548
diff changeset
  1085
  if (UseCompressedClassPointers) {
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1086
    // Copy gap missed by (aligned) header size calculation below
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1087
    obj->set_klass_gap(old->klass_gap());
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1088
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  if (word_sz > (size_t)oopDesc::header_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
    Copy::aligned_disjoint_words(old_ptr + oopDesc::header_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
                                 obj_ptr + oopDesc::header_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
                                 word_sz - oopDesc::header_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  }
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  1094
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  // Now we can track the promoted object, if necessary.  We take care
5434
a2e785749780 6951188: CMS: move PromotionInfo into its own file
ysr
parents: 5433
diff changeset
  1096
  // to delay the transition from uninitialized to full object
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  // (i.e., insertion of klass pointer) until after, so that it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  // atomically becomes a promoted object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  if (promoInfo->tracking()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    promoInfo->track((PromotedObject*)obj, old->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  }
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1102
  assert(obj->klass_or_null() == NULL, "Object should be uninitialized here.");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  1103
  assert(!((FreeChunk*)obj_ptr)->is_free(), "Error, block will look free but show wrong size");
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1104
  assert(old->is_oop(), "Will use and dereference old klass ptr below");
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  1105
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  1106
  // Finally, install the klass pointer (this should be volatile).
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1107
  OrderAccess::storestore();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  obj->set_klass(old->klass());
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1109
  // We should now be able to calculate the right size for this object
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1110
  assert(obj->is_oop() && obj->size() == (int)word_sz, "Error, incorrect size computed for promoted object");
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1111
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  collector()->promoted(true,          // parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
                        obj_ptr, old->is_objArray(), word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  NOT_PRODUCT(
6258
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1116
    Atomic::inc_ptr(&_numObjectsPromoted);
68f252c6e825 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 6246
diff changeset
  1117
    Atomic::add_ptr(alloc_sz, &_numWordsPromoted);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
ConcurrentMarkSweepGeneration::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
par_promote_alloc_done(int thread_num) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  CMSParGCThreadState* ps = _par_gc_thread_states[thread_num];
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1127
  ps->lab.retire(thread_num);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
ConcurrentMarkSweepGeneration::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
par_oop_since_save_marks_iterate_done(int thread_num) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  CMSParGCThreadState* ps = _par_gc_thread_states[thread_num];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  ParScanWithoutBarrierClosure* dummy_cl = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  ps->promo.promoted_oops_iterate_nv(dummy_cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
bool ConcurrentMarkSweepGeneration::should_collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
                                                   size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
                                                   bool   tlab)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  // We allow a STW collection only if a full
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  // collection was requested.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  return full || should_allocate(size, tlab); // FIX ME !!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  // This and promotion failure handling are connected at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  // hip and should be fixed by untying them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
bool CMSCollector::shouldConcurrentCollect() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  if (_full_gc_requested) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
    if (Verbose && PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
      gclog_or_tty->print_cr("CMSCollector: collect because of explicit "
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 5431
diff changeset
  1153
                             " gc request (or gc_locker)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  FreelistLocker x(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  // ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  // Print out lots of information which affects the initiation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  // a collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  if (PrintCMSInitiationStatistics && stats().valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
    gclog_or_tty->print("CMSCollector shouldConcurrentCollect: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
    gclog_or_tty->stamp();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24357
diff changeset
  1165
    gclog_or_tty->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    stats().print_on(gclog_or_tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
    gclog_or_tty->print_cr("time_until_cms_gen_full %3.7f",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
      stats().time_until_cms_gen_full());
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  1169
    gclog_or_tty->print_cr("free=" SIZE_FORMAT, _cmsGen->free());
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  1170
    gclog_or_tty->print_cr("contiguous_available=" SIZE_FORMAT,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
                           _cmsGen->contiguous_available());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
    gclog_or_tty->print_cr("promotion_rate=%g", stats().promotion_rate());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    gclog_or_tty->print_cr("cms_allocation_rate=%g", stats().cms_allocation_rate());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    gclog_or_tty->print_cr("occupancy=%3.7f", _cmsGen->occupancy());
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1175
    gclog_or_tty->print_cr("initiatingOccupancy=%3.7f", _cmsGen->initiating_occupancy());
24110
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1176
    gclog_or_tty->print_cr("cms_time_since_begin=%3.7f", stats().cms_time_since_begin());
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1177
    gclog_or_tty->print_cr("cms_time_since_end=%3.7f", stats().cms_time_since_end());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1178
    gclog_or_tty->print_cr("metadata initialized %d",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1179
      MetaspaceGC::should_concurrent_collect());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  // ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  // If the estimated time to complete a cms collection (cms_duration())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  // is less than the estimated time remaining until the cms generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  // is full, start a collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  if (!UseCMSInitiatingOccupancyOnly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    if (stats().valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
      if (stats().time_until_cms_start() == 0.0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
      // We want to conservatively collect somewhat early in order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
      // to try and "bootstrap" our CMS/promotion statistics;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
      // this branch will not fire after the first successful CMS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
      // collection because the stats should then be valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
      if (_cmsGen->occupancy() >= _bootstrap_occupancy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
        if (Verbose && PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
          gclog_or_tty->print_cr(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
            " CMSCollector: collect for bootstrapping statistics:"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
            " occupancy = %f, boot occupancy = %f", _cmsGen->occupancy(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
            _bootstrap_occupancy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1208
  // Otherwise, we start a collection cycle if
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  // old gen want a collection cycle started. Each may use
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  // an appropriate criterion for making this decision.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
  // XXX We need to make sure that the gen expansion
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1212
  // criterion dovetails well with this. XXX NEED TO FIX THIS
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1213
  if (_cmsGen->should_concurrent_collect()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
    if (Verbose && PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
      gclog_or_tty->print_cr("CMS old gen initiated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1220
  // We start a collection if we believe an incremental collection may fail;
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1221
  // this is not likely to be productive in practice because it's probably too
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1222
  // late anyway.
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1223
  GenCollectedHeap* gch = GenCollectedHeap::heap();
24353
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 24110
diff changeset
  1224
  assert(gch->collector_policy()->is_generation_policy(),
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1225
         "You may want to check the correctness of the following");
7419
263dd4e89b9d 7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents: 7397
diff changeset
  1226
  if (gch->incremental_collection_will_fail(true /* consult_young */)) {
263dd4e89b9d 7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents: 7397
diff changeset
  1227
    if (Verbose && PrintGCDetails) {
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1228
      gclog_or_tty->print("CMSCollector: collect because incremental collection will fail ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1233
  if (MetaspaceGC::should_concurrent_collect()) {
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1234
    if (Verbose && PrintGCDetails) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1235
      gclog_or_tty->print("CMSCollector: collect for metadata allocation ");
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1236
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1237
    return true;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  1238
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1239
24110
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1240
  // CMSTriggerInterval starts a CMS cycle if enough time has passed.
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1241
  if (CMSTriggerInterval >= 0) {
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1242
    if (CMSTriggerInterval == 0) {
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1243
      // Trigger always
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1244
      return true;
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1245
    }
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1246
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1247
    // Check the CMS time since begin (we do not check the stats validity
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1248
    // as we want to be able to trigger the first CMS cycle as well)
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1249
    if (stats().cms_time_since_begin() >= (CMSTriggerInterval / ((double) MILLIUNITS))) {
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1250
      if (Verbose && PrintGCDetails) {
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1251
        if (stats().valid()) {
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1252
          gclog_or_tty->print_cr("CMSCollector: collect because of trigger interval (time since last begin %3.7f secs)",
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1253
                                 stats().cms_time_since_begin());
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1254
        } else {
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1255
          gclog_or_tty->print_cr("CMSCollector: collect because of trigger interval (first collection)");
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1256
        }
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1257
      }
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1258
      return true;
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1259
    }
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1260
  }
aa442e0427f5 8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents: 24092
diff changeset
  1261
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
17325
694922ea5785 8013184: CMS: Call reset_after_compaction() only if a compaction has been done
jmasa
parents: 17324
diff changeset
  1265
void CMSCollector::set_did_compact(bool v) { _cmsGen->set_did_compact(v); }
694922ea5785 8013184: CMS: Call reset_after_compaction() only if a compaction has been done
jmasa
parents: 17324
diff changeset
  1266
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
// Clear _expansion_cause fields of constituent generations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
void CMSCollector::clear_expansion_cause() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  _cmsGen->clear_expansion_cause();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1272
// We should be conservative in starting a collection cycle.  To
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1273
// start too eagerly runs the risk of collecting too often in the
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1274
// extreme.  To collect too rarely falls back on full collections,
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1275
// which works, even if not optimum in terms of concurrent work.
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1276
// As a work around for too eagerly collecting, use the flag
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1277
// UseCMSInitiatingOccupancyOnly.  This also has the advantage of
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1278
// giving the user an easily understandable way of controlling the
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1279
// collections.
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1280
// We want to start a new collection cycle if any of the following
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1281
// conditions hold:
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1282
// . our current occupancy exceeds the configured initiating occupancy
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1283
//   for this generation, or
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1284
// . we recently needed to expand this space and have not, since that
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1285
//   expansion, done a collection of this generation, or
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1286
// . the underlying space believes that it may be a good idea to initiate
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1287
//   a concurrent collection (this may be based on criteria such as the
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1288
//   following: the space uses linear allocation and linear allocation is
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1289
//   going to fail, or there is believed to be excessive fragmentation in
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1290
//   the generation, etc... or ...
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1291
// [.(currently done by CMSCollector::shouldConcurrentCollect() only for
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1292
//   the case of the old generation; see CR 6543076):
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1293
//   we may be approaching a point at which allocation requests may fail because
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1294
//   we will be out of sufficient free space given allocation rate estimates.]
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1295
bool ConcurrentMarkSweepGeneration::should_concurrent_collect() const {
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1296
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  assert_lock_strong(freelistLock());
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1298
  if (occupancy() > initiating_occupancy()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
    if (PrintGCDetails && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
      gclog_or_tty->print(" %s: collect because of occupancy %f / %f  ",
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1301
        short_name(), occupancy(), initiating_occupancy());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  if (UseCMSInitiatingOccupancyOnly) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
  if (expansion_cause() == CMSExpansionCause::_satisfy_allocation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    if (PrintGCDetails && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
      gclog_or_tty->print(" %s: collect because expanded for allocation ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
        short_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
  }
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1315
  if (_cmsSpace->should_concurrent_collect()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
    if (PrintGCDetails && Verbose) {
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1317
      gclog_or_tty->print(" %s: collect because cmsSpace says so ",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
        short_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
void ConcurrentMarkSweepGeneration::collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
                                            bool   clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
                                            size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
                                            bool   tlab)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  collector()->collect(full, clear_all_soft_refs, size, tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
void CMSCollector::collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
                           bool   clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
                           size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
                           bool   tlab)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  // The following "if" branch is present for defensive reasons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  // In the current uses of this interface, it can be replaced with:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  // assert(!GC_locker.is_active(), "Can't be called otherwise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  // But I am not placing that assert here to allow future
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  // generality in invoking this interface.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  if (GC_locker::is_active()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
    // A consistency test for GC_locker
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
    assert(GC_locker::needs_gc(), "Should have been set already");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
    // Skip this foreground collection, instead
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    // expanding the heap if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
    // Need the free list locks for the call to free() in compute_new_size()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
    compute_new_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  acquire_control_and_collect(full, clear_all_soft_refs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1355
void CMSCollector::request_full_gc(unsigned int full_gc_count, GCCause::Cause cause) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  unsigned int gc_count = gch->total_full_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  if (gc_count == full_gc_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
    MutexLockerEx y(CGC_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
    _full_gc_requested = true;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1361
    _full_gc_cause = cause;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    CGC_lock->notify();   // nudge CMS thread
8684
7ebbd0b3e295 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 8296
diff changeset
  1363
  } else {
7ebbd0b3e295 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 8296
diff changeset
  1364
    assert(gc_count > full_gc_count, "Error: causal loop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1368
bool CMSCollector::is_external_interruption() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1369
  GCCause::Cause cause = GenCollectedHeap::heap()->gc_cause();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1370
  return GCCause::is_user_requested_gc(cause) ||
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1371
         GCCause::is_serviceability_requested_gc(cause);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1372
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1373
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1374
void CMSCollector::report_concurrent_mode_interruption() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1375
  if (is_external_interruption()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1376
    if (PrintGCDetails) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1377
      gclog_or_tty->print(" (concurrent mode interrupted)");
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1378
    }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1379
  } else {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1380
    if (PrintGCDetails) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1381
      gclog_or_tty->print(" (concurrent mode failure)");
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1382
    }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1383
    _gc_tracer_cm->report_concurrent_mode_failure();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1384
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1385
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1386
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
// The foreground and background collectors need to coordinate in order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
// to make sure that they do not mutually interfere with CMS collections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
// When a background collection is active,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
// the foreground collector may need to take over (preempt) and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
// synchronously complete an ongoing collection. Depending on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
// frequency of the background collections and the heap usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
// of the application, this preemption can be seldom or frequent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
// There are only certain
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
// points in the background collection that the "collection-baton"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
// can be passed to the foreground collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
// The foreground collector will wait for the baton before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
// starting any part of the collection.  The foreground collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
// will only wait at one location.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
// The background collector will yield the baton before starting a new
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
// phase of the collection (e.g., before initial marking, marking from roots,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
// precleaning, final re-mark, sweep etc.)  This is normally done at the head
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
// of the loop which switches the phases. The background collector does some
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
// of the phases (initial mark, final re-mark) with the world stopped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
// Because of locking involved in stopping the world,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
// the foreground collector should not block waiting for the background
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
// collector when it is doing a stop-the-world phase.  The background
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
// collector will yield the baton at an additional point just before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
// it enters a stop-the-world phase.  Once the world is stopped, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
// background collector checks the phase of the collection.  If the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
// phase has not changed, it proceeds with the collection.  If the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
// phase has changed, it skips that phase of the collection.  See
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
// the comments on the use of the Heap_lock in collect_in_background().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
// Variable used in baton passing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
//   _foregroundGCIsActive - Set to true by the foreground collector when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
//      it wants the baton.  The foreground clears it when it has finished
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
//      the collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
//   _foregroundGCShouldWait - Set to true by the background collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
//        when it is running.  The foreground collector waits while
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
//      _foregroundGCShouldWait is true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
//  CGC_lock - monitor used to protect access to the above variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
//      and to notify the foreground and background collectors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
//  _collectorState - current state of the CMS collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
// The foreground collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
//   acquires the CGC_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
//   sets _foregroundGCIsActive
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
//   waits on the CGC_lock for _foregroundGCShouldWait to be false
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
//     various locks acquired in preparation for the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
//     are released so as not to block the background collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
//     that is in the midst of a collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
//   proceeds with the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
//   clears _foregroundGCIsActive
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
//   returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
// The background collector in a loop iterating on the phases of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
//      collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
//   acquires the CGC_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
//   sets _foregroundGCShouldWait
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
//   if _foregroundGCIsActive is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
//     clears _foregroundGCShouldWait, notifies _CGC_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
//     waits on _CGC_lock for _foregroundGCIsActive to become false
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
//     and exits the loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
//   otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
//     proceed with that phase of the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
//     if the phase is a stop-the-world phase,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
//       yield the baton once more just before enqueueing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
//       the stop-world CMS operation (executed by the VM thread).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
//   returns after all phases of the collection are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
void CMSCollector::acquire_control_and_collect(bool full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
        bool clear_all_soft_refs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  assert(SafepointSynchronize::is_at_safepoint(), "should be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  assert(!Thread::current()->is_ConcurrentGC_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
         "shouldn't try to acquire control from self!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  // Start the protocol for acquiring control of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  // collection from the background collector (aka CMS thread).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  assert(ConcurrentMarkSweepThread::vm_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
         "VM thread should have CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  // Remember the possibly interrupted state of an ongoing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  // concurrent collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  CollectorState first_state = _collectorState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  // Signal to a possibly ongoing concurrent collection that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  // we want to do a foreground collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  _foregroundGCIsActive = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  // release locks and wait for a notify from the background collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  // releasing the locks in only necessary for phases which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  // do yields to improve the granularity of the collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  // We need to lock the Free list lock for the space that we are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  // currently collecting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  assert(haveFreelistLocks(), "Must be holding free list locks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
  bitMapLock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  releaseFreelistLocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
    MutexLockerEx x(CGC_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    if (_foregroundGCShouldWait) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
      // We are going to be waiting for action for the CMS thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
      // it had better not be gone (for instance at shutdown)!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
      assert(ConcurrentMarkSweepThread::cmst() != NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
             "CMS thread must be running");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
      // Wait here until the background collector gives us the go-ahead
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
      ConcurrentMarkSweepThread::clear_CMS_flag(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
        ConcurrentMarkSweepThread::CMS_vm_has_token);  // release token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
      // Get a possibly blocked CMS thread going:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
      //   Note that we set _foregroundGCIsActive true above,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
      //   without protection of the CGC_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
      CGC_lock->notify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
      assert(!ConcurrentMarkSweepThread::vm_thread_wants_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
             "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
      while (_foregroundGCShouldWait) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
        // wait for notification
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
        CGC_lock->wait(Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
        // Possibility of delay/starvation here, since CMS token does
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
        // not know to give priority to VM thread? Actually, i think
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
        // there wouldn't be any delay/starvation, but the proof of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
        // that "fact" (?) appears non-trivial. XXX 20011219YSR
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
      ConcurrentMarkSweepThread::set_CMS_flag(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
        ConcurrentMarkSweepThread::CMS_vm_has_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
  // The CMS_token is already held.  Get back the other locks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
  assert(ConcurrentMarkSweepThread::vm_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
         "VM thread should have CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
  getFreelistLocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
  bitMapLock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
  if (TraceCMSState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
    gclog_or_tty->print_cr("CMS foreground collector has asked for control "
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1518
      INTPTR_FORMAT " with first state %d", p2i(Thread::current()), first_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
    gclog_or_tty->print_cr("    gets control with state %d", _collectorState);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1522
  // Inform cms gen if this was due to partial collection failing.
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1523
  // The CMS gen may use this fact to determine its expansion policy.
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1524
  GenCollectedHeap* gch = GenCollectedHeap::heap();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1525
  if (gch->incremental_collection_will_fail(false /* don't consult_young */)) {
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1526
    assert(!_cmsGen->incremental_collection_failed(),
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1527
           "Should have been noticed, reacted to and cleared");
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1528
    _cmsGen->set_incremental_collection_failed();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1529
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1531
  if (first_state > Idling) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1532
    report_concurrent_mode_interruption();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1535
  set_did_compact(true);
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1536
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1537
  // If the collection is being acquired from the background
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1538
  // collector, there may be references on the discovered
28212
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1539
  // references lists.  Abandon those references, since some
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1540
  // of them may have become unreachable after concurrent
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1541
  // discovery; the STW compacting collector will redo discovery
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1542
  // more precisely, without being subject to floating garbage.
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1543
  // Leaving otherwise unreachable references in the discovered
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1544
  // lists would require special handling.
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1545
  ref_processor()->disable_discovery();
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1546
  ref_processor()->abandon_partial_discovery();
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1547
  ref_processor()->verify_no_references_recorded();
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1548
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1549
  if (first_state > Idling) {
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1550
    save_heap_summary();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1551
  }
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1552
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1553
  do_compaction_work(clear_all_soft_refs);
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1554
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1555
  // Has the GC time limit been exceeded?
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  1556
  size_t max_eden_size = _young_gen->max_capacity() -
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  1557
                         _young_gen->to()->capacity() -
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  1558
                         _young_gen->from()->capacity();
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1559
  GCCause::Cause gc_cause = gch->gc_cause();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1560
  size_policy()->check_gc_overhead_limit(_young_gen->used(),
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  1561
                                         _young_gen->eden()->used(),
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1562
                                         _cmsGen->max_capacity(),
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1563
                                         max_eden_size,
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1564
                                         full,
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1565
                                         gc_cause,
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1566
                                         gch->collector_policy());
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1567
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  // Reset the expansion cause, now that we just completed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
  // a collection cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  clear_expansion_cause();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  _foregroundGCIsActive = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1575
// Resize the tenured generation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
// after obtaining the free list locks for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
// two generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
void CMSCollector::compute_new_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
  assert_locked_or_safepoint(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  FreelistLocker z(this);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1581
  MetaspaceGC::compute_new_size();
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
  1582
  _cmsGen->compute_new_size_free_list();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
// A work method used by the foreground collector to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
// a mark-sweep-compact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
void CMSCollector::do_compaction_work(bool clear_all_soft_refs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
  GenCollectedHeap* gch = GenCollectedHeap::heap();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1589
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1590
  STWGCTimer* gc_timer = GenMarkSweep::gc_timer();
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21565
diff changeset
  1591
  gc_timer->register_gc_start();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1592
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1593
  SerialOldTracer* gc_tracer = GenMarkSweep::gc_tracer();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1594
  gc_tracer->report_gc_start(gch->gc_cause(), gc_timer->gc_start());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1595
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  1596
  GCTraceTime t("CMS:MSC ", PrintGCDetails && Verbose, true, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
  // Temporarily widen the span of the weak reference processing to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
  // the entire heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
  MemRegion new_span(GenCollectedHeap::heap()->reserved_region());
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  1601
  ReferenceProcessorSpanMutator rp_mut_span(ref_processor(), new_span);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
  // Temporarily, clear the "is_alive_non_header" field of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  // reference processor.
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  1604
  ReferenceProcessorIsAliveMutator rp_mut_closure(ref_processor(), NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
  // Temporarily make reference _processing_ single threaded (non-MT).
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  1606
  ReferenceProcessorMTProcMutator rp_mut_mt_processing(ref_processor(), false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
  // Temporarily make refs discovery atomic
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  1608
  ReferenceProcessorAtomicMutator rp_mut_atomic(ref_processor(), true);
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  1609
  // Temporarily make reference _discovery_ single threaded (non-MT)
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  1610
  ReferenceProcessorMTDiscoveryMutator rp_mut_discovery(ref_processor(), false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
  ref_processor()->set_enqueuing_is_done(false);
28212
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  1613
  ref_processor()->enable_discovery();
1610
5dddd195cc86 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 1606
diff changeset
  1614
  ref_processor()->setup_policy(clear_all_soft_refs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
  // If an asynchronous collection finishes, the _modUnionTable is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  // all clear.  If we are assuming the collection from an asynchronous
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  // collection, clear the _modUnionTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
  assert(_collectorState != Idling || _modUnionTable.isAllClear(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
    "_modUnionTable should be clear if the baton was not passed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
  _modUnionTable.clear_all();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1621
  assert(_collectorState != Idling || _ct->klass_rem_set()->mod_union_is_clear(),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1622
    "mod union for klasses should be clear if the baton was passed");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1623
  _ct->klass_rem_set()->clear_mod_union();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  // We must adjust the allocation statistics being maintained
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
  // in the free list space. We do so by reading and clearing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  // the sweep timer and updating the block flux rate estimates below.
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1628
  assert(!_intra_sweep_timer.is_active(), "_intra_sweep_timer should be inactive");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1629
  if (_inter_sweep_timer.is_active()) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1630
    _inter_sweep_timer.stop();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1631
    // Note that we do not use this sample to update the _inter_sweep_estimate.
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1632
    _cmsGen->cmsSpace()->beginSweepFLCensus((float)(_inter_sweep_timer.seconds()),
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1633
                                            _inter_sweep_estimate.padded_average(),
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1634
                                            _intra_sweep_estimate.padded_average());
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1635
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  1637
  GenMarkSweep::invoke_at_safepoint(ref_processor(), clear_all_soft_refs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
    CompactibleFreeListSpace* cms_space = _cmsGen->cmsSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
    size_t free_size = cms_space->free();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
    assert(free_size ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
           pointer_delta(cms_space->end(), cms_space->compaction_top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
           * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
      "All the free space should be compacted into one chunk at top");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  1645
    assert(cms_space->dictionary()->total_chunk_size(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
                                      debug_only(cms_space->freelistLock())) == 0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
           cms_space->totalSizeInIndexedFreeLists() == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
      "All the free space should be in a single chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
    size_t num = cms_space->totalCount();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
    assert((free_size == 0 && num == 0) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
           (free_size > 0  && (num == 1 || num == 2)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
         "There should be at most 2 free chunks after compaction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
  #endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
  _collectorState = Resetting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
  assert(_restart_addr == NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
         "Should have been NULL'd before baton was passed");
33153
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  1657
  reset_stw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
  _cmsGen->reset_after_compaction();
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1659
  _concurrent_cycles_since_last_unload = 0;
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1660
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  // Clear any data recorded in the PLAB chunk arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
  if (_survivor_plab_array != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
    reset_survivor_plab_arrays();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
  // Adjust the per-size allocation stats for the next epoch.
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1667
  _cmsGen->cmsSpace()->endSweepFLCensus(sweep_count() /* fake */);
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1668
  // Restart the "inter sweep timer" for the next epoch.
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1669
  _inter_sweep_timer.reset();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  1670
  _inter_sweep_timer.start();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21565
diff changeset
  1672
  gc_timer->register_gc_end();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1673
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1674
  gc_tracer->report_gc_end(gc_timer->gc_end(), gc_timer->time_partitions());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1675
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
  // For a mark-sweep-compact, compute_new_size() will be called
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
  // in the heap's do_collection() method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1680
void CMSCollector::print_eden_and_survivor_chunk_arrays() {
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  1681
  ContiguousSpace* eden_space = _young_gen->eden();
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  1682
  ContiguousSpace* from_space = _young_gen->from();
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  1683
  ContiguousSpace* to_space   = _young_gen->to();
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1684
  // Eden
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1685
  if (_eden_chunk_array != NULL) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1686
    gclog_or_tty->print_cr("eden " PTR_FORMAT "-" PTR_FORMAT "-" PTR_FORMAT "(" SIZE_FORMAT ")",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1687
                           p2i(eden_space->bottom()), p2i(eden_space->top()),
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1688
                           p2i(eden_space->end()), eden_space->capacity());
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1689
    gclog_or_tty->print_cr("_eden_chunk_index=" SIZE_FORMAT ", "
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1690
                           "_eden_chunk_capacity=" SIZE_FORMAT,
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1691
                           _eden_chunk_index, _eden_chunk_capacity);
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1692
    for (size_t i = 0; i < _eden_chunk_index; i++) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1693
      gclog_or_tty->print_cr("_eden_chunk_array[" SIZE_FORMAT "]=" PTR_FORMAT,
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1694
                             i, p2i(_eden_chunk_array[i]));
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1695
    }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1696
  }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1697
  // Survivor
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1698
  if (_survivor_chunk_array != NULL) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1699
    gclog_or_tty->print_cr("survivor " PTR_FORMAT "-" PTR_FORMAT "-" PTR_FORMAT "(" SIZE_FORMAT ")",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1700
                           p2i(from_space->bottom()), p2i(from_space->top()),
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1701
                           p2i(from_space->end()), from_space->capacity());
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1702
    gclog_or_tty->print_cr("_survivor_chunk_index=" SIZE_FORMAT ", "
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1703
                           "_survivor_chunk_capacity=" SIZE_FORMAT,
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1704
                           _survivor_chunk_index, _survivor_chunk_capacity);
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1705
    for (size_t i = 0; i < _survivor_chunk_index; i++) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1706
      gclog_or_tty->print_cr("_survivor_chunk_array[" SIZE_FORMAT "]=" PTR_FORMAT,
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1707
                             i, p2i(_survivor_chunk_array[i]));
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1708
    }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1709
  }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1710
}
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  1711
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
void CMSCollector::getFreelistLocks() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
  // Get locks for all free lists in all generations that this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
  // collector is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
  _cmsGen->freelistLock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
void CMSCollector::releaseFreelistLocks() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
  // Release locks for all free lists in all generations that this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
  // collector is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
  _cmsGen->freelistLock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
bool CMSCollector::haveFreelistLocks() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
  // Check locks for all free lists in all generations that this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
  // collector is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
  assert_lock_strong(_cmsGen->freelistLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
  PRODUCT_ONLY(ShouldNotReachHere());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
// A utility class that is used by the CMS collector to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
// temporarily "release" the foreground collector from its
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
// usual obligation to wait for the background collector to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
// complete an ongoing phase before proceeding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
class ReleaseForegroundGC: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
  CMSCollector* _c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
  ReleaseForegroundGC(CMSCollector* c) : _c(c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
    assert(_c->_foregroundGCShouldWait, "Else should not need to call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
    MutexLockerEx x(CGC_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
    // allow a potentially blocked foreground collector to proceed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
    _c->_foregroundGCShouldWait = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
    if (_c->_foregroundGCIsActive) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
      CGC_lock->notify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
    assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
           "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
  ~ReleaseForegroundGC() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
    assert(!_c->_foregroundGCShouldWait, "Usage protocol violation?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
    MutexLockerEx x(CGC_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
    _c->_foregroundGCShouldWait = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1759
void CMSCollector::collect_in_background(GCCause::Cause cause) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
  assert(Thread::current()->is_ConcurrentGC_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
    "A CMS asynchronous collection is only allowed on a CMS thread.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
    bool safepoint_check = Mutex::_no_safepoint_check_flag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
    MutexLockerEx hl(Heap_lock, safepoint_check);
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1767
    FreelistLocker fll(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
    MutexLockerEx x(CGC_lock, safepoint_check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
    if (_foregroundGCIsActive || !UseAsyncConcMarkSweepGC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
      // The foreground collector is active or we're
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
      // not using asynchronous collections.  Skip this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
      // background collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
      assert(!_foregroundGCShouldWait, "Should be clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
      assert(_collectorState == Idling, "Should be idling before start.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
      _collectorState = InitialMarking;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1778
      register_gc_start(cause);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
      // Reset the expansion cause, now that we are about to begin
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
      // a new cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
      clear_expansion_cause();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1782
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1783
      // Clear the MetaspaceGC flag since a concurrent collection
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1784
      // is starting but also clear it after the collection.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1785
      MetaspaceGC::set_should_concurrent_collect(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
    }
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1787
    // Decide if we want to enable class unloading as part of the
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1788
    // ensuing concurrent GC cycle.
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  1789
    update_should_unload_classes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
    _full_gc_requested = false;           // acks all outstanding full gc requests
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1791
    _full_gc_cause = GCCause::_no_gc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
    // Signal that we are about to start a collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
    gch->increment_total_full_collections();  // ... starting a collection cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
    _collection_count_start = gch->total_full_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  // Used for PrintGC
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33230
diff changeset
  1798
  size_t prev_used = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
  if (PrintGC && Verbose) {
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1800
    prev_used = _cmsGen->used();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
  // The change of the collection state is normally done at this level;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
  // the exceptions are phases that are executed while the world is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
  // stopped.  For those phases the change of state is done while the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
  // world is stopped.  For baton passing purposes this allows the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
  // background collector to finish the phase and change state atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  // The foreground collector cannot wait on a phase that is done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
  // while the world is stopped because the foreground collector already
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  // has the world stopped and would deadlock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
  while (_collectorState != Idling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
    if (TraceCMSState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
      gclog_or_tty->print_cr("Thread " INTPTR_FORMAT " in CMS state %d",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1814
        p2i(Thread::current()), _collectorState);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
    // The foreground collector
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
    //   holds the Heap_lock throughout its collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
    //   holds the CMS token (but not the lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
    //     except while it is waiting for the background collector to yield.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
    // The foreground collector should be blocked (not for long)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
    //   if the background collector is about to start a phase
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
    //   executed with world stopped.  If the background
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
    //   collector has already started such a phase, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
    //   foreground collector is blocked waiting for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
    //   Heap_lock.  The stop-world phases (InitialMarking and FinalMarking)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
    //   are executed in the VM thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
    // The locking order is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
    //   PendingListLock (PLL)  -- if applicable (FinalMarking)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
    //   Heap_lock  (both this & PLL locked in VM_CMS_Operation::prologue())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
    //   CMS token  (claimed in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
    //                stop_world_and_do() -->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
    //                  safepoint_synchronize() -->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
    //                    CMSThread::synchronize())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
      // Check if the FG collector wants us to yield.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
      CMSTokenSync x(true); // is cms thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
      if (waitForForegroundGC()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
        // We yielded to a foreground GC, nothing more to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
        // done this round.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
        assert(_foregroundGCShouldWait == false, "We set it to false in "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
               "waitForForegroundGC()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
        if (TraceCMSState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
          gclog_or_tty->print_cr("CMS Thread " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
            " exiting collection CMS state %d",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1848
            p2i(Thread::current()), _collectorState);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
        // The background collector can run but check to see if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
        // foreground collector has done a collection while the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
        // background collector was waiting to get the CGC_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
        // above.  If yes, break so that _foregroundGCShouldWait
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
        // is cleared before returning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
        if (_collectorState == Idling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
    assert(_foregroundGCShouldWait, "Foreground collector, if active, "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
      "should be waiting");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
    switch (_collectorState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
      case InitialMarking:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
          ReleaseForegroundGC x(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
          stats().record_cms_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
          VM_CMS_Initial_Mark initial_mark_op(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
          VMThread::execute(&initial_mark_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
        // The collector state may be any legal state at this point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
        // since the background collector may have yielded to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
        // foreground collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
      case Marking:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
        // initial marking in checkpointRootsInitialWork has been completed
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1880
        if (markFromRoots()) { // we were successful
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
          assert(_collectorState == Precleaning, "Collector state should "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
            "have changed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
          assert(_foregroundGCIsActive, "Internal state inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
      case Precleaning:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
        // marking from roots in markFromRoots has been completed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
        preclean();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
        assert(_collectorState == AbortablePreclean ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
               _collectorState == FinalMarking,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
               "Collector state should have changed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
      case AbortablePreclean:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
        abortable_preclean();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
        assert(_collectorState == FinalMarking, "Collector state should "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
          "have changed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
      case FinalMarking:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
          ReleaseForegroundGC x(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
          VM_CMS_Final_Remark final_remark_op(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
          VMThread::execute(&final_remark_op);
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  1905
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
        assert(_foregroundGCShouldWait, "block post-condition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
      case Sweeping:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
        // final marking in checkpointRootsFinal has been completed
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  1910
        sweep();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
        assert(_collectorState == Resizing, "Collector state change "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
          "to Resizing must be done under the free_list_lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
      case Resizing: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
        // Sweeping has been completed...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
        // At this point the background collection has completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
        // Don't move the call to compute_new_size() down
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
        // into code that might be executed if the background
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
        // collection was preempted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
          ReleaseForegroundGC x(this);   // unblock FG collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
          MutexLockerEx       y(Heap_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
          CMSTokenSync        z(true);   // not strictly needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
          if (_collectorState == Resizing) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
            compute_new_size();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1926
            save_heap_summary();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
            _collectorState = Resetting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
            assert(_collectorState == Idling, "The state should only change"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
                   " because the foreground collector has finished the collection");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
      case Resetting:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
        // CMS heap resizing has been completed
33153
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  1937
        reset_concurrent();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
        assert(_collectorState == Idling, "Collector state should "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
          "have changed");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1940
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1941
        MetaspaceGC::set_should_concurrent_collect(false);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1942
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
        stats().record_cms_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
        // Don't move the concurrent_phases_end() and compute_new_size()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
        // calls to here because a preempted background collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
        // has it's state set to "Resetting".
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
      case Idling:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
        ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
    if (TraceCMSState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
      gclog_or_tty->print_cr("  Thread " INTPTR_FORMAT " done - next CMS state %d",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1955
        p2i(Thread::current()), _collectorState);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
    assert(_foregroundGCShouldWait, "block post-condition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
  // Should this be in gc_epilogue?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
  collector_policy()->counters()->update_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
    // Clear _foregroundGCShouldWait and, in the event that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
    // foreground collector is waiting, notify it, before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
    // returning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
    MutexLockerEx x(CGC_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
    _foregroundGCShouldWait = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
    if (_foregroundGCIsActive) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
      CGC_lock->notify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
    assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
           "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
  if (TraceCMSState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
    gclog_or_tty->print_cr("CMS Thread " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
      " exiting collection CMS state %d",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  1978
      p2i(Thread::current()), _collectorState);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
  if (PrintGC && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
    _cmsGen->print_heap_change(prev_used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1985
void CMSCollector::register_gc_start(GCCause::Cause cause) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1986
  _cms_start_registered = true;
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21565
diff changeset
  1987
  _gc_timer_cm->register_gc_start();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1988
  _gc_tracer_cm->report_gc_start(cause, _gc_timer_cm->gc_start());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1989
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1990
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1991
void CMSCollector::register_gc_end() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1992
  if (_cms_start_registered) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1993
    report_heap_summary(GCWhen::AfterGC);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1994
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 21565
diff changeset
  1995
    _gc_timer_cm->register_gc_end();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1996
    _gc_tracer_cm->report_gc_end(_gc_timer_cm->gc_end(), _gc_timer_cm->time_partitions());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1997
    _cms_start_registered = false;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1998
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  1999
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2000
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2001
void CMSCollector::save_heap_summary() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2002
  GenCollectedHeap* gch = GenCollectedHeap::heap();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2003
  _last_heap_summary = gch->create_heap_summary();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2004
  _last_metaspace_summary = gch->create_metaspace_summary();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2005
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2006
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2007
void CMSCollector::report_heap_summary(GCWhen::Type when) {
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 22882
diff changeset
  2008
  _gc_tracer_cm->report_gc_heap_summary(when, _last_heap_summary);
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 22882
diff changeset
  2009
  _gc_tracer_cm->report_metaspace_summary(when, _last_metaspace_summary);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2010
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2011
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
bool CMSCollector::waitForForegroundGC() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
  bool res = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
         "CMS thread should have CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
  // Block the foreground collector until the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
  // background collectors decides whether to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
  // yield.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
  MutexLockerEx x(CGC_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
  _foregroundGCShouldWait = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
  if (_foregroundGCIsActive) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
    // The background collector yields to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
    // foreground collector and returns a value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
    // indicating that it has yielded.  The foreground
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
    // collector can proceed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
    res = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
    _foregroundGCShouldWait = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
    ConcurrentMarkSweepThread::clear_CMS_flag(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
      ConcurrentMarkSweepThread::CMS_cms_has_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
    ConcurrentMarkSweepThread::set_CMS_flag(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
      ConcurrentMarkSweepThread::CMS_cms_wants_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
    // Get a possibly blocked foreground thread going
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
    CGC_lock->notify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
    if (TraceCMSState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
      gclog_or_tty->print_cr("CMS Thread " INTPTR_FORMAT " waiting at CMS state %d",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  2036
        p2i(Thread::current()), _collectorState);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
    while (_foregroundGCIsActive) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
      CGC_lock->wait(Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
    ConcurrentMarkSweepThread::set_CMS_flag(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
      ConcurrentMarkSweepThread::CMS_cms_has_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
    ConcurrentMarkSweepThread::clear_CMS_flag(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
      ConcurrentMarkSweepThread::CMS_cms_wants_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
  if (TraceCMSState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
    gclog_or_tty->print_cr("CMS Thread " INTPTR_FORMAT " continuing at CMS state %d",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  2048
      p2i(Thread::current()), _collectorState);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
// Because of the need to lock the free lists and other structures in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
// the collector, common to all the generations that the collector is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
// collecting, we need the gc_prologues of individual CMS generations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
// delegate to their collector. It may have been simpler had the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
// current infrastructure allowed one to call a prologue on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
// collector. In the absence of that we have the generation's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
// prologue delegate to the collector, which delegates back
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
// some "local" work to a worker method in the individual generations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
// that it's responsible for collecting, while itself doing any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
// work common to all generations it's responsible for. A similar
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
// comment applies to the  gc_epilogue()'s.
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  2064
// The role of the variable _between_prologue_and_epilogue is to
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
// enforce the invocation protocol.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
void CMSCollector::gc_prologue(bool full) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2067
  // Call gc_prologue_work() for the CMSGen
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
  // we are responsible for.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  // The following locking discipline assumes that we are only called
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
  // when the world is stopped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  assert(SafepointSynchronize::is_at_safepoint(), "world is stopped assumption");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
  // The CMSCollector prologue must call the gc_prologues for the
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2075
  // "generations" that it's responsible
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
  // for.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
  assert(   Thread::current()->is_VM_thread()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
         || (   CMSScavengeBeforeRemark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
             && Thread::current()->is_ConcurrentGC_thread()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
         "Incorrect thread type for prologue execution");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
  if (_between_prologue_and_epilogue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
    // We have already been invoked; this is a gc_prologue delegation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
    // from yet another CMS generation that we are responsible for, just
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
    // ignore it since all relevant work has already been done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
  // set a bit saying prologue has been called; cleared in epilogue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
  _between_prologue_and_epilogue = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
  // Claim locks for common data structures, then call gc_prologue_work()
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2093
  // for each CMSGen.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
  getFreelistLocks();   // gets free list locks on constituent spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
  bitMapLock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
  // Should call gc_prologue_work() for all cms gens we are responsible for
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2099
  bool duringMarking =    _collectorState >= Marking
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
                         && _collectorState < Sweeping;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2101
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2102
  // The young collections clear the modified oops state, which tells if
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2103
  // there are any modified oops in the class. The remark phase also needs
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2104
  // that information. Tell the young collection to save the union of all
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2105
  // modified klasses.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2106
  if (duringMarking) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2107
    _ct->klass_rem_set()->set_accumulate_modified_oops(true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2108
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2109
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2110
  bool registerClosure = duringMarking;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2111
30581
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
  2112
  _cmsGen->gc_prologue_work(full, registerClosure, &_modUnionClosurePar);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
  if (!full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
    stats().record_gc0_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
void ConcurrentMarkSweepGeneration::gc_prologue(bool full) {
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
  2120
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
  2121
  _capacity_at_prologue = capacity();
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
  2122
  _used_at_prologue = used();
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
  2123
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
  // Delegate to CMScollector which knows how to coordinate between
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
  // this and any other CMS generations that it is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
  // collecting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
  collector()->gc_prologue(full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
// This is a "private" interface for use by this generation's CMSCollector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
// Not to be called directly by any other entity (for instance,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
// GenCollectedHeap, which calls the "public" gc_prologue method above).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
void ConcurrentMarkSweepGeneration::gc_prologue_work(bool full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
  bool registerClosure, ModUnionClosure* modUnionClosure) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
  assert(!incremental_collection_failed(), "Shouldn't be set yet");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
  assert(cmsSpace()->preconsumptionDirtyCardClosure() == NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
    "Should be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
  if (registerClosure) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
    cmsSpace()->setPreconsumptionDirtyCardClosure(modUnionClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
  cmsSpace()->gc_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  // Clear stat counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
    assert(_numObjectsPromoted == 0, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
    assert(_numWordsPromoted   == 0, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
    if (Verbose && PrintGC) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  2147
      gclog_or_tty->print("Allocated " SIZE_FORMAT " objects, "
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  2148
                          SIZE_FORMAT " bytes concurrently",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
      _numObjectsAllocated, _numWordsAllocated*sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
    _numObjectsAllocated = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
    _numWordsAllocated   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
void CMSCollector::gc_epilogue(bool full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
  // The following locking discipline assumes that we are only called
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  // when the world is stopped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
  assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
         "world is stopped assumption");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
  // Currently the CMS epilogue (see CompactibleFreeListSpace) merely checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
  // if linear allocation blocks need to be appropriately marked to allow the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
  // the blocks to be parsable. We also check here whether we need to nudge the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
  // CMS collector thread to start a new cycle (if it's not already active).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
  assert(   Thread::current()->is_VM_thread()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
         || (   CMSScavengeBeforeRemark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
             && Thread::current()->is_ConcurrentGC_thread()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
         "Incorrect thread type for epilogue execution");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  if (!_between_prologue_and_epilogue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
    // We have already been invoked; this is a gc_epilogue delegation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
    // from yet another CMS generation that we are responsible for, just
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
    // ignore it since all relevant work has already been done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
  assert(haveFreelistLocks(), "must have freelist locks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2180
  _ct->klass_rem_set()->set_accumulate_modified_oops(false);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2181
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
  _cmsGen->gc_epilogue_work(full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
  if (_collectorState == AbortablePreclean || _collectorState == Precleaning) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
    // in case sampling was not already enabled, enable it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
    _start_sampling = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
  // reset _eden_chunk_array so sampling starts afresh
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
  _eden_chunk_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
  size_t cms_used   = _cmsGen->cmsSpace()->used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
  // update performance counters - this uses a special version of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
  // update_counters() that allows the utilization to be passed as a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
  // parameter, avoiding multiple calls to used().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
  _cmsGen->update_counters(cms_used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
  bitMapLock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
  releaseFreelistLocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
10022
377345fb5fb5 7061204: clean the chunk table synchronously in embedded builds
jcoomes
parents: 9969
diff changeset
  2202
  if (!CleanChunkPoolAsync) {
377345fb5fb5 7061204: clean the chunk table synchronously in embedded builds
jcoomes
parents: 9969
diff changeset
  2203
    Chunk::clean_chunk_pool();
377345fb5fb5 7061204: clean the chunk table synchronously in embedded builds
jcoomes
parents: 9969
diff changeset
  2204
  }
377345fb5fb5 7061204: clean the chunk table synchronously in embedded builds
jcoomes
parents: 9969
diff changeset
  2205
17325
694922ea5785 8013184: CMS: Call reset_after_compaction() only if a compaction has been done
jmasa
parents: 17324
diff changeset
  2206
  set_did_compact(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
  _between_prologue_and_epilogue = false;  // ready for next cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
void ConcurrentMarkSweepGeneration::gc_epilogue(bool full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
  collector()->gc_epilogue(full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
  // Also reset promotion tracking in par gc thread states.
27251
7d667f91ec8d 6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents: 27249
diff changeset
  2214
  for (uint i = 0; i < ParallelGCThreads; i++) {
7d667f91ec8d 6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents: 27249
diff changeset
  2215
    _par_gc_thread_states[i]->promo.stopTrackingPromotions(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
void ConcurrentMarkSweepGeneration::gc_epilogue_work(bool full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
  assert(!incremental_collection_failed(), "Should have been cleared");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
  cmsSpace()->setPreconsumptionDirtyCardClosure(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
  cmsSpace()->gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
    // Print stat counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
    assert(_numObjectsAllocated == 0, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
    assert(_numWordsAllocated == 0, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
    if (Verbose && PrintGC) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  2228
      gclog_or_tty->print("Promoted " SIZE_FORMAT " objects, "
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  2229
                          SIZE_FORMAT " bytes",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
                 _numObjectsPromoted, _numWordsPromoted*sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
    _numObjectsPromoted = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
    _numWordsPromoted   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
  if (PrintGC && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
    // Call down the chain in contiguous_available needs the freelistLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
    // so print this out before releasing the freeListLock.
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  2239
    gclog_or_tty->print(" Contiguous available " SIZE_FORMAT " bytes ",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
                        contiguous_available());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
bool CMSCollector::have_cms_token() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
  Thread* thr = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
  if (thr->is_VM_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
    return ConcurrentMarkSweepThread::vm_thread_has_cms_token();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
  } else if (thr->is_ConcurrentGC_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
    return ConcurrentMarkSweepThread::cms_thread_has_cms_token();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
  } else if (thr->is_GC_task_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
    return ConcurrentMarkSweepThread::vm_thread_has_cms_token() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
           ParGCRareEvent_lock->owned_by_self();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
// Check reachability of the given heap address in CMS generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
// treating all other generations as roots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
bool CMSCollector::is_cms_reachable(HeapWord* addr) {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  2262
  // We could "guarantee" below, rather than assert, but I'll
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
  // leave these as "asserts" so that an adventurous debugger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
  // could try this in the product build provided some subset of
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  2265
  // the conditions were met, provided they were interested in the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
  // results and knew that the computation below wouldn't interfere
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
  // with other concurrent computations mutating the structures
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
  // being read or written.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
  assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
         "Else mutations in object graph will make answer suspect");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
  assert(have_cms_token(), "Should hold cms token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
  assert(haveFreelistLocks(), "must hold free list locks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
  // Clear the marking bit map array before starting, but, just
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
  // for kicks, first report if the given address is already marked
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  2277
  gclog_or_tty->print_cr("Start: Address " PTR_FORMAT " is%s marked", p2i(addr),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
                _markBitMap.isMarked(addr) ? "" : " not");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
  if (verify_after_remark()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
    MutexLockerEx x(verification_mark_bm()->lock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
    bool result = verification_mark_bm()->isMarked(addr);
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  2283
    gclog_or_tty->print_cr("TransitiveMark: Address " PTR_FORMAT " %s marked", p2i(addr),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
                           result ? "IS" : "is NOT");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
    gclog_or_tty->print_cr("Could not compute result");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
16685
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2292
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2293
void
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2294
CMSCollector::print_on_error(outputStream* st) {
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2295
  CMSCollector* collector = ConcurrentMarkSweepGeneration::_collector;
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2296
  if (collector != NULL) {
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2297
    CMSBitMap* bitmap = &collector->_markBitMap;
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  2298
    st->print_cr("Marking Bits: (CMSBitMap*) " PTR_FORMAT, p2i(bitmap));
16685
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2299
    bitmap->print_on_error(st, " Bits: ");
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2300
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2301
    st->cr();
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2302
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2303
    CMSBitMap* mut_bitmap = &collector->_modUnionTable;
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  2304
    st->print_cr("Mod Union Table: (CMSBitMap*) " PTR_FORMAT, p2i(mut_bitmap));
16685
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2305
    mut_bitmap->print_on_error(st, " Bits: ");
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2306
  }
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2307
}
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  2308
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
// CMS Verification Support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
// Following the remark phase, the following invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
// should hold -- each object in the CMS heap which is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
// marked in markBitMap() should be marked in the verification_mark_bm().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
class VerifyMarkedClosure: public BitMapClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
  CMSBitMap* _marks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  bool       _failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
  VerifyMarkedClosure(CMSBitMap* bm): _marks(bm), _failed(false) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  2323
  bool do_bit(size_t offset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
    HeapWord* addr = _marks->offsetToHeapWord(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
    if (!_marks->isMarked(addr)) {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  2326
      oop(addr)->print_on(gclog_or_tty);
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  2327
      gclog_or_tty->print_cr(" (" INTPTR_FORMAT " should have been marked)", p2i(addr));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
      _failed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
    }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  2330
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
  bool failed() { return _failed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
17112
e49af4ba7755 8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents: 17106
diff changeset
  2336
bool CMSCollector::verify_after_remark(bool silent) {
e49af4ba7755 8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents: 17106
diff changeset
  2337
  if (!silent) gclog_or_tty->print(" [Verifying CMS Marking... ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
  MutexLockerEx ml(verification_mark_bm()->lock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
  static bool init = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
  assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
         "Else mutations in object graph will make answer suspect");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
  assert(have_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
         "Else there may be mutual interference in use of "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
         " verification data structures");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
  assert(_collectorState > Marking && _collectorState <= Sweeping,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
         "Else marking info checked here may be obsolete");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
  assert(haveFreelistLocks(), "must hold free list locks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
  // Allocate marking bit map if not already allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
  if (!init) { // first time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
    if (!verification_mark_bm()->allocate(_span)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
    init = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
  assert(verification_mark_stack()->isEmpty(), "Should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
  // Turn off refs discovery -- so we will be tracing through refs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
  // This is as intended, because by this time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
  // GC must already have cleared any refs that need to be cleared,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
  // and traced those that need to be marked; moreover,
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  2366
  // the marking done here is not going to interfere in any
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
  // way with the marking information used by GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
  NoRefDiscovery no_discovery(ref_processor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  2370
#if defined(COMPILER2) || INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  2371
  DerivedPointerTableDeactivate dpt_deact;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  2372
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
  // Clear any marks from a previous round
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
  verification_mark_bm()->clear_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
  assert(verification_mark_stack()->isEmpty(), "markStack should be empty");
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  2377
  verify_work_stacks_empty();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
  gch->ensure_parsability(false);  // fill TLABs, but no need to retire them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
  // Update the saved marks which may affect the root scans.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
  gch->save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
  if (CMSRemarkVerifyVariant == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
    // In this first variant of verification, we complete
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  2386
    // all marking, then check if the new marks-vector is
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
    // a subset of the CMS marks-vector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
    verify_after_remark_work_1();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
  } else if (CMSRemarkVerifyVariant == 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
    // In this second variant of verification, we flag an error
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
    // (i.e. an object reachable in the new marks-vector not reachable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
    // in the CMS marks-vector) immediately, also indicating the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
    // identify of an object (A) that references the unmarked object (B) --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
    // presumably, a mutation to A failed to be picked up by preclean/remark?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
    verify_after_remark_work_2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
  } else {
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  2397
    warning("Unrecognized value " UINTX_FORMAT " for CMSRemarkVerifyVariant",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
            CMSRemarkVerifyVariant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
  }
17112
e49af4ba7755 8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents: 17106
diff changeset
  2400
  if (!silent) gclog_or_tty->print(" done] ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
void CMSCollector::verify_after_remark_work_1() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
  HandleMark  hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2409
  // Get a clear set of claim bits for the roots processing to work with.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2410
  ClassLoaderDataGraph::clear_claimed_marks();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2411
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
  // Mark from roots one level into CMS
3913
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  2413
  MarkRefsIntoClosure notOlder(_span, verification_mark_bm());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
  gch->rem_set()->prepare_for_younger_refs_iterate(false); // Not parallel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2416
  {
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2417
    StrongRootsScope srs(1);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2418
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2419
    gch->gen_process_roots(&srs,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  2420
                           GenCollectedHeap::OldGen,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  2421
                           true,   // young gen as roots
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2422
                           GenCollectedHeap::ScanningOption(roots_scanning_options()),
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2423
                           should_unload_classes(),
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2424
                           &notOlder,
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2425
                           NULL,
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2426
                           NULL);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2427
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
  // Now mark from the roots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
  MarkFromRootsClosure markFromRootsClosure(this, _span,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2431
    verification_mark_bm(), verification_mark_stack(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
    false /* don't yield */, true /* verifying */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
  assert(_restart_addr == NULL, "Expected pre-condition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
  verification_mark_bm()->iterate(&markFromRootsClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
  while (_restart_addr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
    // Deal with stack overflow: by restarting at the indicated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
    // address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
    HeapWord* ra = _restart_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
    markFromRootsClosure.reset(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
    _restart_addr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
    verification_mark_bm()->iterate(&markFromRootsClosure, ra, _span.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
  assert(verification_mark_stack()->isEmpty(), "Should have been drained");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
  // Marking completed -- now verify that each bit marked in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
  // verification_mark_bm() is also marked in markBitMap(); flag all
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
  // errors by printing corresponding objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
  VerifyMarkedClosure vcl(markBitMap());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
  verification_mark_bm()->iterate(&vcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
  if (vcl.failed()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
    gclog_or_tty->print("Verification failed");
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30153
diff changeset
  2453
    gch->print_on(gclog_or_tty);
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  2454
    fatal("CMS: failed marking verification after remark");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2458
class VerifyKlassOopsKlassClosure : public KlassClosure {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2459
  class VerifyKlassOopsClosure : public OopClosure {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2460
    CMSBitMap* _bitmap;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2461
   public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2462
    VerifyKlassOopsClosure(CMSBitMap* bitmap) : _bitmap(bitmap) { }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2463
    void do_oop(oop* p)       { guarantee(*p == NULL || _bitmap->isMarked((HeapWord*) *p), "Should be marked"); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2464
    void do_oop(narrowOop* p) { ShouldNotReachHere(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2465
  } _oop_closure;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2466
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2467
  VerifyKlassOopsKlassClosure(CMSBitMap* bitmap) : _oop_closure(bitmap) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2468
  void do_klass(Klass* k) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2469
    k->oops_do(&_oop_closure);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2470
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2471
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2472
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
void CMSCollector::verify_after_remark_work_2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
  HandleMark  hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2478
  // Get a clear set of claim bits for the roots processing to work with.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2479
  ClassLoaderDataGraph::clear_claimed_marks();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2480
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
  // Mark from roots one level into CMS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
  MarkRefsIntoVerifyClosure notOlder(_span, verification_mark_bm(),
3913
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  2483
                                     markBitMap());
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2484
  CLDToOopClosure cld_closure(&notOlder, true);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2485
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
  gch->rem_set()->prepare_for_younger_refs_iterate(false); // Not parallel.
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  2487
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2488
  {
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2489
    StrongRootsScope srs(1);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2490
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2491
    gch->gen_process_roots(&srs,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  2492
                           GenCollectedHeap::OldGen,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  2493
                           true,   // young gen as roots
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2494
                           GenCollectedHeap::ScanningOption(roots_scanning_options()),
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2495
                           should_unload_classes(),
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2496
                           &notOlder,
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2497
                           NULL,
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2498
                           &cld_closure);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2499
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  // Now mark from the roots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
  MarkFromRootsVerifyClosure markFromRootsClosure(this, _span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
    verification_mark_bm(), markBitMap(), verification_mark_stack());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
  assert(_restart_addr == NULL, "Expected pre-condition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
  verification_mark_bm()->iterate(&markFromRootsClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
  while (_restart_addr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
    // Deal with stack overflow: by restarting at the indicated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
    // address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
    HeapWord* ra = _restart_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
    markFromRootsClosure.reset(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
    _restart_addr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
    verification_mark_bm()->iterate(&markFromRootsClosure, ra, _span.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
  assert(verification_mark_stack()->isEmpty(), "Should have been drained");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
  verify_work_stacks_empty();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2516
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2517
  VerifyKlassOopsKlassClosure verify_klass_oops(verification_mark_bm());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2518
  ClassLoaderDataGraph::classes_do(&verify_klass_oops);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
  // Marking completed -- now verify that each bit marked in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
  // verification_mark_bm() is also marked in markBitMap(); flag all
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
  // errors by printing corresponding objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
  VerifyMarkedClosure vcl(markBitMap());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
  verification_mark_bm()->iterate(&vcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
  assert(!vcl.failed(), "Else verification above should not have succeeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
void ConcurrentMarkSweepGeneration::save_marks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
  // delegate to CMS space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
  cmsSpace()->save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
  for (uint i = 0; i < ParallelGCThreads; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
    _par_gc_thread_states[i]->promo.startTrackingPromotions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
bool ConcurrentMarkSweepGeneration::no_allocs_since_save_marks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
  return cmsSpace()->no_allocs_since_save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
#define CMS_SINCE_SAVE_MARKS_DEFN(OopClosureType, nv_suffix)    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
                                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
void ConcurrentMarkSweepGeneration::                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl) {   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
  cl->set_generation(this);                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
  cmsSpace()->oop_since_save_marks_iterate##nv_suffix(cl);      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
  cl->reset_generation();                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
  save_marks();                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
ALL_SINCE_SAVE_MARKS_CLOSURES(CMS_SINCE_SAVE_MARKS_DEFN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
void
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2553
ConcurrentMarkSweepGeneration::oop_iterate(ExtendedOopClosure* cl) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
  if (freelistLock()->owned_by_self()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
    Generation::oop_iterate(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
    MutexLockerEx x(freelistLock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
    Generation::oop_iterate(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
ConcurrentMarkSweepGeneration::object_iterate(ObjectClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
  if (freelistLock()->owned_by_self()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
    Generation::object_iterate(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
    MutexLockerEx x(freelistLock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
    Generation::object_iterate(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
void
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2573
ConcurrentMarkSweepGeneration::safe_object_iterate(ObjectClosure* cl) {
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2574
  if (freelistLock()->owned_by_self()) {
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2575
    Generation::safe_object_iterate(cl);
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2576
  } else {
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2577
    MutexLockerEx x(freelistLock(), Mutex::_no_safepoint_check_flag);
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2578
    Generation::safe_object_iterate(cl);
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2579
  }
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2580
}
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2581
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1610
diff changeset
  2582
void
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
ConcurrentMarkSweepGeneration::post_compact() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
ConcurrentMarkSweepGeneration::prepare_for_verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
  // Fix the linear allocation blocks to look like free blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
  // Locks are normally acquired/released in gc_prologue/gc_epilogue, but those
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
  // are not called when the heap is verified during universe initialization and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
  // at vm shutdown.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
  if (freelistLock()->owned_by_self()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
    cmsSpace()->prepare_for_verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
    MutexLockerEx fll(freelistLock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
    cmsSpace()->prepare_for_verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
void
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2602
ConcurrentMarkSweepGeneration::verify() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
  // Locks are normally acquired/released in gc_prologue/gc_epilogue, but those
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
  // are not called when the heap is verified during universe initialization and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
  // at vm shutdown.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
  if (freelistLock()->owned_by_self()) {
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2607
    cmsSpace()->verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
    MutexLockerEx fll(freelistLock(), Mutex::_no_safepoint_check_flag);
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2610
    cmsSpace()->verify();
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2611
  }
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2612
}
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2613
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2614
void CMSCollector::verify() {
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11755
diff changeset
  2615
  _cmsGen->verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
bool CMSCollector::overflow_list_is_empty() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
  assert(_num_par_pushes >= 0, "Inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
  if (_overflow_list == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
    assert(_num_par_pushes == 0, "Inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
  return _overflow_list == NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
// The methods verify_work_stacks_empty() and verify_overflow_empty()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
// merely consolidate assertion checks that appear to occur together frequently.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
void CMSCollector::verify_work_stacks_empty() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
  assert(_markStack.isEmpty(), "Marking stack should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
  assert(overflow_list_is_empty(), "Overflow list should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
void CMSCollector::verify_overflow_empty() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
  assert(overflow_list_is_empty(), "Overflow list should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
  assert(no_preserved_marks(), "No preserved marks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2640
// Decide if we want to enable class unloading as part of the
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2641
// ensuing concurrent GC cycle. We will collect and
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2642
// unload classes if it's the case that:
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2643
// (1) an explicit gc request has been made and the flag
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2644
//     ExplicitGCInvokesConcurrentAndUnloadsClasses is set, OR
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2645
// (2) (a) class unloading is enabled at the command line, and
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2646
//     (b) old gen is getting really full
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2647
// NOTE: Provided there is no change in the state of the heap between
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2648
// calls to this method, it should have idempotent results. Moreover,
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2649
// its results should be monotonically increasing (i.e. going from 0 to 1,
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2650
// but not 1 to 0) between successive calls between which the heap was
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2651
// not collected. For the implementation below, it must thus rely on
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2652
// the property that concurrent_cycles_since_last_unload()
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2653
// will not decrease unless a collection cycle happened and that
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2654
// _cmsGen->is_too_full() are
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2655
// themselves also monotonic in that sense. See check_monotonicity()
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2656
// below.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2657
void CMSCollector::update_should_unload_classes() {
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2658
  _should_unload_classes = false;
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2659
  // Condition 1 above
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2660
  if (_full_gc_requested && ExplicitGCInvokesConcurrentAndUnloadsClasses) {
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2661
    _should_unload_classes = true;
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2662
  } else if (CMSClassUnloadingEnabled) { // Condition 2.a above
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2663
    // Disjuncts 2.b.(i,ii,iii) above
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2664
    _should_unload_classes = (concurrent_cycles_since_last_unload() >=
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2665
                              CMSClassUnloadingMaxInterval)
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2666
                           || _cmsGen->is_too_full();
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2667
  }
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2668
}
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2669
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2670
bool ConcurrentMarkSweepGeneration::is_too_full() const {
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2671
  bool res = should_concurrent_collect();
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2672
  res = res && (occupancy() > (double)CMSIsTooFullPercentage/100.0);
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2673
  return res;
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2674
}
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2675
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
void CMSCollector::setup_cms_unloading_and_verification_state() {
9342
456b8d0486b5 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 8728
diff changeset
  2677
  const  bool should_verify =   VerifyBeforeGC || VerifyAfterGC || VerifyDuringGC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
                             || VerifyBeforeExit;
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  2679
  const  int  rso           =   GenCollectedHeap::SO_AllCodeCache;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
21564
4f7edcc6525e 8024954: CMS: CMSClassUnloadingMaxInterval is not implemented correctly. This change is also part of the fix for 8024483.
jmasa
parents: 20282
diff changeset
  2681
  // We set the proper root for this CMS cycle here.
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2682
  if (should_unload_classes()) {   // Should unload classes this cycle
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
    remove_root_scanning_option(rso);  // Shrink the root set appropriately
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
    set_verifying(should_verify);    // Set verification state for this cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
    return;                            // Nothing else needs to be done at this time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
  // Not unloading classes this cycle
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22551
diff changeset
  2689
  assert(!should_unload_classes(), "Inconsistency!");
21564
4f7edcc6525e 8024954: CMS: CMSClassUnloadingMaxInterval is not implemented correctly. This change is also part of the fix for 8024483.
jmasa
parents: 20282
diff changeset
  2690
31606
6158239655bc 8129108: nmethod related crash in CMS
poonam
parents: 31592
diff changeset
  2691
  // If we are not unloading classes then add SO_AllCodeCache to root
6158239655bc 8129108: nmethod related crash in CMS
poonam
parents: 31592
diff changeset
  2692
  // scanning options.
6158239655bc 8129108: nmethod related crash in CMS
poonam
parents: 31592
diff changeset
  2693
  add_root_scanning_option(rso);
6158239655bc 8129108: nmethod related crash in CMS
poonam
parents: 31592
diff changeset
  2694
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  2695
  if ((!verifying() || unloaded_classes_last_cycle()) && should_verify) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
    set_verifying(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
  } else if (verifying() && !should_verify) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
    // We were verifying, but some verification flags got disabled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
    set_verifying(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
    // Exclude symbols, strings and code cache elements from root scanning to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
    // reduce IM and RM pauses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
    remove_root_scanning_option(rso);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
HeapWord* CMSCollector::block_start(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
  const HeapWord* addr = (HeapWord*)p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
  if (_span.contains(p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
    if (_cmsGen->cmsSpace()->is_in_reserved(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
      return _cmsGen->cmsSpace()->block_start(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
ConcurrentMarkSweepGeneration::expand_and_allocate(size_t word_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
                                                   bool   tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
                                                   bool   parallel) {
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  2723
  CMSSynchronousYieldRequest yr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
  assert(!tlab, "Can't deal with TLAB allocation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
  MutexLockerEx x(freelistLock(), Mutex::_no_safepoint_check_flag);
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2726
  expand_for_gc_cause(word_size*HeapWordSize, MinHeapDeltaBytes, CMSExpansionCause::_satisfy_allocation);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
  if (GCExpandToAllocateDelayMillis > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
    os::sleep(Thread::current(), GCExpandToAllocateDelayMillis, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
  }
182
eae79d9b9d46 6642634: Test nsk/regression/b6186200 crashed with SIGSEGV
ysr
parents: 180
diff changeset
  2730
  return have_lock_and_allocate(word_size, tlab);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2733
void ConcurrentMarkSweepGeneration::expand_for_gc_cause(
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2734
    size_t bytes,
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2735
    size_t expand_bytes,
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2736
    CMSExpansionCause::Cause cause)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
{
979
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 670
diff changeset
  2738
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 670
diff changeset
  2739
  bool success = expand(bytes, expand_bytes);
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 670
diff changeset
  2740
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
  // remember why we expanded; this information is used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
  // by shouldConcurrentCollect() when making decisions on whether to start
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
  // a new CMS cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
  if (success) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
    set_expansion_cause(cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
    if (PrintGCDetails && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
      gclog_or_tty->print_cr("Expanded CMS gen for %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
        CMSExpansionCause::to_string(cause));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
HeapWord* ConcurrentMarkSweepGeneration::expand_and_par_lab_allocate(CMSParGCThreadState* ps, size_t word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
  HeapWord* res = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
  MutexLocker x(ParGCRareEvent_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
    // Expansion by some other thread might make alloc OK now:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
    res = ps->lab.alloc(word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
    if (res != NULL) return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
    // If there's not enough expansion space available, give up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
    if (_virtual_space.uncommitted_size() < (word_sz * HeapWordSize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
    // Otherwise, we try expansion.
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2765
    expand_for_gc_cause(word_sz*HeapWordSize, MinHeapDeltaBytes, CMSExpansionCause::_allocate_par_lab);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
    // Now go around the loop and try alloc again;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
    // A competing par_promote might beat us to the expansion space,
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  2768
    // so we may go around the loop again if promotion fails again.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
    if (GCExpandToAllocateDelayMillis > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
      os::sleep(Thread::current(), GCExpandToAllocateDelayMillis, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
bool ConcurrentMarkSweepGeneration::expand_and_ensure_spooling_space(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
  PromotionInfo* promo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
  MutexLocker x(ParGCRareEvent_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
  size_t refill_size_bytes = promo->refillSize() * HeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
    // Expansion by some other thread might make alloc OK now:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
    if (promo->ensure_spooling_space()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
      assert(promo->has_spooling_space(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
             "Post-condition of successful ensure_spooling_space()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
    // If there's not enough expansion space available, give up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
    if (_virtual_space.uncommitted_size() < refill_size_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
    // Otherwise, we try expansion.
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2792
    expand_for_gc_cause(refill_size_bytes, MinHeapDeltaBytes, CMSExpansionCause::_allocate_par_spooling_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
    // Now go around the loop and try alloc again;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
    // A competing allocation might beat us to the expansion space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
    // so we may go around the loop again if allocation fails again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
    if (GCExpandToAllocateDelayMillis > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
      os::sleep(Thread::current(), GCExpandToAllocateDelayMillis, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
void ConcurrentMarkSweepGeneration::shrink(size_t bytes) {
19548
e81917358076 8022817: CMS should not shrink if compaction was not done
jmasa
parents: 19347
diff changeset
  2803
  // Only shrink if a compaction was done so that all the free space
e81917358076 8022817: CMS should not shrink if compaction was not done
jmasa
parents: 19347
diff changeset
  2804
  // in the generation is in a contiguous block at the end.
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2805
  if (did_compact()) {
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2806
    CardGeneration::shrink(bytes);
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2807
  }
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2808
}
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2809
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 27905
diff changeset
  2810
void ConcurrentMarkSweepGeneration::assert_correct_size_change_locking() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
  assert_locked_or_safepoint(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 16385
diff changeset
  2814
void ConcurrentMarkSweepGeneration::shrink_free_list_by(size_t bytes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
  assert_locked_or_safepoint(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
  assert_lock_strong(freelistLock());
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents: 17006
diff changeset
  2817
  if (PrintGCDetails && Verbose) {
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents: 17006
diff changeset
  2818
    warning("Shrinking of CMS not yet implemented");
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents: 17006
diff changeset
  2819
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
// Simple ctor/dtor wrapper for accounting & timer chores around concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
// phases.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
class CMSPhaseAccounting: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
  CMSPhaseAccounting(CMSCollector *collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
                     const char *phase,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
                     bool print_cr = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
  ~CMSPhaseAccounting();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
  CMSCollector *_collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
  const char *_phase;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
  elapsedTimer _wallclock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2837
  bool _print_cr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2838
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
  // Not MT-safe; so do not pass around these StackObj's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
  // where they may be accessed by other threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
  jlong wallclock_millis() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
    assert(_wallclock.is_active(), "Wall clock should not stop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
    _wallclock.stop();  // to record time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
    jlong ret = _wallclock.milliseconds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2846
    _wallclock.start(); // restart
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2849
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
CMSPhaseAccounting::CMSPhaseAccounting(CMSCollector *collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
                                       const char *phase,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
                                       bool print_cr) :
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  2854
  _collector(collector), _phase(phase), _print_cr(print_cr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
    _collector->resetYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2858
  }
15956
309beb854960 8008684: CMS: concurrent phase start markers should always be printed
tschatzl
parents: 15952
diff changeset
  2859
  if (PrintGCDetails) {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  2860
    gclog_or_tty->gclog_stamp();
15956
309beb854960 8008684: CMS: concurrent phase start markers should always be printed
tschatzl
parents: 15952
diff changeset
  2861
    gclog_or_tty->print_cr("[%s-concurrent-%s-start]",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2862
      _collector->cmsGen()->short_name(), _phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
  _collector->resetTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
  _wallclock.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2866
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2867
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
CMSPhaseAccounting::~CMSPhaseAccounting() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
  assert(_wallclock.is_active(), "Wall clock should not have stopped");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2871
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
  _wallclock.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
  if (PrintGCDetails) {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  2874
    gclog_or_tty->gclog_stamp();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
    gclog_or_tty->print("[%s-concurrent-%s: %3.3f/%3.3f secs]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
                 _collector->cmsGen()->short_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
                 _phase, _collector->timerValue(), _wallclock.seconds());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
    if (_print_cr) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24357
diff changeset
  2879
      gclog_or_tty->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
    if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
      gclog_or_tty->print_cr(" (CMS-concurrent-%s yielded %d times)", _phase,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
                    _collector->yields());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2888
// CMS work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2890
// The common parts of CMSParInitialMarkTask and CMSParRemarkTask.
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2891
class CMSParMarkTask : public AbstractGangTask {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2892
 protected:
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2893
  CMSCollector*     _collector;
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  2894
  uint              _n_workers;
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  2895
  CMSParMarkTask(const char* name, CMSCollector* collector, uint n_workers) :
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2896
      AbstractGangTask(name),
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2897
      _collector(collector),
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2898
      _n_workers(n_workers) {}
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2899
  // Work method in support of parallel rescan ... of young gen spaces
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2900
  void do_young_space_rescan(uint worker_id, OopsInGenClosure* cl,
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2901
                             ContiguousSpace* space,
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2902
                             HeapWord** chunk_array, size_t chunk_top);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2903
  void work_on_young_gen_roots(uint worker_id, OopsInGenClosure* cl);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2904
};
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2905
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2906
// Parallel initial mark task
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2907
class CMSParInitialMarkTask: public CMSParMarkTask {
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2908
  StrongRootsScope* _strong_roots_scope;
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2909
 public:
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2910
  CMSParInitialMarkTask(CMSCollector* collector, StrongRootsScope* strong_roots_scope, uint n_workers) :
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2911
      CMSParMarkTask("Scan roots and young gen for initial mark in parallel", collector, n_workers),
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2912
      _strong_roots_scope(strong_roots_scope) {}
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2913
  void work(uint worker_id);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2914
};
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2915
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
// Checkpoint the roots into this generation from outside
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
// this generation. [Note this initial checkpoint need only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
// be approximate -- we'll do a catch up phase subsequently.]
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  2919
void CMSCollector::checkpointRootsInitial() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
  assert(_collectorState == InitialMarking, "Wrong collector state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
  check_correct_thread_executing();
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  2922
  TraceCMSMemoryManagerStats tms(_collectorState,GenCollectedHeap::heap()->gc_cause());
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7419
diff changeset
  2923
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2924
  save_heap_summary();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2925
  report_heap_summary(GCWhen::BeforeGC);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2926
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
  ReferenceProcessor* rp = ref_processor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
  assert(_restart_addr == NULL, "Control point invariant");
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  2929
  {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
    // acquire locks for subsequent manipulations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
    MutexLockerEx x(bitMapLock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
                    Mutex::_no_safepoint_check_flag);
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  2933
    checkpointRootsInitialWork();
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10240
diff changeset
  2934
    // enable ("weak") refs discovery
28212
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 28033
diff changeset
  2935
    rp->enable_discovery();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
    _collectorState = Marking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  2940
void CMSCollector::checkpointRootsInitialWork() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
  assert(SafepointSynchronize::is_at_safepoint(), "world should be stopped");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
  assert(_collectorState == InitialMarking, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  2944
  // Already have locks.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2945
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
  assert(_markBitMap.isAllClear(), "was reset at end of previous cycle");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2948
  // Setup the verification and class unloading state for this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2949
  // CMS collection cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
  setup_cms_unloading_and_verification_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2951
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  2952
  NOT_PRODUCT(GCTraceTime t("\ncheckpointRootsInitialWork",
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  2953
    PrintGCDetails && Verbose, true, _gc_timer_cm);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2954
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2955
  // Reset all the PLAB chunk arrays if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
  if (_survivor_plab_array != NULL && !CMSPLABRecordAlways) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
    reset_survivor_plab_arrays();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2959
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2960
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
  HandleMark  hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
3913
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  2963
  MarkRefsIntoClosure notOlder(_span, &_markBitMap);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
  gch->ensure_parsability(false);  // fill TLABs, but no need to retire them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
  // Update the saved marks which may affect the root scans.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
  gch->save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2973
  // weak reference processing has not started yet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2974
  ref_processor()->set_enqueuing_is_done(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2975
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2976
  // Need to remember all newly created CLDs,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2977
  // so that we can guarantee that the remark finds them.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2978
  ClassLoaderDataGraph::remember_new_clds(true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2979
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2980
  // Whenever a CLD is found, it will be claimed before proceeding to mark
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2981
  // the klasses. The claimed marks need to be cleared before marking starts.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2982
  ClassLoaderDataGraph::clear_claimed_marks();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  2983
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  2984
  if (CMSPrintEdenSurvivorChunks) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  2985
    print_eden_and_survivor_chunk_arrays();
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  2986
  }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  2987
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2988
  {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  2989
#if defined(COMPILER2) || INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  2990
    DerivedPointerTableDeactivate dpt_deact;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  2991
#endif
30581
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
  2992
    if (CMSParallelInitialMarkEnabled) {
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2993
      // The parallel version.
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  2994
      WorkGang* workers = gch->workers();
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  2995
      assert(workers != NULL, "Need parallel worker threads.");
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  2996
      uint n_workers = workers->active_workers();
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2997
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2998
      StrongRootsScope srs(n_workers);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  2999
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  3000
      CMSParInitialMarkTask tsk(this, &srs, n_workers);
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3001
      initialize_sequential_subtasks_for_young_gen_rescan(n_workers);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3002
      if (n_workers > 1) {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3003
        workers->run_task(&tsk);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3004
      } else {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3005
        tsk.work(0);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3006
      }
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3007
    } else {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3008
      // The serial version.
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  3009
      CLDToOopClosure cld_closure(&notOlder, true);
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3010
      gch->rem_set()->prepare_for_younger_refs_iterate(false); // Not parallel.
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  3011
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  3012
      StrongRootsScope srs(1);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  3013
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  3014
      gch->gen_process_roots(&srs,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  3015
                             GenCollectedHeap::OldGen,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  3016
                             true,   // young gen as roots
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  3017
                             GenCollectedHeap::ScanningOption(roots_scanning_options()),
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  3018
                             should_unload_classes(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  3019
                             &notOlder,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  3020
                             NULL,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  3021
                             &cld_closure);
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  3022
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3023
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3025
  // Clear mod-union table; it will be dirtied in the prologue of
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  3026
  // CMS generation per each young generation collection.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3028
  assert(_modUnionTable.isAllClear(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3029
       "Was cleared in most recent final checkpoint phase"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3030
       " or no bits are set in the gc_prologue before the start of the next "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3031
       "subsequent marking phase.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3032
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3033
  assert(_ct->klass_rem_set()->mod_union_is_clear(), "Must be");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3034
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
  // Save the end of the used_region of the constituent generations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3036
  // to be used to limit the extent of sweep in each generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3037
  save_sweep_limits();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3038
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3039
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3040
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3041
bool CMSCollector::markFromRoots() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3042
  // we might be tempted to assert that:
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3043
  // assert(!SafepointSynchronize::is_at_safepoint(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3044
  //        "inconsistent argument?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3045
  // However that wouldn't be right, because it's possible that
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  3046
  // a safepoint is indeed in progress as a young generation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3047
  // stop-the-world GC happens even as we mark in this generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3048
  assert(_collectorState == Marking, "inconsistent state?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3049
  check_correct_thread_executing();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3050
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3051
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3052
  // Weak ref discovery note: We may be discovering weak
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3053
  // refs in this generation concurrent (but interleaved) with
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  3054
  // weak ref discovery by the young generation collector.
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3055
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3056
  CMSTokenSyncWithLocks ts(true, bitMapLock());
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3057
  TraceCPUTime tcpu(PrintGCDetails, true, gclog_or_tty);
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  3058
  CMSPhaseAccounting pa(this, "mark", !PrintGCDetails);
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3059
  bool res = markFromRootsWork();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3060
  if (res) {
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3061
    _collectorState = Precleaning;
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3062
  } else { // We failed and a foreground collection wants to take over
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3063
    assert(_foregroundGCIsActive, "internal state inconsistency");
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3064
    assert(_restart_addr == NULL,  "foreground will restart from scratch");
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3065
    if (PrintGCDetails) {
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3066
      gclog_or_tty->print_cr("bailing out to foreground collection");
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3067
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3068
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3069
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3070
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3071
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3072
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3073
bool CMSCollector::markFromRootsWork() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3074
  // iterate over marked bits in bit map, doing a full scan and mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3075
  // from these roots using the following algorithm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3076
  // . if oop is to the right of the current scan pointer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3077
  //   mark corresponding bit (we'll process it later)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3078
  // . else (oop is to left of current scan pointer)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3079
  //   push oop on marking stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3080
  // . drain the marking stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3081
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
  // Note that when we do a marking step we need to hold the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
  // bit map lock -- recall that direct allocation (by mutators)
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  3084
  // and promotion (by the young generation collector) is also
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3085
  // marking the bit map. [the so-called allocate live policy.]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3086
  // Because the implementation of bit map marking is not
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3087
  // robust wrt simultaneous marking of bits in the same word,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3088
  // we need to make sure that there is no such interference
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
  // between concurrent such updates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3091
  // already have locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3092
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3093
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3094
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3095
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3096
  bool result = false;
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
  3097
  if (CMSConcurrentMTEnabled && ConcGCThreads > 0) {
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3098
    result = do_marking_mt();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3099
  } else {
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3100
    result = do_marking_st();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3102
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3105
// Forward decl
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3106
class CMSConcMarkingTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
class CMSConcMarkingTerminator: public ParallelTaskTerminator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3109
  CMSCollector*       _collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
  CMSConcMarkingTask* _task;
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3111
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
  virtual void yield();
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3113
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
  // "n_threads" is the number of threads to be terminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
  // "queue_set" is a set of work queues of other threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
  // "collector" is the CMS collector associated with this task terminator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3117
  // "yield" indicates whether we need the gang as a whole to yield.
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3118
  CMSConcMarkingTerminator(int n_threads, TaskQueueSetSuper* queue_set, CMSCollector* collector) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3119
    ParallelTaskTerminator(n_threads, queue_set),
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3120
    _collector(collector) { }
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3121
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3122
  void set_task(CMSConcMarkingTask* task) {
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3123
    _task = task;
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3124
  }
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3125
};
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3126
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3127
class CMSConcMarkingTerminatorTerminator: public TerminatorTerminator {
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3128
  CMSConcMarkingTask* _task;
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3129
 public:
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3130
  bool should_exit_termination();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3131
  void set_task(CMSConcMarkingTask* task) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3132
    _task = task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3134
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3136
// MT Concurrent Marking Task
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
class CMSConcMarkingTask: public YieldingFlexibleGangTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3138
  CMSCollector* _collector;
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  3139
  uint          _n_workers;       // requested/desired # workers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
  bool          _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
  CompactibleFreeListSpace*  _cms_space;
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3142
  char          _pad_front[64];   // padding to ...
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3143
  HeapWord*     _global_finger;   // ... avoid sharing cache line
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3144
  char          _pad_back[64];
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3145
  HeapWord*     _restart_addr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3146
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
  //  Exposed here for yielding support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3148
  Mutex* const _bit_map_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3149
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3150
  // The per thread work queues, available here for stealing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3151
  OopTaskQueueSet*  _task_queues;
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3152
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3153
  // Termination (and yielding) support
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3154
  CMSConcMarkingTerminator _term;
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3155
  CMSConcMarkingTerminatorTerminator _term_term;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3157
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3158
  CMSConcMarkingTask(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3159
                 CompactibleFreeListSpace* cms_space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3160
                 YieldingFlexibleWorkGang* workers,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3161
                 OopTaskQueueSet* task_queues):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3162
    YieldingFlexibleGangTask("Concurrent marking done multi-threaded"),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3163
    _collector(collector),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3164
    _cms_space(cms_space),
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3165
    _n_workers(0), _result(true),
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3166
    _task_queues(task_queues),
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3167
    _term(_n_workers, task_queues, _collector),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3168
    _bit_map_lock(collector->bitMapLock())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3169
  {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3170
    _requested_size = _n_workers;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3171
    _term.set_task(this);
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3172
    _term_term.set_task(this);
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3173
    _restart_addr = _global_finger = _cms_space->bottom();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3177
  OopTaskQueueSet* task_queues()  { return _task_queues; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3179
  OopTaskQueue* work_queue(int i) { return task_queues()->queue(i); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
  HeapWord** global_finger_addr() { return &_global_finger; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
  CMSConcMarkingTerminator* terminator() { return &_term; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  3185
  virtual void set_for_termination(uint active_workers) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3186
    terminator()->reset_for_reuse(active_workers);
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3187
  }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3188
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3189
  void work(uint worker_id);
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3190
  bool should_yield() {
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3191
    return    ConcurrentMarkSweepThread::should_yield()
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3192
           && !_collector->foregroundGCIsActive();
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3193
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3195
  virtual void coordinator_yield();  // stuff done by coordinator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3196
  bool result() { return _result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3198
  void reset(HeapWord* ra) {
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3199
    assert(_global_finger >= _cms_space->end(),  "Postcondition of ::work(i)");
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3200
    _restart_addr = _global_finger = ra;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3201
    _term.reset_for_reuse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3204
  static bool get_work_from_overflow_stack(CMSMarkStack* ovflw_stk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
                                           OopTaskQueue* work_q);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3207
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3208
  void do_scan_and_mark(int i, CompactibleFreeListSpace* sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3209
  void do_work_steal(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
  void bump_global_finger(HeapWord* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3211
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3212
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3213
bool CMSConcMarkingTerminatorTerminator::should_exit_termination() {
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3214
  assert(_task != NULL, "Error");
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3215
  return _task->yielding();
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3216
  // Note that we do not need the disjunct || _task->should_yield() above
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3217
  // because we want terminating threads to yield only if the task
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3218
  // is already in the midst of yielding, which happens only after at least one
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3219
  // thread has yielded.
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3220
}
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3221
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3222
void CMSConcMarkingTerminator::yield() {
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3223
  if (_task->should_yield()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3224
    _task->yield();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3225
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3226
    ParallelTaskTerminator::yield();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3228
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3230
////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3231
// Concurrent Marking Algorithm Sketch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3232
////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3233
// Until all tasks exhausted (both spaces):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3234
// -- claim next available chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3235
// -- bump global finger via CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3236
// -- find first object that starts in this chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3237
//    and start scanning bitmap from that position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3238
// -- scan marked objects for oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3239
// -- CAS-mark target, and if successful:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3240
//    . if target oop is above global finger (volatile read)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3241
//      nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3242
//    . if target oop is in chunk and above local finger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3243
//        then nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3244
//    . else push on work-queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3245
// -- Deal with possible overflow issues:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3246
//    . local work-queue overflow causes stuff to be pushed on
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3247
//      global (common) overflow queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3248
//    . always first empty local work queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3249
//    . then get a batch of oops from global work queue if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3250
//    . then do work stealing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3251
// -- When all tasks claimed (both spaces)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3252
//    and local work queue empty,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3253
//    then in a loop do:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3254
//    . check global overflow stack; steal a batch of oops and trace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3255
//    . try to steal from other threads oif GOS is empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3256
//    . if neither is available, offer termination
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3257
// -- Terminate and return result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3258
//
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3259
void CMSConcMarkingTask::work(uint worker_id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3260
  elapsedTimer _timer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3261
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3264
  DEBUG_ONLY(_collector->verify_overflow_empty();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
  // Before we begin work, our work queue should be empty
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3267
  assert(work_queue(worker_id)->size() == 0, "Expected to be empty");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3268
  // Scan the bitmap covering _cms_space, tracing through grey objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3269
  _timer.start();
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3270
  do_scan_and_mark(worker_id, _cms_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3271
  _timer.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3272
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3273
    gclog_or_tty->print_cr("Finished cms space scanning in %dth thread: %3.3f sec",
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3274
      worker_id, _timer.seconds());
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3275
      // XXX: need xxx/xxx type of notation, two timers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3276
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3277
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3278
  // ... do work stealing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3279
  _timer.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3280
  _timer.start();
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3281
  do_work_steal(worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3282
  _timer.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3283
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
    gclog_or_tty->print_cr("Finished work stealing in %dth thread: %3.3f sec",
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3285
      worker_id, _timer.seconds());
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3286
      // XXX: need xxx/xxx type of notation, two timers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3287
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3288
  assert(_collector->_markStack.isEmpty(), "Should have been emptied");
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3289
  assert(work_queue(worker_id)->size() == 0, "Should have been emptied");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3290
  // Note that under the current task protocol, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3291
  // following assertion is true even of the spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3292
  // expanded since the completion of the concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3293
  // marking. XXX This will likely change under a strict
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
  // ABORT semantics.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3295
  // After perm removal the comparison was changed to
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3296
  // greater than or equal to from strictly greater than.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3297
  // Before perm removal the highest address sweep would
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3298
  // have been at the end of perm gen but now is at the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3299
  // end of the tenured gen.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3300
  assert(_global_finger >=  _cms_space->end(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3301
         "All tasks have been completed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3302
  DEBUG_ONLY(_collector->verify_overflow_empty();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3303
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3305
void CMSConcMarkingTask::bump_global_finger(HeapWord* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
  HeapWord* read = _global_finger;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
  HeapWord* cur  = read;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
  while (f > read) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3309
    cur = read;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
    read = (HeapWord*) Atomic::cmpxchg_ptr(f, &_global_finger, cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
    if (cur == read) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
      // our cas succeeded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
      assert(_global_finger >= f, "protocol consistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3314
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3319
// This is really inefficient, and should be redone by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
// using (not yet available) block-read and -write interfaces to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
// stack and the work_queue. XXX FIX ME !!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
bool CMSConcMarkingTask::get_work_from_overflow_stack(CMSMarkStack* ovflw_stk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
                                                      OopTaskQueue* work_q) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3324
  // Fast lock-free check
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3325
  if (ovflw_stk->length() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3326
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3327
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3328
  assert(work_q->size() == 0, "Shouldn't steal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3329
  MutexLockerEx ml(ovflw_stk->par_lock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
                   Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
  // Grab up to 1/4 the size of the work queue
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2154
diff changeset
  3332
  size_t num = MIN2((size_t)(work_q->max_elems() - work_q->size())/4,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
                    (size_t)ParGCDesiredObjsFromOverflowList);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
  num = MIN2(num, ovflw_stk->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3335
  for (int i = (int) num; i > 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3336
    oop cur = ovflw_stk->pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3337
    assert(cur != NULL, "Counted wrong?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3338
    work_q->push(cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3340
  return num > 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3342
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3343
void CMSConcMarkingTask::do_scan_and_mark(int i, CompactibleFreeListSpace* sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3344
  SequentialSubTasksDone* pst = sp->conc_par_seq_tasks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
  int n_tasks = pst->n_tasks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
  // We allow that there may be no tasks to do here because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
  // we are restarting after a stack overflow.
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3348
  assert(pst->valid() || n_tasks == 0, "Uninitialized use?");
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  3349
  uint nth_task = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3351
  HeapWord* aligned_start = sp->bottom();
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3352
  if (sp->used_region().contains(_restart_addr)) {
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3353
    // Align down to a card boundary for the start of 0th task
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3354
    // for this space.
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3355
    aligned_start =
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3356
      (HeapWord*)align_size_down((uintptr_t)_restart_addr,
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3357
                                 CardTableModRefBS::card_size);
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3358
  }
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3359
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
  size_t chunk_size = sp->marking_task_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3361
  while (!pst->is_task_claimed(/* reference */ nth_task)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
    // Having claimed the nth task in this space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
    // compute the chunk that it corresponds to:
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3364
    MemRegion span = MemRegion(aligned_start + nth_task*chunk_size,
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3365
                               aligned_start + (nth_task+1)*chunk_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3366
    // Try and bump the global finger via a CAS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
    // note that we need to do the global finger bump
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
    // _before_ taking the intersection below, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3369
    // the task corresponding to that region will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3370
    // deemed done even if the used_region() expands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3371
    // because of allocation -- as it almost certainly will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3372
    // during start-up while the threads yield in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3373
    // closure below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3374
    HeapWord* finger = span.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3375
    bump_global_finger(finger);   // atomically
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3376
    // There are null tasks here corresponding to chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3377
    // beyond the "top" address of the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3378
    span = span.intersection(sp->used_region());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3379
    if (!span.is_empty()) {  // Non-null task
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3380
      HeapWord* prev_obj;
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3381
      assert(!span.contains(_restart_addr) || nth_task == 0,
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3382
             "Inconsistency");
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3383
      if (nth_task == 0) {
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3384
        // For the 0th task, we'll not need to compute a block_start.
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3385
        if (span.contains(_restart_addr)) {
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3386
          // In the case of a restart because of stack overflow,
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3387
          // we might additionally skip a chunk prefix.
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3388
          prev_obj = _restart_addr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3389
        } else {
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3390
          prev_obj = span.start();
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3391
        }
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3392
      } else {
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3393
        // We want to skip the first object because
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3394
        // the protocol is to scan any object in its entirety
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3395
        // that _starts_ in this span; a fortiori, any
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3396
        // object starting in an earlier span is scanned
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3397
        // as part of an earlier claimed task.
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3398
        // Below we use the "careful" version of block_start
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3399
        // so we do not try to navigate uninitialized objects.
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3400
        prev_obj = sp->block_start_careful(span.start());
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3401
        // Below we use a variant of block_size that uses the
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3402
        // Printezis bits to avoid waiting for allocated
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3403
        // objects to become initialized/parsable.
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3404
        while (prev_obj < span.start()) {
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3405
          size_t sz = sp->block_size_no_stall(prev_obj, _collector);
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3406
          if (sz > 0) {
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3407
            prev_obj += sz;
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3408
          } else {
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3409
            // In this case we may end up doing a bit of redundant
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3410
            // scanning, but that appears unavoidable, short of
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3411
            // locking the free list locks; see bug 6324141.
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3412
            break;
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3413
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3416
      if (prev_obj < span.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3417
        MemRegion my_span = MemRegion(prev_obj, span.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3418
        // Do the marking work within a non-empty span --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
        // the last argument to the constructor indicates whether the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3420
        // iteration should be incremental with periodic yields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3421
        Par_MarkFromRootsClosure cl(this, _collector, my_span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3422
                                    &_collector->_markBitMap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
                                    work_queue(i),
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3424
                                    &_collector->_markStack);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3425
        _collector->_markBitMap.iterate(&cl, my_span.start(), my_span.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
      } // else nothing to do for this task
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
    }   // else nothing to do for this task
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
  // We'd be tempted to assert here that since there are no
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
  // more tasks left to claim in this space, the global_finger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
  // must exceed space->top() and a fortiori space->end(). However,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
  // that would not quite be correct because the bumping of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
  // global_finger occurs strictly after the claiming of a task,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
  // so by the time we reach here the global finger may not yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3435
  // have been bumped up by the thread that claimed the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3436
  // task.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3437
  pst->all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3438
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3439
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  3440
class Par_ConcMarkingClosure: public MetadataAwareOopClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3441
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3442
  CMSCollector* _collector;
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3443
  CMSConcMarkingTask* _task;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
  MemRegion     _span;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3445
  CMSBitMap*    _bit_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
  CMSMarkStack* _overflow_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
  OopTaskQueue* _work_queue;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3448
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3449
  DO_OOP_WORK_DEFN
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
 public:
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3451
  Par_ConcMarkingClosure(CMSCollector* collector, CMSConcMarkingTask* task, OopTaskQueue* work_queue,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3452
                         CMSBitMap* bit_map, CMSMarkStack* overflow_stack):
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  3453
    MetadataAwareOopClosure(collector->ref_processor()),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3454
    _collector(collector),
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3455
    _task(task),
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3456
    _span(collector->_span),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
    _work_queue(work_queue),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3458
    _bit_map(bit_map),
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  3459
    _overflow_stack(overflow_stack)
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  3460
  { }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3461
  virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3462
  virtual void do_oop(narrowOop* p);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3463
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
  void trim_queue(size_t max);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
  void handle_stack_overflow(HeapWord* lost);
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3466
  void do_yield_check() {
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3467
    if (_task->should_yield()) {
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3468
      _task->yield();
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3469
    }
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3470
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3471
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3473
// Grey object scanning during work stealing phase --
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3474
// the salient assumption here is that any references
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3475
// that are in these stolen objects being scanned must
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3476
// already have been initialized (else they would not have
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3477
// been published), so we do not need to check for
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3478
// uninitialized objects before pushing here.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3479
void Par_ConcMarkingClosure::do_oop(oop obj) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  3480
  assert(obj->is_oop_or_null(true), "Expected an oop or NULL at " PTR_FORMAT, p2i(obj));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3481
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
  // Check if oop points into the CMS generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
  // and is not marked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
  if (_span.contains(addr) && !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
    // a white object ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
    // If we manage to "claim" the object, by being the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
    // first thread to mark it, then we push it on our
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
    // marking stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
    if (_bit_map->par_mark(addr)) {     // ... now grey
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
      // push on work queue (grey set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
      bool simulate_overflow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
      NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
        if (CMSMarkStackOverflowALot &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
            _collector->simulate_overflow()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
          // simulate a stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3496
          simulate_overflow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3497
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
      )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
      if (simulate_overflow ||
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3500
          !(_work_queue->push(obj) || _overflow_stack->par_push(obj))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3501
        // stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3502
        if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
          gclog_or_tty->print_cr("CMS marking stack overflow (benign) at "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
                                 SIZE_FORMAT, _overflow_stack->capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
        // We cannot assert that the overflow stack is full because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
        // it may have been emptied since.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
        assert(simulate_overflow ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
               _work_queue->size() == _work_queue->max_elems(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
              "Else push should have succeeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3511
        handle_stack_overflow(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3513
    } // Else, some other thread got there first
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3514
    do_yield_check();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3518
void Par_ConcMarkingClosure::do_oop(oop* p)       { Par_ConcMarkingClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3519
void Par_ConcMarkingClosure::do_oop(narrowOop* p) { Par_ConcMarkingClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3520
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
void Par_ConcMarkingClosure::trim_queue(size_t max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
  while (_work_queue->size() > max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
    oop new_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
    if (_work_queue->pop_local(new_oop)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
      assert(new_oop->is_oop(), "Should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
      assert(_bit_map->isMarked((HeapWord*)new_oop), "Grey object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
      assert(_span.contains((HeapWord*)new_oop), "Not in span");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
      new_oop->oop_iterate(this);  // do_oop() above
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3529
      do_yield_check();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
// Upon stack overflow, we discard (part of) the stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
// remembering the least address amongst those discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
// in CMSCollector's _restart_address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
void Par_ConcMarkingClosure::handle_stack_overflow(HeapWord* lost) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
  // We need to do this under a mutex to prevent other
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  3539
  // workers from interfering with the work done below.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
  MutexLockerEx ml(_overflow_stack->par_lock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
                   Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
  // Remember the least grey address discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
  HeapWord* ra = (HeapWord*)_overflow_stack->least_value(lost);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
  _collector->lower_restart_addr(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
  _overflow_stack->reset();  // discard stack contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
  _overflow_stack->expand(); // expand the stack if possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
void CMSConcMarkingTask::do_work_steal(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
  OopTaskQueue* work_q = work_queue(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
  oop obj_to_scan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
  CMSBitMap* bm = &(_collector->_markBitMap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
  CMSMarkStack* ovflw = &(_collector->_markStack);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
  int* seed = _collector->hash_seed(i);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3556
  Par_ConcMarkingClosure cl(_collector, this, work_q, bm, ovflw);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
    cl.trim_queue(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
    assert(work_q->size() == 0, "Should have been emptied above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
    if (get_work_from_overflow_stack(ovflw, work_q)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
      // Can't assert below because the work obtained from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
      // overflow stack may already have been stolen from us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
      // assert(work_q->size() > 0, "Work from overflow stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
    } else if (task_queues()->steal(i, seed, /* reference */ obj_to_scan)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
      assert(obj_to_scan->is_oop(), "Should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
      assert(bm->isMarked((HeapWord*)obj_to_scan), "Grey object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
      obj_to_scan->oop_iterate(&cl);
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3569
    } else if (terminator()->offer_termination(&_term_term)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
      assert(work_q->size() == 0, "Impossible!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
      break;
6763
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3572
    } else if (yielding() || should_yield()) {
711b8a44c4dd 6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents: 6762
diff changeset
  3573
      yield();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3578
// This is run by the CMS (coordinator) thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
void CMSConcMarkingTask::coordinator_yield() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
         "CMS thread should hold CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
  // First give up the locks, then yield, then re-lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
  // We should probably use a constructor/destructor idiom to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
  // do this unlock/lock or modify the MutexUnlocker class to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3585
  // serve our purpose. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
  assert_lock_strong(_bit_map_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
  _bit_map_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
  ConcurrentMarkSweepThread::desynchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
    _collector->incrementYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
  // It is possible for whichever thread initiated the yield request
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
  // not to get a chance to wake up and take the bitmap lock between
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
  // this thread releasing it and reacquiring it. So, while the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
  // should_yield() flag is on, let's sleep for a bit to give the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
  // other thread a chance to wake up. The limit imposed on the number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3599
  // of iterations is defensive, to avoid any unforseen circumstances
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3600
  // putting us into an infinite loop. Since it's always been this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3601
  // (coordinator_yield()) method that was observed to cause the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3602
  // problem, we are using a parameter (CMSCoordinatorYieldSleepCount)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3603
  // which is by default non-zero. For the other seven methods that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
  // also perform the yield operation, as are using a different
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3605
  // parameter (CMSYieldSleepCount) which is by default zero. This way we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3606
  // can enable the sleeping for those methods too, if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3607
  // See 6442774.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
  // We really need to reconsider the synchronization between the GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
  // thread and the yield-requesting threads in the future and we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
  // should really use wait/notify, which is the recommended
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
  // way of doing this type of interaction. Additionally, we should
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
  // consolidate the eight methods that do the yield operation and they
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  3614
  // are almost identical into one for better maintainability and
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
  // readability. See 6445193.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
  // Tony 2006.06.29
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
  for (unsigned i = 0; i < CMSCoordinatorYieldSleepCount &&
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3619
                   ConcurrentMarkSweepThread::should_yield() &&
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  3620
                   !CMSCollector::foregroundGCIsActive(); ++i) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
    os::sleep(Thread::current(), 1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
  ConcurrentMarkSweepThread::synchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3625
  _bit_map_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3626
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3627
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3629
bool CMSCollector::do_marking_mt() {
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
  3630
  assert(ConcGCThreads > 0 && conc_workers() != NULL, "precondition");
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  3631
  uint num_workers = AdaptiveSizePolicy::calc_active_conc_workers(conc_workers()->total_workers(),
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  3632
                                                                  conc_workers()->active_workers(),
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  3633
                                                                  Threads::number_of_non_daemon_threads());
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  3634
  conc_workers()->set_active_workers(num_workers);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3635
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3636
  CompactibleFreeListSpace* cms_space  = _cmsGen->cmsSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3638
  CMSConcMarkingTask tsk(this,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3639
                         cms_space,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3640
                         conc_workers(),
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  3641
                         task_queues());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
  // Since the actual number of workers we get may be different
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
  // from the number we requested above, do we need to do anything different
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
  // below? In particular, may be we need to subclass the SequantialSubTasksDone
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
  // class?? XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3647
  cms_space ->initialize_sequential_subtasks_for_marking(num_workers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3648
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
  // Refs discovery is already non-atomic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3650
  assert(!ref_processor()->discovery_is_atomic(), "Should be non-atomic");
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3651
  assert(ref_processor()->discovery_is_mt(), "Discovery should be MT");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3652
  conc_workers()->start_task(&tsk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3653
  while (tsk.yielded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
    tsk.coordinator_yield();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
    conc_workers()->continue_task(&tsk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3657
  // If the task was aborted, _restart_addr will be non-NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3658
  assert(tsk.completed() || _restart_addr != NULL, "Inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3659
  while (_restart_addr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3660
    // XXX For now we do not make use of ABORTED state and have not
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
    // yet implemented the right abort semantics (even in the original
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
    // single-threaded CMS case). That needs some more investigation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
    // and is deferred for now; see CR# TBF. 07252005YSR. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
    assert(!CMSAbortSemantics || tsk.aborted(), "Inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3665
    // If _restart_addr is non-NULL, a marking stack overflow
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1910
diff changeset
  3666
    // occurred; we need to do a fresh marking iteration from the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
    // indicated restart address.
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3668
    if (_foregroundGCIsActive) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
      // We may be running into repeated stack overflows, having
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
      // reached the limit of the stack size, while making very
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
      // slow forward progress. It may be best to bail out and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3672
      // let the foreground collector do its job.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3673
      // Clear _restart_addr, so that foreground GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3674
      // works from scratch. This avoids the headache of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3675
      // a "rescan" which would otherwise be needed because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
      // of the dirty mod union table & card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3677
      _restart_addr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3679
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
    // Adjust the task to restart from _restart_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3681
    tsk.reset(_restart_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
    cms_space ->initialize_sequential_subtasks_for_marking(num_workers,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3683
                  _restart_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3684
    _restart_addr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
    // Get the workers going again
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
    conc_workers()->start_task(&tsk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
    while (tsk.yielded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3688
      tsk.coordinator_yield();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3689
      conc_workers()->continue_task(&tsk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
  assert(tsk.completed(), "Inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
  assert(tsk.result() == true, "Inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3697
bool CMSCollector::do_marking_st() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3698
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3699
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3700
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3701
  // Temporarily make refs discovery single threaded (non-MT)
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3702
  ReferenceProcessorMTDiscoveryMutator rp_mut_discovery(ref_processor(), false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
  MarkFromRootsClosure markFromRootsClosure(this, _span, &_markBitMap,
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3704
    &_markStack, CMSYield);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
  // the last argument to iterate indicates whether the iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
  // should be incremental with periodic yields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3707
  _markBitMap.iterate(&markFromRootsClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
  // If _restart_addr is non-NULL, a marking stack overflow
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1910
diff changeset
  3709
  // occurred; we need to do a fresh iteration from the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3710
  // indicated restart address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3711
  while (_restart_addr != NULL) {
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  3712
    if (_foregroundGCIsActive) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3713
      // We may be running into repeated stack overflows, having
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3714
      // reached the limit of the stack size, while making very
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3715
      // slow forward progress. It may be best to bail out and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3716
      // let the foreground collector do its job.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3717
      // Clear _restart_addr, so that foreground GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3718
      // works from scratch. This avoids the headache of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3719
      // a "rescan" which would otherwise be needed because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3720
      // of the dirty mod union table & card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3721
      _restart_addr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3722
      return false;  // indicating failure to complete marking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3723
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3724
    // Deal with stack overflow:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3725
    // we restart marking from _restart_addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
    HeapWord* ra = _restart_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
    markFromRootsClosure.reset(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
    _restart_addr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3729
    _markBitMap.iterate(&markFromRootsClosure, ra, _span.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3731
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3732
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3734
void CMSCollector::preclean() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
  check_correct_thread_executing();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
  assert(Thread::current()->is_ConcurrentGC_thread(), "Wrong thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3737
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3738
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3739
  _abort_preclean = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3740
  if (CMSPrecleaningEnabled) {
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  3741
    if (!CMSEdenChunksRecordAlways) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  3742
      _eden_chunk_index = 0;
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  3743
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3744
    size_t used = get_eden_used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3745
    size_t capacity = get_eden_capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3746
    // Don't start sampling unless we will get sufficiently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3747
    // many samples.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3748
    if (used < (capacity/(CMSScheduleRemarkSamplingRatio * 100)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3749
                * CMSScheduleRemarkEdenPenetration)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3750
      _start_sampling = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
      _start_sampling = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3754
    TraceCPUTime tcpu(PrintGCDetails, true, gclog_or_tty);
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  3755
    CMSPhaseAccounting pa(this, "preclean", !PrintGCDetails);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3756
    preclean_work(CMSPrecleanRefLists1, CMSPrecleanSurvivors1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3757
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3758
  CMSTokenSync x(true); // is cms thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3759
  if (CMSPrecleaningEnabled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
    sample_eden();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
    _collectorState = AbortablePreclean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
    _collectorState = FinalMarking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
// Try and schedule the remark such that young gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3770
// occupancy is CMSScheduleRemarkEdenPenetration %.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3771
void CMSCollector::abortable_preclean() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
  check_correct_thread_executing();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
  assert(CMSPrecleaningEnabled,  "Inconsistent control state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
  assert(_collectorState == AbortablePreclean, "Inconsistent control state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3776
  // If Eden's current occupancy is below this threshold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
  // immediately schedule the remark; else preclean
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
  // past the next scavenge in an effort to
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  3779
  // schedule the pause as described above. By choosing
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
  // CMSScheduleRemarkEdenSizeThreshold >= max eden size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
  // we will never do an actual abortable preclean cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3782
  if (get_eden_used() > CMSScheduleRemarkEdenSizeThreshold) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3783
    TraceCPUTime tcpu(PrintGCDetails, true, gclog_or_tty);
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  3784
    CMSPhaseAccounting pa(this, "abortable-preclean", !PrintGCDetails);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3785
    // We need more smarts in the abortable preclean
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3786
    // loop below to deal with cases where allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
    // in young gen is very very slow, and our precleaning
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3788
    // is running a losing race against a horde of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3789
    // mutators intent on flooding us with CMS updates
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3790
    // (dirty cards).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
    // One, admittedly dumb, strategy is to give up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
    // after a certain number of abortable precleaning loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3793
    // or after a certain maximum time. We want to make
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3794
    // this smarter in the next iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3795
    // XXX FIX ME!!! YSR
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3796
    size_t loops = 0, workdone = 0, cumworkdone = 0, waited = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3797
    while (!(should_abort_preclean() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3798
             ConcurrentMarkSweepThread::should_terminate())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3799
      workdone = preclean_work(CMSPrecleanRefLists2, CMSPrecleanSurvivors2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3800
      cumworkdone += workdone;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3801
      loops++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3802
      // Voluntarily terminate abortable preclean phase if we have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3803
      // been at it for too long.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3804
      if ((CMSMaxAbortablePrecleanLoops != 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3805
          loops >= CMSMaxAbortablePrecleanLoops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
        if (PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3807
          gclog_or_tty->print(" CMS: abort preclean due to loops ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3809
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3810
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3811
      if (pa.wallclock_millis() > CMSMaxAbortablePrecleanTime) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3812
        if (PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3813
          gclog_or_tty->print(" CMS: abort preclean due to time ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3814
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3815
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3816
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3817
      // If we are doing little work each iteration, we should
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
      // take a short break.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
      if (workdone < CMSAbortablePrecleanMinWorkPerIteration) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3820
        // Sleep for some time, waiting for work to accumulate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
        stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
        cmsThread()->wait_on_cms_lock(CMSAbortablePrecleanWaitMillis);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
        startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
        waited++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
    if (PrintCMSStatistics > 0) {
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 23508
diff changeset
  3828
      gclog_or_tty->print(" [" SIZE_FORMAT " iterations, " SIZE_FORMAT " waits, " SIZE_FORMAT " cards)] ",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
                          loops, waited, cumworkdone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3832
  CMSTokenSync x(true); // is cms thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
  if (_collectorState != Idling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
    assert(_collectorState == AbortablePreclean,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
           "Spontaneous state transition?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
    _collectorState = FinalMarking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
  } // Else, a foreground collection completed this CMS cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3838
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3839
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3841
// Respond to an Eden sampling opportunity
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3842
void CMSCollector::sample_eden() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3843
  // Make sure a young gc cannot sneak in between our
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3844
  // reading and recording of a sample.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3845
  assert(Thread::current()->is_ConcurrentGC_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
         "Only the cms thread may collect Eden samples");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3848
         "Should collect samples while holding CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3849
  if (!_start_sampling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3850
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
  }
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  3852
  // When CMSEdenChunksRecordAlways is true, the eden chunk array
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  3853
  // is populated by the young generation.
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  3854
  if (_eden_chunk_array != NULL && !CMSEdenChunksRecordAlways) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
    if (_eden_chunk_index < _eden_chunk_capacity) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
      _eden_chunk_array[_eden_chunk_index] = *_top_addr;   // take sample
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
      assert(_eden_chunk_array[_eden_chunk_index] <= *_end_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
             "Unexpected state of Eden");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
      // We'd like to check that what we just sampled is an oop-start address;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
      // however, we cannot do that here since the object may not yet have been
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
      // initialized. So we'll instead do the check when we _use_ this sample
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
      // later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3863
      if (_eden_chunk_index == 0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3864
          (pointer_delta(_eden_chunk_array[_eden_chunk_index],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
                         _eden_chunk_array[_eden_chunk_index-1])
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
           >= CMSSamplingGrain)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
        _eden_chunk_index++;  // commit sample
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
  if ((_collectorState == AbortablePreclean) && !_abort_preclean) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
    size_t used = get_eden_used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3873
    size_t capacity = get_eden_capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
    assert(used <= capacity, "Unexpected state of Eden");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
    if (used >  (capacity/100 * CMSScheduleRemarkEdenPenetration)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
      _abort_preclean = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3882
size_t CMSCollector::preclean_work(bool clean_refs, bool clean_survivor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3883
  assert(_collectorState == Precleaning ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3884
         _collectorState == AbortablePreclean, "incorrect state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3885
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3886
  HandleMark   hm;
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3887
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3888
  // Precleaning is currently not MT but the reference processor
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3889
  // may be set for MT.  Disable it temporarily here.
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3890
  ReferenceProcessor* rp = ref_processor();
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3891
  ReferenceProcessorMTDiscoveryMutator rp_mut_discovery(rp, false);
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  3892
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3893
  // Do one pass of scrubbing the discovered reference lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3894
  // to remove any reference objects with strongly-reachable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
  // referents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
  if (clean_refs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
    CMSPrecleanRefsYieldClosure yield_cl(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
    assert(rp->span().equals(_span), "Spans should be equal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
    CMSKeepAliveClosure keep_alive(this, _span, &_markBitMap,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3900
                                   &_markStack, true /* preclean */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
    CMSDrainMarkingStackClosure complete_trace(this,
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  3902
                                   _span, &_markBitMap, &_markStack,
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  3903
                                   &keep_alive, true /* preclean */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
    // We don't want this step to interfere with a young
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
    // collection because we don't want to take CPU
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3907
    // or memory bandwidth away from the young GC threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
    // (which may be as many as there are CPUs).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3909
    // Note that we don't need to protect ourselves from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3910
    // interference with mutators because they can't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3911
    // manipulate the discovered reference lists nor affect
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3912
    // the computed reachability of the referents, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3913
    // only properties manipulated by the precleaning
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3914
    // of these reference lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3915
    stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3916
    CMSTokenSyncWithLocks x(true /* is cms thread */,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3917
                            bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3918
    startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3919
    sample_eden();
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  3920
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3921
    // The following will yield to allow foreground
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3922
    // collection to proceed promptly. XXX YSR:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3923
    // The code in this method may need further
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3924
    // tweaking for better performance and some restructuring
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3925
    // for cleaner interfaces.
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  3926
    GCTimer *gc_timer = NULL; // Currently not tracing concurrent phases
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3927
    rp->preclean_discovered_references(
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  3928
          rp->is_alive_non_header(), &keep_alive, &complete_trace, &yield_cl,
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  3929
          gc_timer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3930
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
  if (clean_survivor) {  // preclean the active survivor space(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
    PushAndMarkClosure pam_cl(this, _span, ref_processor(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
                             &_markBitMap, &_modUnionTable,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3935
                             &_markStack, true /* precleaning phase */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
    stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
    CMSTokenSyncWithLocks ts(true /* is cms thread */,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
                             bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
    startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
    unsigned int before_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
      GenCollectedHeap::heap()->total_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
    SurvivorSpacePrecleanClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
      sss_cl(this, _span, &_markBitMap, &_markStack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
             &pam_cl, before_count, CMSYield);
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  3945
    _young_gen->from()->object_iterate_careful(&sss_cl);
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  3946
    _young_gen->to()->object_iterate_careful(&sss_cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
  MarkRefsIntoAndScanClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3949
    mrias_cl(_span, ref_processor(), &_markBitMap, &_modUnionTable,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3950
             &_markStack, this, CMSYield,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
             true /* precleaning phase */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
  // CAUTION: The following closure has persistent state that may need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3953
  // be reset upon a decrease in the sequence of addresses it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3954
  // processes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3955
  ScanMarkedObjectsAgainCarefullyClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3956
    smoac_cl(this, _span,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3957
      &_markBitMap, &_markStack, &mrias_cl, CMSYield);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3959
  // Preclean dirty cards in ModUnionTable and CardTable using
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3960
  // appropriate convergence criterion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3961
  // repeat CMSPrecleanIter times unless we find that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3962
  // we are losing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3963
  assert(CMSPrecleanIter < 10, "CMSPrecleanIter is too large");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3964
  assert(CMSPrecleanNumerator < CMSPrecleanDenominator,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3965
         "Bad convergence multiplier");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3966
  assert(CMSPrecleanThreshold >= 100,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3967
         "Unreasonably low CMSPrecleanThreshold");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3969
  size_t numIter, cumNumCards, lastNumCards, curNumCards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3970
  for (numIter = 0, cumNumCards = lastNumCards = curNumCards = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3971
       numIter < CMSPrecleanIter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3972
       numIter++, lastNumCards = curNumCards, cumNumCards += curNumCards) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3973
    curNumCards  = preclean_mod_union_table(_cmsGen, &smoac_cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3974
    if (Verbose && PrintGCDetails) {
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 23508
diff changeset
  3975
      gclog_or_tty->print(" (modUnionTable: " SIZE_FORMAT " cards)", curNumCards);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3976
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3977
    // Either there are very few dirty cards, so re-mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3978
    // pause will be small anyway, or our pre-cleaning isn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3979
    // that much faster than the rate at which cards are being
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3980
    // dirtied, so we might as well stop and re-mark since
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3981
    // precleaning won't improve our re-mark time by much.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3982
    if (curNumCards <= CMSPrecleanThreshold ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3983
        (numIter > 0 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3984
         (curNumCards * CMSPrecleanDenominator >
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3985
         lastNumCards * CMSPrecleanNumerator))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3986
      numIter++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3987
      cumNumCards += curNumCards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3988
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3989
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3990
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3991
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3992
  preclean_klasses(&mrias_cl, _cmsGen->freelistLock());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  3993
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
  curNumCards = preclean_card_table(_cmsGen, &smoac_cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3995
  cumNumCards += curNumCards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
  if (PrintGCDetails && PrintCMSStatistics != 0) {
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 23508
diff changeset
  3997
    gclog_or_tty->print_cr(" (cardTable: " SIZE_FORMAT " cards, re-scanned " SIZE_FORMAT " cards, " SIZE_FORMAT " iterations)",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
                  curNumCards, cumNumCards, numIter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4000
  return cumNumCards;   // as a measure of useful work done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4003
// PRECLEANING NOTES:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4004
// Precleaning involves:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4005
// . reading the bits of the modUnionTable and clearing the set bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4006
// . For the cards corresponding to the set bits, we scan the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4007
//   objects on those cards. This means we need the free_list_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4008
//   so that we can safely iterate over the CMS space when scanning
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4009
//   for oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4010
// . When we scan the objects, we'll be both reading and setting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4011
//   marks in the marking bit map, so we'll need the marking bit map.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4012
// . For protecting _collector_state transitions, we take the CGC_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4013
//   Note that any races in the reading of of card table entries by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4014
//   CMS thread on the one hand and the clearing of those entries by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4015
//   VM thread or the setting of those entries by the mutator threads on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4016
//   other are quite benign. However, for efficiency it makes sense to keep
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4017
//   the VM thread from racing with the CMS thread while the latter is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4018
//   dirty card info to the modUnionTable. We therefore also use the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4019
//   CGC_lock to protect the reading of the card table and the mod union
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4020
//   table by the CM thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4021
// . We run concurrently with mutator updates, so scanning
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
//   needs to be done carefully  -- we should not try to scan
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4023
//   potentially uninitialized objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4024
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
// Locking strategy: While holding the CGC_lock, we scan over and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4026
// reset a maximal dirty range of the mod union / card tables, then lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
// the free_list_lock and bitmap lock to do a full marking, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4028
// release these locks; and repeat the cycle. This allows for a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4029
// certain amount of fairness in the sharing of these locks between
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4030
// the CMS collector on the one hand, and the VM thread and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4031
// mutators on the other.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4032
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4033
// NOTE: preclean_mod_union_table() and preclean_card_table()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4034
// further below are largely identical; if you need to modify
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4035
// one of these methods, please check the other method too.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4037
size_t CMSCollector::preclean_mod_union_table(
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4038
  ConcurrentMarkSweepGeneration* old_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4039
  ScanMarkedObjectsAgainCarefullyClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4040
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4041
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
  // strategy: starting with the first card, accumulate contiguous
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4044
  // ranges of dirty cards; clear these cards, then scan the region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4045
  // covered by these cards.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4047
  // Since all of the MUT is committed ahead, we can just use
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4048
  // that, in case the generations expand while we are precleaning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4049
  // It might also be fine to just use the committed part of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4050
  // generation, but we might potentially miss cards when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4051
  // generation is rapidly expanding while we are in the midst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4052
  // of precleaning.
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4053
  HeapWord* startAddr = old_gen->reserved().start();
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4054
  HeapWord* endAddr   = old_gen->reserved().end();
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4055
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4056
  cl->setFreelistLock(old_gen->freelistLock());   // needed for yielding
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4058
  size_t numDirtyCards, cumNumDirtyCards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4059
  HeapWord *nextAddr, *lastAddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4060
  for (cumNumDirtyCards = numDirtyCards = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4061
       nextAddr = lastAddr = startAddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4062
       nextAddr < endAddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4063
       nextAddr = lastAddr, cumNumDirtyCards += numDirtyCards) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4065
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4066
    HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4068
    MemRegion dirtyRegion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4069
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4070
      stopTimer();
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  4071
      // Potential yield point
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4072
      CMSTokenSync ts(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4073
      startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4074
      sample_eden();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4075
      // Get dirty region starting at nextOffset (inclusive),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
      // simultaneously clearing it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4077
      dirtyRegion =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4078
        _modUnionTable.getAndClearMarkedRegion(nextAddr, endAddr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4079
      assert(dirtyRegion.start() >= nextAddr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4080
             "returned region inconsistent?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4081
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4082
    // Remember where the next search should begin.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4083
    // The returned region (if non-empty) is a right open interval,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4084
    // so lastOffset is obtained from the right end of that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4085
    // interval.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4086
    lastAddr = dirtyRegion.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4087
    // Should do something more transparent and less hacky XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4088
    numDirtyCards =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4089
      _modUnionTable.heapWordDiffToOffsetDiff(dirtyRegion.word_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4091
    // We'll scan the cards in the dirty region (with periodic
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4092
    // yields for foreground GC as needed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4093
    if (!dirtyRegion.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4094
      assert(numDirtyCards > 0, "consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
      HeapWord* stop_point = NULL;
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  4096
      stopTimer();
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  4097
      // Potential yield point
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4098
      CMSTokenSyncWithLocks ts(true, old_gen->freelistLock(),
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  4099
                               bitMapLock());
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  4100
      startTimer();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4101
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4102
        verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
        verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
        sample_eden();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
        stop_point =
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4106
          old_gen->cmsSpace()->object_iterate_careful_m(dirtyRegion, cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4107
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4108
      if (stop_point != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4109
        // The careful iteration stopped early either because it found an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4110
        // uninitialized object, or because we were in the midst of an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4111
        // "abortable preclean", which should now be aborted. Redirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4112
        // the bits corresponding to the partially-scanned or unscanned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
        // cards. We'll either restart at the next block boundary or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
        // abort the preclean.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4115
        assert((_collectorState == AbortablePreclean && should_abort_preclean()),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4116
               "Should only be AbortablePreclean.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
        _modUnionTable.mark_range(MemRegion(stop_point, dirtyRegion.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
        if (should_abort_preclean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
          break; // out of preclean loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4120
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4121
          // Compute the next address at which preclean should pick up;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
          // might need bitMapLock in order to read P-bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
          lastAddr = next_card_start_after_block(stop_point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4124
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4127
      assert(lastAddr == endAddr, "consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4128
      assert(numDirtyCards == 0, "consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4129
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4130
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4132
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4134
  return cumNumDirtyCards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4135
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4137
// NOTE: preclean_mod_union_table() above and preclean_card_table()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4138
// below are largely identical; if you need to modify
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4139
// one of these methods, please check the other method too.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4140
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4141
size_t CMSCollector::preclean_card_table(ConcurrentMarkSweepGeneration* old_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4142
  ScanMarkedObjectsAgainCarefullyClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4143
  // strategy: it's similar to precleamModUnionTable above, in that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4144
  // we accumulate contiguous ranges of dirty cards, mark these cards
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
  // precleaned, then scan the region covered by these cards.
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4146
  HeapWord* endAddr   = (HeapWord*)(old_gen->_virtual_space.high());
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4147
  HeapWord* startAddr = (HeapWord*)(old_gen->_virtual_space.low());
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4148
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4149
  cl->setFreelistLock(old_gen->freelistLock());   // needed for yielding
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4151
  size_t numDirtyCards, cumNumDirtyCards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4152
  HeapWord *lastAddr, *nextAddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4154
  for (cumNumDirtyCards = numDirtyCards = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
       nextAddr = lastAddr = startAddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
       nextAddr < endAddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
       nextAddr = lastAddr, cumNumDirtyCards += numDirtyCards) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4159
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4160
    HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4162
    MemRegion dirtyRegion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4163
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4164
      // See comments in "Precleaning notes" above on why we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4165
      // do this locking. XXX Could the locking overheads be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4166
      // too high when dirty cards are sparse? [I don't think so.]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
      stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
      CMSTokenSync x(true); // is cms thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4169
      startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4170
      sample_eden();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4171
      // Get and clear dirty region from card table
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  4172
      dirtyRegion = _ct->ct_bs()->dirty_card_range_after_reset(
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  4173
                                    MemRegion(nextAddr, endAddr),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  4174
                                    true,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  4175
                                    CardTableModRefBS::precleaned_card_val());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  4176
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4177
      assert(dirtyRegion.start() >= nextAddr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4178
             "returned region inconsistent?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4179
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4180
    lastAddr = dirtyRegion.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4181
    numDirtyCards =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4182
      dirtyRegion.word_size()/CardTableModRefBS::card_size_in_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4183
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
    if (!dirtyRegion.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
      stopTimer();
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4186
      CMSTokenSyncWithLocks ts(true, old_gen->freelistLock(), bitMapLock());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
      startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4188
      sample_eden();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4189
      verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4190
      verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4191
      HeapWord* stop_point =
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  4192
        old_gen->cmsSpace()->object_iterate_careful_m(dirtyRegion, cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4193
      if (stop_point != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4194
        assert((_collectorState == AbortablePreclean && should_abort_preclean()),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4195
               "Should only be AbortablePreclean.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4196
        _ct->ct_bs()->invalidate(MemRegion(stop_point, dirtyRegion.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4197
        if (should_abort_preclean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4198
          break; // out of preclean loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4199
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4200
          // Compute the next address at which preclean should pick up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4201
          lastAddr = next_card_start_after_block(stop_point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4202
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4203
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4208
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4209
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
  return cumNumDirtyCards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4212
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4213
class PrecleanKlassClosure : public KlassClosure {
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  4214
  KlassToOopClosure _cm_klass_closure;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4215
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4216
  PrecleanKlassClosure(OopClosure* oop_closure) : _cm_klass_closure(oop_closure) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4217
  void do_klass(Klass* k) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4218
    if (k->has_accumulated_modified_oops()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4219
      k->clear_accumulated_modified_oops();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4220
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4221
      _cm_klass_closure.do_klass(k);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4222
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4223
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4224
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4225
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4226
// The freelist lock is needed to prevent asserts, is it really needed?
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4227
void CMSCollector::preclean_klasses(MarkRefsIntoAndScanClosure* cl, Mutex* freelistLock) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4228
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4229
  cl->set_freelistLock(freelistLock);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4230
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4231
  CMSTokenSyncWithLocks ts(true, freelistLock, bitMapLock());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4232
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4233
  // SSS: Add equivalent to ScanMarkedObjectsAgainCarefullyClosure::do_yield_check and should_abort_preclean?
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4234
  // SSS: We should probably check if precleaning should be aborted, at suitable intervals?
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4235
  PrecleanKlassClosure preclean_klass_closure(cl);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4236
  ClassLoaderDataGraph::classes_do(&preclean_klass_closure);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4237
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4238
  verify_work_stacks_empty();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4239
  verify_overflow_empty();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4240
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4241
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4242
void CMSCollector::checkpointRootsFinal() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
  assert(_collectorState == FinalMarking, "incorrect state transition?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
  check_correct_thread_executing();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
  // world is stopped at this checkpoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
  assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
         "world should be stopped");
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  4248
  TraceCMSMemoryManagerStats tms(_collectorState,GenCollectedHeap::heap()->gc_cause());
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  4249
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4250
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
  if (PrintGCDetails) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  4254
    gclog_or_tty->print("[YG occupancy: " SIZE_FORMAT " K (" SIZE_FORMAT " K)]",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
                        _young_gen->used() / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
                        _young_gen->capacity() / K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
  }
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4258
  {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
    if (CMSScavengeBeforeRemark) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4260
      GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
      // Temporarily set flag to false, GCH->do_collection will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4262
      // expect it to be false and set to true
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4263
      FlagSetting fl(gch->_is_gc_active, false);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  4264
      NOT_PRODUCT(GCTraceTime t("Scavenge-Before-Remark",
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  4265
        PrintGCDetails && Verbose, true, _gc_timer_cm);)
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4266
      gch->do_collection(true,                      // full (i.e. force, see below)
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4267
                         false,                     // !clear_all_soft_refs
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4268
                         0,                         // size
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4269
                         false,                     // is_tlab
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4270
                         GenCollectedHeap::YoungGen // type
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4271
        );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
    FreelistLocker x(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
    MutexLockerEx y(bitMapLock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
                    Mutex::_no_safepoint_check_flag);
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4276
    checkpointRootsFinalWork();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4279
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4281
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4282
void CMSCollector::checkpointRootsFinalWork() {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  4283
  NOT_PRODUCT(GCTraceTime tr("checkpointRootsFinalWork", PrintGCDetails, false, _gc_timer_cm);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4285
  assert(haveFreelistLocks(), "must have free list locks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4286
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4287
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4288
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4289
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4291
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4292
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  4293
  if (should_unload_classes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4294
    CodeCache::gc_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4296
  assert(haveFreelistLocks(), "must have free list locks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4297
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4298
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4299
  // We might assume that we need not fill TLAB's when
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4300
  // CMSScavengeBeforeRemark is set, because we may have just done
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4301
  // a scavenge which would have filled all TLAB's -- and besides
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4302
  // Eden would be empty. This however may not always be the case --
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4303
  // for instance although we asked for a scavenge, it may not have
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4304
  // happened because of a JNI critical section. We probably need
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4305
  // a policy for deciding whether we can in that case wait until
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4306
  // the critical section releases and then do the remark following
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4307
  // the scavenge, and skip it here. In the absence of that policy,
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4308
  // or of an indication of whether the scavenge did indeed occur,
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4309
  // we cannot rely on TLAB's having been filled and must do
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4310
  // so here just in case a scavenge did not happen.
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4311
  gch->ensure_parsability(false);  // fill TLAB's, but no need to retire them
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4312
  // Update the saved marks which may affect the root scans.
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4313
  gch->save_marks();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4314
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4315
  if (CMSPrintEdenSurvivorChunks) {
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4316
    print_eden_and_survivor_chunk_arrays();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4317
  }
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4318
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4319
  {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  4320
#if defined(COMPILER2) || INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  4321
    DerivedPointerTableDeactivate dpt_deact;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32735
diff changeset
  4322
#endif
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4323
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4324
    // Note on the role of the mod union table:
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4325
    // Since the marker in "markFromRoots" marks concurrently with
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4326
    // mutators, it is possible for some reachable objects not to have been
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4327
    // scanned. For instance, an only reference to an object A was
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4328
    // placed in object B after the marker scanned B. Unless B is rescanned,
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4329
    // A would be collected. Such updates to references in marked objects
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4330
    // are detected via the mod union table which is the set of all cards
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4331
    // dirtied since the first checkpoint in this GC cycle and prior to
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4332
    // the most recent young generation GC, minus those cleaned up by the
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4333
    // concurrent precleaning.
30581
a91d6c47f076 8079275: Remove CollectedHeap::use_parallel_gc_threads
stefank
parents: 30566
diff changeset
  4334
    if (CMSParallelRemarkEnabled) {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  4335
      GCTraceTime t("Rescan (parallel) ", PrintGCDetails, false, _gc_timer_cm);
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4336
      do_remark_parallel();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4337
    } else {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  4338
      GCTraceTime t("Rescan (non-parallel) ", PrintGCDetails, false, _gc_timer_cm);
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4339
      do_remark_non_parallel();
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4340
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4342
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4343
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4344
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4345
  {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  4346
    NOT_PRODUCT(GCTraceTime ts("refProcessingWork", PrintGCDetails, false, _gc_timer_cm);)
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  4347
    refProcessingWork();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4348
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4349
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4350
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4351
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  4352
  if (should_unload_classes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4353
    CodeCache::gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4354
  }
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7908
diff changeset
  4355
  JvmtiExport::gc_epilogue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4356
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4357
  // If we encountered any (marking stack / work queue) overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4358
  // events during the current CMS cycle, take appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4359
  // remedial measures, where possible, so as to try and avoid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4360
  // recurrence of that condition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4361
  assert(_markStack.isEmpty(), "No grey objects");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4362
  size_t ser_ovflw = _ser_pmc_remark_ovflw + _ser_pmc_preclean_ovflw +
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  4363
                     _ser_kac_ovflw        + _ser_kac_preclean_ovflw;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4364
  if (ser_ovflw > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4365
    if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4366
      gclog_or_tty->print_cr("Marking stack overflow (benign) "
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  4367
        "(pmc_pc=" SIZE_FORMAT ", pmc_rm=" SIZE_FORMAT ", kac=" SIZE_FORMAT
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  4368
        ", kac_preclean=" SIZE_FORMAT ")",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4369
        _ser_pmc_preclean_ovflw, _ser_pmc_remark_ovflw,
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  4370
        _ser_kac_ovflw, _ser_kac_preclean_ovflw);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4371
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4372
    _markStack.expand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4373
    _ser_pmc_remark_ovflw = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4374
    _ser_pmc_preclean_ovflw = 0;
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  4375
    _ser_kac_preclean_ovflw = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4376
    _ser_kac_ovflw = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4378
  if (_par_pmc_remark_ovflw > 0 || _par_kac_ovflw > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4379
    if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4380
      gclog_or_tty->print_cr("Work queue overflow (benign) "
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  4381
        "(pmc_rm=" SIZE_FORMAT ", kac=" SIZE_FORMAT ")",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4382
        _par_pmc_remark_ovflw, _par_kac_ovflw);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4383
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4384
    _par_pmc_remark_ovflw = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4385
    _par_kac_ovflw = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4387
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4388
     if (_markStack._hit_limit > 0) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  4389
       gclog_or_tty->print_cr(" (benign) Hit max stack size limit (" SIZE_FORMAT ")",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4390
                              _markStack._hit_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4391
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4392
     if (_markStack._failed_double > 0) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  4393
       gclog_or_tty->print_cr(" (benign) Failed stack doubling (" SIZE_FORMAT "),"
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  4394
                              " current capacity " SIZE_FORMAT,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4395
                              _markStack._failed_double,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4396
                              _markStack.capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4397
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4399
  _markStack._hit_limit = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4400
  _markStack._failed_double = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4402
  if ((VerifyAfterGC || VerifyDuringGC) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4403
      GenCollectedHeap::heap()->total_collections() >= VerifyGCStartAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4404
    verify_after_remark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4405
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4406
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  4407
  _gc_tracer_cm->report_object_count_after_gc(&_is_alive_closure);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  4408
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4409
  // Change under the freelistLocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4410
  _collectorState = Sweeping;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4411
  // Call isAllClear() under bitMapLock
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4412
  assert(_modUnionTable.isAllClear(),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4413
      "Should be clear by end of the final marking");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4414
  assert(_ct->klass_rem_set()->mod_union_is_clear(),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4415
      "Should be clear by end of the final marking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4416
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4417
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4418
void CMSParInitialMarkTask::work(uint worker_id) {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4419
  elapsedTimer _timer;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4420
  ResourceMark rm;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4421
  HandleMark   hm;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4422
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4423
  // ---------- scan from roots --------------
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4424
  _timer.start();
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4425
  GenCollectedHeap* gch = GenCollectedHeap::heap();
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4426
  Par_MarkRefsIntoClosure par_mri_cl(_collector->_span, &(_collector->_markBitMap));
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4427
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4428
  // ---------- young gen roots --------------
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4429
  {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4430
    work_on_young_gen_roots(worker_id, &par_mri_cl);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4431
    _timer.stop();
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4432
    if (PrintCMSStatistics != 0) {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4433
      gclog_or_tty->print_cr(
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4434
        "Finished young gen initial mark scan work in %dth thread: %3.3f sec",
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4435
        worker_id, _timer.seconds());
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4436
    }
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4437
  }
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4438
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4439
  // ---------- remaining roots --------------
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4440
  _timer.reset();
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4441
  _timer.start();
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4442
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4443
  CLDToOopClosure cld_closure(&par_mri_cl, true);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4444
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  4445
  gch->gen_process_roots(_strong_roots_scope,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4446
                         GenCollectedHeap::OldGen,
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4447
                         false,     // yg was scanned above
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  4448
                         GenCollectedHeap::ScanningOption(_collector->CMSCollector::roots_scanning_options()),
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4449
                         _collector->should_unload_classes(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4450
                         &par_mri_cl,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4451
                         NULL,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4452
                         &cld_closure);
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4453
  assert(_collector->should_unload_classes()
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  4454
         || (_collector->CMSCollector::roots_scanning_options() & GenCollectedHeap::SO_AllCodeCache),
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4455
         "if we didn't scan the code cache, we have to be ready to drop nmethods with expired weak oops");
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4456
  _timer.stop();
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4457
  if (PrintCMSStatistics != 0) {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4458
    gclog_or_tty->print_cr(
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4459
      "Finished remaining root initial mark scan work in %dth thread: %3.3f sec",
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4460
      worker_id, _timer.seconds());
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4461
  }
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4462
}
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4463
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4464
// Parallel remark task
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4465
class CMSParRemarkTask: public CMSParMarkTask {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4466
  CompactibleFreeListSpace* _cms_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4468
  // The per-thread work queues, available here for stealing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4469
  OopTaskQueueSet*       _task_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4470
  ParallelTaskTerminator _term;
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  4471
  StrongRootsScope*      _strong_roots_scope;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4473
 public:
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  4474
  // A value of 0 passed to n_workers will cause the number of
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  4475
  // workers to be taken from the active workers in the work gang.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4476
  CMSParRemarkTask(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4477
                   CompactibleFreeListSpace* cms_space,
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  4478
                   uint n_workers, WorkGang* workers,
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  4479
                   OopTaskQueueSet* task_queues,
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  4480
                   StrongRootsScope* strong_roots_scope):
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4481
    CMSParMarkTask("Rescan roots and grey objects in parallel",
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4482
                   collector, n_workers),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4483
    _cms_space(cms_space),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4484
    _task_queues(task_queues),
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  4485
    _term(n_workers, task_queues),
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  4486
    _strong_roots_scope(strong_roots_scope) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4487
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4488
  OopTaskQueueSet* task_queues() { return _task_queues; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4490
  OopTaskQueue* work_queue(int i) { return task_queues()->queue(i); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4492
  ParallelTaskTerminator* terminator() { return &_term; }
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  4493
  uint n_workers() { return _n_workers; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4494
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4495
  void work(uint worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4496
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4497
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4498
  // ... of  dirty cards in old space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4499
  void do_dirty_card_rescan_tasks(CompactibleFreeListSpace* sp, int i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4500
                                  Par_MarkRefsIntoAndScanClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4501
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4502
  // ... work stealing for the above
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4503
  void do_work_steal(int i, Par_MarkRefsIntoAndScanClosure* cl, int* seed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4504
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4505
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4506
class RemarkKlassClosure : public KlassClosure {
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  4507
  KlassToOopClosure _cm_klass_closure;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4508
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4509
  RemarkKlassClosure(OopClosure* oop_closure) : _cm_klass_closure(oop_closure) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4510
  void do_klass(Klass* k) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4511
    // Check if we have modified any oops in the Klass during the concurrent marking.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4512
    if (k->has_accumulated_modified_oops()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4513
      k->clear_accumulated_modified_oops();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4514
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4515
      // We could have transfered the current modified marks to the accumulated marks,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4516
      // like we do with the Card Table to Mod Union Table. But it's not really necessary.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4517
    } else if (k->has_modified_oops()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4518
      // Don't clear anything, this info is needed by the next young collection.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4519
    } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4520
      // No modified oops in the Klass.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4521
      return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4522
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4523
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4524
    // The klass has modified fields, need to scan the klass.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4525
    _cm_klass_closure.do_klass(k);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4526
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4527
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4528
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4529
void CMSParMarkTask::work_on_young_gen_roots(uint worker_id, OopsInGenClosure* cl) {
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  4530
  ParNewGeneration* young_gen = _collector->_young_gen;
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  4531
  ContiguousSpace* eden_space = young_gen->eden();
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  4532
  ContiguousSpace* from_space = young_gen->from();
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  4533
  ContiguousSpace* to_space   = young_gen->to();
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4534
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4535
  HeapWord** eca = _collector->_eden_chunk_array;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4536
  size_t     ect = _collector->_eden_chunk_index;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4537
  HeapWord** sca = _collector->_survivor_chunk_array;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4538
  size_t     sct = _collector->_survivor_chunk_index;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4539
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4540
  assert(ect <= _collector->_eden_chunk_capacity, "out of bounds");
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4541
  assert(sct <= _collector->_survivor_chunk_capacity, "out of bounds");
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4542
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4543
  do_young_space_rescan(worker_id, cl, to_space, NULL, 0);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4544
  do_young_space_rescan(worker_id, cl, from_space, sca, sct);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4545
  do_young_space_rescan(worker_id, cl, eden_space, eca, ect);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4546
}
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4547
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4548
// work_queue(i) is passed to the closure
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4549
// Par_MarkRefsIntoAndScanClosure.  The "i" parameter
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4550
// also is passed to do_dirty_card_rescan_tasks() and to
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4551
// do_work_steal() to select the i-th task_queue.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4552
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4553
void CMSParRemarkTask::work(uint worker_id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4554
  elapsedTimer _timer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4555
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4556
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4558
  // ---------- rescan from roots --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4559
  _timer.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4560
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4561
  Par_MarkRefsIntoAndScanClosure par_mrias_cl(_collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4562
    _collector->_span, _collector->ref_processor(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4563
    &(_collector->_markBitMap),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4564
    work_queue(worker_id));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4565
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4566
  // Rescan young gen roots first since these are likely
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4567
  // coarsely partitioned and may, on that account, constitute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4568
  // the critical path; thus, it's best to start off that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4569
  // work first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4570
  // ---------- young gen roots --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4571
  {
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4572
    work_on_young_gen_roots(worker_id, &par_mrias_cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4573
    _timer.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4574
    if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4575
      gclog_or_tty->print_cr(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4576
        "Finished young gen rescan work in %dth thread: %3.3f sec",
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4577
        worker_id, _timer.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4578
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4579
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4581
  // ---------- remaining roots --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4582
  _timer.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4583
  _timer.start();
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  4584
  gch->gen_process_roots(_strong_roots_scope,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  4585
                         GenCollectedHeap::OldGen,
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4586
                         false,     // yg was scanned above
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  4587
                         GenCollectedHeap::ScanningOption(_collector->CMSCollector::roots_scanning_options()),
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4588
                         _collector->should_unload_classes(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4589
                         &par_mrias_cl,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4590
                         NULL,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4591
                         NULL);     // The dirty klasses will be handled below
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4592
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2885
diff changeset
  4593
  assert(_collector->should_unload_classes()
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  4594
         || (_collector->CMSCollector::roots_scanning_options() & GenCollectedHeap::SO_AllCodeCache),
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2885
diff changeset
  4595
         "if we didn't scan the code cache, we have to be ready to drop nmethods with expired weak oops");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4596
  _timer.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4597
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4598
    gclog_or_tty->print_cr(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4599
      "Finished remaining root rescan work in %dth thread: %3.3f sec",
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4600
      worker_id, _timer.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4601
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4602
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4603
  // ---------- unhandled CLD scanning ----------
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4604
  if (worker_id == 0) { // Single threaded at the moment.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4605
    _timer.reset();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4606
    _timer.start();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4607
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4608
    // Scan all new class loader data objects and new dependencies that were
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4609
    // introduced during concurrent marking.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4610
    ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4611
    GrowableArray<ClassLoaderData*>* array = ClassLoaderDataGraph::new_clds();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4612
    for (int i = 0; i < array->length(); i++) {
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 32368
diff changeset
  4613
      par_mrias_cl.do_cld_nv(array->at(i));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4614
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4615
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4616
    // We don't need to keep track of new CLDs anymore.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4617
    ClassLoaderDataGraph::remember_new_clds(false);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4618
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4619
    _timer.stop();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4620
    if (PrintCMSStatistics != 0) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4621
      gclog_or_tty->print_cr(
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4622
          "Finished unhandled CLD scanning work in %dth thread: %3.3f sec",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4623
          worker_id, _timer.seconds());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4624
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4625
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4626
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4627
  // ---------- dirty klass scanning ----------
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4628
  if (worker_id == 0) { // Single threaded at the moment.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4629
    _timer.reset();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4630
    _timer.start();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4631
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4632
    // Scan all classes that was dirtied during the concurrent marking phase.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4633
    RemarkKlassClosure remark_klass_closure(&par_mrias_cl);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4634
    ClassLoaderDataGraph::classes_do(&remark_klass_closure);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4635
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4636
    _timer.stop();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4637
    if (PrintCMSStatistics != 0) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4638
      gclog_or_tty->print_cr(
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4639
          "Finished dirty klass scanning work in %dth thread: %3.3f sec",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4640
          worker_id, _timer.seconds());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4641
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4642
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4643
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4644
  // We might have added oops to ClassLoaderData::_handles during the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4645
  // concurrent marking phase. These oops point to newly allocated objects
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4646
  // that are guaranteed to be kept alive. Either by the direct allocation
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  4647
  // code, or when the young collector processes the roots. Hence,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4648
  // we don't have to revisit the _handles block during the remark phase.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4649
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4650
  // ---------- rescan dirty cards ------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4651
  _timer.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4652
  _timer.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4654
  // Do the rescan tasks for each of the two spaces
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4655
  // (cms_space) in turn.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4656
  // "worker_id" is passed to select the task_queue for "worker_id"
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4657
  do_dirty_card_rescan_tasks(_cms_space, worker_id, &par_mrias_cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4658
  _timer.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4659
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4660
    gclog_or_tty->print_cr(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4661
      "Finished dirty card rescan work in %dth thread: %3.3f sec",
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4662
      worker_id, _timer.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4663
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4665
  // ---------- steal work from other threads ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4666
  // ---------- ... and drain overflow list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4667
  _timer.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4668
  _timer.start();
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4669
  do_work_steal(worker_id, &par_mrias_cl, _collector->hash_seed(worker_id));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4670
  _timer.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4671
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4672
    gclog_or_tty->print_cr(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4673
      "Finished work stealing in %dth thread: %3.3f sec",
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4674
      worker_id, _timer.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4675
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4676
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4677
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4678
// Note that parameter "i" is not used.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4679
void
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4680
CMSParMarkTask::do_young_space_rescan(uint worker_id,
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4681
  OopsInGenClosure* cl, ContiguousSpace* space,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4682
  HeapWord** chunk_array, size_t chunk_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4683
  // Until all tasks completed:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4684
  // . claim an unclaimed task
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4685
  // . compute region boundaries corresponding to task claimed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4686
  //   using chunk_array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4687
  // . par_oop_iterate(cl) over that region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4688
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4689
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4690
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4691
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4692
  SequentialSubTasksDone* pst = space->par_seq_tasks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4693
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4694
  uint nth_task = 0;
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4695
  uint n_tasks  = pst->n_tasks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4696
19347
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4697
  if (n_tasks > 0) {
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4698
    assert(pst->valid(), "Uninitialized use?");
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4699
    HeapWord *start, *end;
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4700
    while (!pst->is_task_claimed(/* reference */ nth_task)) {
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4701
      // We claimed task # nth_task; compute its boundaries.
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4702
      if (chunk_top == 0) {  // no samples were taken
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27252
diff changeset
  4703
        assert(nth_task == 0 && n_tasks == 1, "Can have only 1 eden task");
19347
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4704
        start = space->bottom();
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4705
        end   = space->top();
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4706
      } else if (nth_task == 0) {
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4707
        start = space->bottom();
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4708
        end   = chunk_array[nth_task];
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4709
      } else if (nth_task < (uint)chunk_top) {
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4710
        assert(nth_task >= 1, "Control point invariant");
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4711
        start = chunk_array[nth_task - 1];
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4712
        end   = chunk_array[nth_task];
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4713
      } else {
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4714
        assert(nth_task == (uint)chunk_top, "Control point invariant");
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4715
        start = chunk_array[chunk_top - 1];
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4716
        end   = space->top();
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4717
      }
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4718
      MemRegion mr(start, end);
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4719
      // Verify that mr is in space
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4720
      assert(mr.is_empty() || space->used_region().contains(mr),
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4721
             "Should be in space");
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4722
      // Verify that "start" is an object boundary
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4723
      assert(mr.is_empty() || oop(mr.start())->is_oop(),
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4724
             "Should be an oop");
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4725
      space->par_oop_iterate(mr, cl);
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4726
    }
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4727
    pst->all_tasks_completed();
afb416fb8104 8021809: Partitioning based on eden sampling during allocation not reset correctly
jmasa
parents: 19285
diff changeset
  4728
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4729
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4730
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4731
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4732
CMSParRemarkTask::do_dirty_card_rescan_tasks(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4733
  CompactibleFreeListSpace* sp, int i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4734
  Par_MarkRefsIntoAndScanClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4735
  // Until all tasks completed:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4736
  // . claim an unclaimed task
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4737
  // . compute region boundaries corresponding to task claimed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4738
  // . transfer dirty bits ct->mut for that region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4739
  // . apply rescanclosure to dirty mut bits for that region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4740
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4741
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4742
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4743
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4744
  OopTaskQueue* work_q = work_queue(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4745
  ModUnionClosure modUnionClosure(&(_collector->_modUnionTable));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4746
  // CAUTION! CAUTION! CAUTION! CAUTION! CAUTION! CAUTION! CAUTION!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4747
  // CAUTION: This closure has state that persists across calls to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4748
  // the work method dirty_range_iterate_clear() in that it has
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  4749
  // embedded in it a (subtype of) UpwardsObjectClosure. The
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  4750
  // use of that state in the embedded UpwardsObjectClosure instance
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4751
  // assumes that the cards are always iterated (even if in parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4752
  // by several threads) in monotonically increasing order per each
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4753
  // thread. This is true of the implementation below which picks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4754
  // card ranges (chunks) in monotonically increasing order globally
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4755
  // and, a-fortiori, in monotonically increasing order per thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4756
  // (the latter order being a subsequence of the former).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4757
  // If the work code below is ever reorganized into a more chaotic
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4758
  // work-partitioning form than the current "sequential tasks"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4759
  // paradigm, the use of that persistent state will have to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4760
  // revisited and modified appropriately. See also related
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4761
  // bug 4756801 work on which should examine this code to make
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4762
  // sure that the changes there do not run counter to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4763
  // assumptions made here and necessary for correctness and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4764
  // efficiency. Note also that this code might yield inefficient
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  4765
  // behavior in the case of very large objects that span one or
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4766
  // more work chunks. Such objects would potentially be scanned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4767
  // several times redundantly. Work on 4756801 should try and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4768
  // address that performance anomaly if at all possible. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4769
  MemRegion  full_span  = _collector->_span;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4770
  CMSBitMap* bm    = &(_collector->_markBitMap);     // shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4771
  MarkFromDirtyCardsClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4772
    greyRescanClosure(_collector, full_span, // entire span of interest
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  4773
                      sp, bm, work_q, cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4774
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4775
  SequentialSubTasksDone* pst = sp->conc_par_seq_tasks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4776
  assert(pst->valid(), "Uninitialized use?");
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  4777
  uint nth_task = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4778
  const int alignment = CardTableModRefBS::card_size * BitsPerWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4779
  MemRegion span = sp->used_region();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4780
  HeapWord* start_addr = span.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4781
  HeapWord* end_addr = (HeapWord*)round_to((intptr_t)span.end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4782
                                           alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4783
  const size_t chunk_size = sp->rescan_task_size(); // in HeapWord units
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4784
  assert((HeapWord*)round_to((intptr_t)start_addr, alignment) ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4785
         start_addr, "Check alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4786
  assert((size_t)round_to((intptr_t)chunk_size, alignment) ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4787
         chunk_size, "Check alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4788
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4789
  while (!pst->is_task_claimed(/* reference */ nth_task)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4790
    // Having claimed the nth_task, compute corresponding mem-region,
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  4791
    // which is a-fortiori aligned correctly (i.e. at a MUT boundary).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4792
    // The alignment restriction ensures that we do not need any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4793
    // synchronization with other gang-workers while setting or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4794
    // clearing bits in thus chunk of the MUT.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4795
    MemRegion this_span = MemRegion(start_addr + nth_task*chunk_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4796
                                    start_addr + (nth_task+1)*chunk_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4797
    // The last chunk's end might be way beyond end of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4798
    // used region. In that case pull back appropriately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4799
    if (this_span.end() > end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4800
      this_span.set_end(end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4801
      assert(!this_span.is_empty(), "Program logic (calculation of n_tasks)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4802
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4803
    // Iterate over the dirty cards covering this chunk, marking them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4804
    // precleaned, and setting the corresponding bits in the mod union
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4805
    // table. Since we have been careful to partition at Card and MUT-word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4806
    // boundaries no synchronization is needed between parallel threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4807
    _collector->_ct->ct_bs()->dirty_card_iterate(this_span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4808
                                                 &modUnionClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4809
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4810
    // Having transferred these marks into the modUnionTable,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4811
    // rescan the marked objects on the dirty cards in the modUnionTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4812
    // Even if this is at a synchronous collection, the initial marking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4813
    // may have been done during an asynchronous collection so there
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4814
    // may be dirty bits in the mod-union table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4815
    _collector->_modUnionTable.dirty_range_iterate_clear(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4816
                  this_span, &greyRescanClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4817
    _collector->_modUnionTable.verifyNoOneBitsInRange(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4818
                                 this_span.start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4819
                                 this_span.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4820
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4821
  pst->all_tasks_completed();  // declare that i am done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4822
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4824
// . see if we can share work_queues with ParNew? XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4825
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4826
CMSParRemarkTask::do_work_steal(int i, Par_MarkRefsIntoAndScanClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4827
                                int* seed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4828
  OopTaskQueue* work_q = work_queue(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4829
  NOT_PRODUCT(int num_steals = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4830
  oop obj_to_scan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4831
  CMSBitMap* bm = &(_collector->_markBitMap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4833
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4834
    // Completely finish any left over work from (an) earlier round(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4835
    cl->trim_queue(0);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2154
diff changeset
  4836
    size_t num_from_overflow_list = MIN2((size_t)(work_q->max_elems() - work_q->size())/4,
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2154
diff changeset
  4837
                                         (size_t)ParGCDesiredObjsFromOverflowList);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4838
    // Now check if there's any work in the overflow list
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4839
    // Passing ParallelGCThreads as the third parameter, no_of_gc_threads,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4840
    // only affects the number of attempts made to get work from the
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4841
    // overflow list and does not affect the number of workers.  Just
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4842
    // pass ParallelGCThreads so this behavior is unchanged.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4843
    if (_collector->par_take_from_overflow_list(num_from_overflow_list,
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4844
                                                work_q,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4845
                                                ParallelGCThreads)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4846
      // found something in global overflow list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4847
      // not yet ready to go stealing work from others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4848
      // We'd like to assert(work_q->size() != 0, ...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4849
      // because we just took work from the overflow list,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4850
      // but of course we can't since all of that could have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4851
      // been already stolen from us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4852
      // "He giveth and He taketh away."
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4853
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4854
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4855
    // Verify that we have no work before we resort to stealing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4856
    assert(work_q->size() == 0, "Have work, shouldn't steal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4857
    // Try to steal from other queues that have work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4858
    if (task_queues()->steal(i, seed, /* reference */ obj_to_scan)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4859
      NOT_PRODUCT(num_steals++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4860
      assert(obj_to_scan->is_oop(), "Oops, not an oop!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4861
      assert(bm->isMarked((HeapWord*)obj_to_scan), "Stole an unmarked oop?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4862
      // Do scanning work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4863
      obj_to_scan->oop_iterate(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4864
      // Loop around, finish this work, and try to steal some more
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4865
    } else if (terminator()->offer_termination()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4866
        break;  // nirvana from the infinite cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4867
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4868
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4869
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4870
    if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4871
      gclog_or_tty->print("\n\t(%d: stole %d oops)", i, num_steals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4872
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4873
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4874
  assert(work_q->size() == 0 && _collector->overflow_list_is_empty(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4875
         "Else our work is not yet done");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4876
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4877
18994
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4878
// Record object boundaries in _eden_chunk_array by sampling the eden
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4879
// top in the slow-path eden object allocation code path and record
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4880
// the boundaries, if CMSEdenChunksRecordAlways is true. If
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4881
// CMSEdenChunksRecordAlways is false, we use the other asynchronous
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4882
// sampling in sample_eden() that activates during the part of the
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4883
// preclean phase.
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4884
void CMSCollector::sample_eden_chunk() {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4885
  if (CMSEdenChunksRecordAlways && _eden_chunk_array != NULL) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4886
    if (_eden_chunk_lock->try_lock()) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4887
      // Record a sample. This is the critical section. The contents
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4888
      // of the _eden_chunk_array have to be non-decreasing in the
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4889
      // address order.
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4890
      _eden_chunk_array[_eden_chunk_index] = *_top_addr;
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4891
      assert(_eden_chunk_array[_eden_chunk_index] <= *_end_addr,
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4892
             "Unexpected state of Eden");
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4893
      if (_eden_chunk_index == 0 ||
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4894
          ((_eden_chunk_array[_eden_chunk_index] > _eden_chunk_array[_eden_chunk_index-1]) &&
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4895
           (pointer_delta(_eden_chunk_array[_eden_chunk_index],
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4896
                          _eden_chunk_array[_eden_chunk_index-1]) >= CMSSamplingGrain))) {
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4897
        _eden_chunk_index++;  // commit sample
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4898
      }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4899
      _eden_chunk_lock->unlock();
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4900
    }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4901
  }
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4902
}
d32a17b7502c 6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents: 18687
diff changeset
  4903
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4904
// Return a thread-local PLAB recording array, as appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4905
void* CMSCollector::get_data_recorder(int thr_num) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4906
  if (_survivor_plab_array != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4907
      (CMSPLABRecordAlways ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4908
       (_collectorState > Marking && _collectorState < FinalMarking))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4909
    assert(thr_num < (int)ParallelGCThreads, "thr_num is out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4910
    ChunkArray* ca = &_survivor_plab_array[thr_num];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4911
    ca->reset();   // clear it so that fresh data is recorded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4912
    return (void*) ca;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4913
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4914
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4915
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4916
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4917
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4918
// Reset all the thread-local PLAB recording arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4919
void CMSCollector::reset_survivor_plab_arrays() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4920
  for (uint i = 0; i < ParallelGCThreads; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4921
    _survivor_plab_array[i].reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4922
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4923
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4924
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4925
// Merge the per-thread plab arrays into the global survivor chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4926
// array which will provide the partitioning of the survivor space
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4927
// for CMS initial scan and rescan.
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4928
void CMSCollector::merge_survivor_plab_arrays(ContiguousSpace* surv,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4929
                                              int no_of_gc_threads) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4930
  assert(_survivor_plab_array  != NULL, "Error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4931
  assert(_survivor_chunk_array != NULL, "Error");
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4932
  assert(_collectorState == FinalMarking ||
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4933
         (CMSParallelInitialMarkEnabled && _collectorState == InitialMarking), "Error");
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4934
  for (int j = 0; j < no_of_gc_threads; j++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4935
    _cursor[j] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4936
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4937
  HeapWord* top = surv->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4938
  size_t i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4939
  for (i = 0; i < _survivor_chunk_capacity; i++) {  // all sca entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4940
    HeapWord* min_val = top;          // Higher than any PLAB address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4941
    uint      min_tid = 0;            // position of min_val this round
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4942
    for (int j = 0; j < no_of_gc_threads; j++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4943
      ChunkArray* cur_sca = &_survivor_plab_array[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4944
      if (_cursor[j] == cur_sca->end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4945
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4946
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4947
      assert(_cursor[j] < cur_sca->end(), "ctl pt invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4948
      HeapWord* cur_val = cur_sca->nth(_cursor[j]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4949
      assert(surv->used_region().contains(cur_val), "Out of bounds value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4950
      if (cur_val < min_val) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4951
        min_tid = j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4952
        min_val = cur_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4953
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4954
        assert(cur_val < top, "All recorded addresses should be less");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4955
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4956
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4957
    // At this point min_val and min_tid are respectively
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4958
    // the least address in _survivor_plab_array[j]->nth(_cursor[j])
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4959
    // and the thread (j) that witnesses that address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4960
    // We record this address in the _survivor_chunk_array[i]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4961
    // and increment _cursor[min_tid] prior to the next round i.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4962
    if (min_val == top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4963
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4964
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4965
    _survivor_chunk_array[i] = min_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4966
    _cursor[min_tid]++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4967
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4968
  // We are all done; record the size of the _survivor_chunk_array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4969
  _survivor_chunk_index = i; // exclusive: [0, i)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4970
  if (PrintCMSStatistics > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4971
    gclog_or_tty->print(" (Survivor:" SIZE_FORMAT "chunks) ", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4972
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4973
  // Verify that we used up all the recorded entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4974
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4975
    size_t total = 0;
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  4976
    for (int j = 0; j < no_of_gc_threads; j++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4977
      assert(_cursor[j] == _survivor_plab_array[j].end(), "Ctl pt invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4978
      total += _cursor[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4979
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4980
    assert(total == _survivor_chunk_index, "Ctl Pt Invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4981
    // Check that the merged array is in sorted order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4982
    if (total > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4983
      for (size_t i = 0; i < total - 1; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4984
        if (PrintCMSStatistics > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4985
          gclog_or_tty->print(" (chunk" SIZE_FORMAT ":" INTPTR_FORMAT ") ",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  4986
                              i, p2i(_survivor_chunk_array[i]));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4987
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4988
        assert(_survivor_chunk_array[i] < _survivor_chunk_array[i+1],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4989
               "Not sorted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4990
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4991
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4992
  #endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4993
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4994
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4995
// Set up the space's par_seq_tasks structure for work claiming
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  4996
// for parallel initial scan and rescan of young gen.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4997
// See ParRescanTask where this is currently used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4998
void
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4999
CMSCollector::
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5000
initialize_sequential_subtasks_for_young_gen_rescan(int n_threads) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5001
  assert(n_threads > 0, "Unexpected n_threads argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5003
  // Eden space
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  5004
  if (!_young_gen->eden()->is_empty()) {
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  5005
    SequentialSubTasksDone* pst = _young_gen->eden()->par_seq_tasks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5006
    assert(!pst->valid(), "Clobbering existing data?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5007
    // Each valid entry in [0, _eden_chunk_index) represents a task.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5008
    size_t n_tasks = _eden_chunk_index + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5009
    assert(n_tasks == 1 || _eden_chunk_array != NULL, "Error");
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5010
    // Sets the condition for completion of the subtask (how many threads
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5011
    // need to finish in order to be done).
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5012
    pst->set_n_threads(n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5013
    pst->set_n_tasks((int)n_tasks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5014
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5016
  // Merge the survivor plab arrays into _survivor_chunk_array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5017
  if (_survivor_plab_array != NULL) {
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  5018
    merge_survivor_plab_arrays(_young_gen->from(), n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5019
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5020
    assert(_survivor_chunk_index == 0, "Error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5021
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5023
  // To space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5024
  {
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  5025
    SequentialSubTasksDone* pst = _young_gen->to()->par_seq_tasks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5026
    assert(!pst->valid(), "Clobbering existing data?");
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5027
    // Sets the condition for completion of the subtask (how many threads
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5028
    // need to finish in order to be done).
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5029
    pst->set_n_threads(n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5030
    pst->set_n_tasks(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5031
    assert(pst->valid(), "Error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5032
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5034
  // From space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5035
  {
27903
14c6e2f23fa0 8065992: Change CMSCollector::_young_gen to be a ParNewGeneration*
brutisso
parents: 27899
diff changeset
  5036
    SequentialSubTasksDone* pst = _young_gen->from()->par_seq_tasks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5037
    assert(!pst->valid(), "Clobbering existing data?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5038
    size_t n_tasks = _survivor_chunk_index + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5039
    assert(n_tasks == 1 || _survivor_chunk_array != NULL, "Error");
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5040
    // Sets the condition for completion of the subtask (how many threads
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5041
    // need to finish in order to be done).
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5042
    pst->set_n_threads(n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5043
    pst->set_n_tasks((int)n_tasks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5044
    assert(pst->valid(), "Error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5045
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5046
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5048
// Parallel version of remark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5049
void CMSCollector::do_remark_parallel() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5050
  GenCollectedHeap* gch = GenCollectedHeap::heap();
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5051
  WorkGang* workers = gch->workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5052
  assert(workers != NULL, "Need parallel worker threads.");
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5053
  // Choose to use the number of GC workers most recently set
30875
f98008e14939 8080840: Clean up active_workers() asserts
stefank
parents: 30871
diff changeset
  5054
  // into "active_workers".
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  5055
  uint n_workers = workers->active_workers();
30875
f98008e14939 8080840: Clean up active_workers() asserts
stefank
parents: 30871
diff changeset
  5056
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5057
  CompactibleFreeListSpace* cms_space  = _cmsGen->cmsSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5058
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  5059
  StrongRootsScope srs(n_workers);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  5060
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  5061
  CMSParRemarkTask tsk(this, cms_space, n_workers, workers, task_queues(), &srs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5063
  // We won't be iterating over the cards in the card table updating
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5064
  // the younger_gen cards, so we shouldn't call the following else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5065
  // the verification code as well as subsequent younger_refs_iterate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5066
  // code would get confused. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5067
  // gch->rem_set()->prepare_for_younger_refs_iterate(true); // parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5069
  // The young gen rescan work will not be done as part of
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5070
  // process_roots (which currently doesn't know how to
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5071
  // parallelize such a scan), but rather will be broken up into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5072
  // a set of parallel tasks (via the sampling that the [abortable]
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27252
diff changeset
  5073
  // preclean phase did of eden, plus the [two] tasks of
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5074
  // scanning the [two] survivor spaces. Further fine-grain
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5075
  // parallelization of the scanning of the survivor spaces
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5076
  // themselves, and of precleaning of the young gen itself
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5077
  // is deferred to the future.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5078
  initialize_sequential_subtasks_for_young_gen_rescan(n_workers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5080
  // The dirty card rescan work is broken up into a "sequence"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5081
  // of parallel tasks (per constituent space) that are dynamically
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5082
  // claimed by the parallel threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5083
  cms_space->initialize_sequential_subtasks_for_rescan(n_workers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5085
  // It turns out that even when we're using 1 thread, doing the work in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5086
  // separate thread causes wide variance in run times.  We can't help this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5087
  // in the multi-threaded case, but we special-case n=1 here to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5088
  // repeatable measurements of the 1-thread overhead of the parallel code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5089
  if (n_workers > 1) {
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5090
    // Make refs discovery MT-safe, if it isn't already: it may not
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5091
    // necessarily be so, since it's possible that we are doing
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5092
    // ST marking.
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5093
    ReferenceProcessorMTDiscoveryMutator mt(ref_processor(), true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5094
    workers->run_task(&tsk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5095
  } else {
11640
778999c69a3e 7134655: Crash in reference processing when doing single-threaded remarking
stefank
parents: 11396
diff changeset
  5096
    ReferenceProcessorMTDiscoveryMutator mt(ref_processor(), false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5097
    tsk.work(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5098
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5099
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5100
  // restore, single-threaded for now, any preserved marks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5101
  // as a result of work_q overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5102
  restore_preserved_marks_if_any();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5105
// Non-parallel version of remark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5106
void CMSCollector::do_remark_non_parallel() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5107
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5108
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5109
  GenCollectedHeap* gch = GenCollectedHeap::heap();
11640
778999c69a3e 7134655: Crash in reference processing when doing single-threaded remarking
stefank
parents: 11396
diff changeset
  5110
  ReferenceProcessorMTDiscoveryMutator mt(ref_processor(), false);
778999c69a3e 7134655: Crash in reference processing when doing single-threaded remarking
stefank
parents: 11396
diff changeset
  5111
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5112
  MarkRefsIntoAndScanClosure
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5113
    mrias_cl(_span, ref_processor(), &_markBitMap, NULL /* not precleaning */,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5114
             &_markStack, this,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5115
             false /* should_yield */, false /* not precleaning */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5116
  MarkFromDirtyCardsClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5117
    markFromDirtyCardsClosure(this, _span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5118
                              NULL,  // space is set further below
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5119
                              &_markBitMap, &_markStack, &mrias_cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5120
  {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5121
    GCTraceTime t("grey object rescan", PrintGCDetails, false, _gc_timer_cm);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  5122
    // Iterate over the dirty cards, setting the corresponding bits in the
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  5123
    // mod union table.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5124
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5125
      ModUnionClosure modUnionClosure(&_modUnionTable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5126
      _ct->ct_bs()->dirty_card_iterate(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5127
                      _cmsGen->used_region(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5128
                      &modUnionClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5129
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5130
    // Having transferred these marks into the modUnionTable, we just need
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5131
    // to rescan the marked objects on the dirty cards in the modUnionTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5132
    // The initial marking may have been done during an asynchronous
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5133
    // collection so there may be dirty bits in the mod-union table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5134
    const int alignment =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5135
      CardTableModRefBS::card_size * BitsPerWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5136
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5137
      // ... First handle dirty cards in CMS gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5138
      markFromDirtyCardsClosure.set_space(_cmsGen->cmsSpace());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5139
      MemRegion ur = _cmsGen->used_region();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5140
      HeapWord* lb = ur.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5141
      HeapWord* ub = (HeapWord*)round_to((intptr_t)ur.end(), alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5142
      MemRegion cms_span(lb, ub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5143
      _modUnionTable.dirty_range_iterate_clear(cms_span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5144
                                               &markFromDirtyCardsClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5145
      verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5146
      if (PrintCMSStatistics != 0) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  5147
        gclog_or_tty->print(" (re-scanned " SIZE_FORMAT " dirty cards in cms gen) ",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5148
          markFromDirtyCardsClosure.num_dirty_cards());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5149
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5150
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5152
  if (VerifyDuringGC &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5153
      GenCollectedHeap::heap()->total_collections() >= VerifyGCStartAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5154
    HandleMark hm;  // Discard invalid handles created during verification
14076
84643cfaeaa8 8000831: Heap verification output incorrect/incomplete
johnc
parents: 13878
diff changeset
  5155
    Universe::verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5157
  {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5158
    GCTraceTime t("root rescan", PrintGCDetails, false, _gc_timer_cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5160
    verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5162
    gch->rem_set()->prepare_for_younger_refs_iterate(false); // Not parallel.
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  5163
    StrongRootsScope srs(1);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  5164
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30771
diff changeset
  5165
    gch->gen_process_roots(&srs,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  5166
                           GenCollectedHeap::OldGen,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5167
                           true,  // young gen as roots
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  5168
                           GenCollectedHeap::ScanningOption(roots_scanning_options()),
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5169
                           should_unload_classes(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5170
                           &mrias_cl,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5171
                           NULL,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5172
                           NULL); // The dirty klasses will be handled below
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5173
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2885
diff changeset
  5174
    assert(should_unload_classes()
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29687
diff changeset
  5175
           || (roots_scanning_options() & GenCollectedHeap::SO_AllCodeCache),
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2885
diff changeset
  5176
           "if we didn't scan the code cache, we have to be ready to drop nmethods with expired weak oops");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5177
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5178
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5179
  {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5180
    GCTraceTime t("visit unhandled CLDs", PrintGCDetails, false, _gc_timer_cm);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5181
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5182
    verify_work_stacks_empty();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5183
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5184
    // Scan all class loader data objects that might have been introduced
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5185
    // during concurrent marking.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5186
    ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5187
    GrowableArray<ClassLoaderData*>* array = ClassLoaderDataGraph::new_clds();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5188
    for (int i = 0; i < array->length(); i++) {
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 32368
diff changeset
  5189
      mrias_cl.do_cld_nv(array->at(i));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5190
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5191
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5192
    // We don't need to keep track of new CLDs anymore.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5193
    ClassLoaderDataGraph::remember_new_clds(false);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5194
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5195
    verify_work_stacks_empty();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5196
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5197
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5198
  {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5199
    GCTraceTime t("dirty klass scan", PrintGCDetails, false, _gc_timer_cm);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5200
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5201
    verify_work_stacks_empty();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5202
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5203
    RemarkKlassClosure remark_klass_closure(&mrias_cl);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5204
    ClassLoaderDataGraph::classes_do(&remark_klass_closure);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5205
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5206
    verify_work_stacks_empty();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5207
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5208
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5209
  // We might have added oops to ClassLoaderData::_handles during the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5210
  // concurrent marking phase. These oops point to newly allocated objects
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5211
  // that are guaranteed to be kept alive. Either by the direct allocation
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5212
  // code, or when the young collector processes the roots. Hence,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5213
  // we don't have to revisit the _handles block during the remark phase.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5214
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5215
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5216
  // Restore evacuated mark words, if any, used for overflow list links
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5217
  if (!CMSOverflowEarlyRestoration) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5218
    restore_preserved_marks_if_any();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5220
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5221
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5222
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5223
////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5224
// Parallel Reference Processing Task Proxy Class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5225
////////////////////////////////////////////////////////
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5226
class AbstractGangTaskWOopQueues : public AbstractGangTask {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5227
  OopTaskQueueSet*       _queues;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5228
  ParallelTaskTerminator _terminator;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5229
 public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5230
  AbstractGangTaskWOopQueues(const char* name, OopTaskQueueSet* queues, uint n_threads) :
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5231
    AbstractGangTask(name), _queues(queues), _terminator(n_threads, _queues) {}
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5232
  ParallelTaskTerminator* terminator() { return &_terminator; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5233
  OopTaskQueueSet* queues() { return _queues; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5234
};
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5235
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5236
class CMSRefProcTaskProxy: public AbstractGangTaskWOopQueues {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5237
  typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5238
  CMSCollector*          _collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5239
  CMSBitMap*             _mark_bit_map;
390
2e094c1be4af 6662086: 6u4+, 7b11+: CMS never clears referents when -XX:+ParallelRefProcEnabled
ysr
parents: 360
diff changeset
  5240
  const MemRegion        _span;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5241
  ProcessTask&           _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5243
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5244
  CMSRefProcTaskProxy(ProcessTask&     task,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5245
                      CMSCollector*    collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5246
                      const MemRegion& span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5247
                      CMSBitMap*       mark_bit_map,
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5248
                      AbstractWorkGang* workers,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5249
                      OopTaskQueueSet* task_queues):
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5250
    AbstractGangTaskWOopQueues("Process referents by policy in parallel",
30881
7a3899d7cea0 8080879: Remove FlexibleWorkGang::set_for_termination
stefank
parents: 30875
diff changeset
  5251
      task_queues,
7a3899d7cea0 8080879: Remove FlexibleWorkGang::set_for_termination
stefank
parents: 30875
diff changeset
  5252
      workers->active_workers()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5253
    _task(task),
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5254
    _collector(collector), _span(span), _mark_bit_map(mark_bit_map)
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5255
  {
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5256
    assert(_collector->_span.equals(_span) && !_span.is_empty(),
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5257
           "Inconsistency in _span");
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 8684
diff changeset
  5258
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5259
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5260
  OopTaskQueueSet* task_queues() { return queues(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5262
  OopTaskQueue* work_queue(int i) { return task_queues()->queue(i); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5264
  void do_work_steal(int i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5265
                     CMSParDrainMarkingStackClosure* drain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5266
                     CMSParKeepAliveClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5267
                     int* seed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5268
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5269
  virtual void work(uint worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5270
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5271
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5272
void CMSRefProcTaskProxy::work(uint worker_id) {
25893
b4141bec6a67 8050973: CMS/G1 GC: add missing Resource and Handle mark
mdoerr
parents: 25492
diff changeset
  5273
  ResourceMark rm;
b4141bec6a67 8050973: CMS/G1 GC: add missing Resource and Handle mark
mdoerr
parents: 25492
diff changeset
  5274
  HandleMark hm;
390
2e094c1be4af 6662086: 6u4+, 7b11+: CMS never clears referents when -XX:+ParallelRefProcEnabled
ysr
parents: 360
diff changeset
  5275
  assert(_collector->_span.equals(_span), "Inconsistency in _span");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5276
  CMSParKeepAliveClosure par_keep_alive(_collector, _span,
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  5277
                                        _mark_bit_map,
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5278
                                        work_queue(worker_id));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5279
  CMSParDrainMarkingStackClosure par_drain_stack(_collector, _span,
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  5280
                                                 _mark_bit_map,
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5281
                                                 work_queue(worker_id));
390
2e094c1be4af 6662086: 6u4+, 7b11+: CMS never clears referents when -XX:+ParallelRefProcEnabled
ysr
parents: 360
diff changeset
  5282
  CMSIsAliveClosure is_alive_closure(_span, _mark_bit_map);
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5283
  _task.work(worker_id, is_alive_closure, par_keep_alive, par_drain_stack);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5284
  if (_task.marks_oops_alive()) {
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5285
    do_work_steal(worker_id, &par_drain_stack, &par_keep_alive,
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5286
                  _collector->hash_seed(worker_id));
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5287
  }
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5288
  assert(work_queue(worker_id)->size() == 0, "work_queue should be empty");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5289
  assert(_collector->_overflow_list == NULL, "non-empty _overflow_list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5292
class CMSRefEnqueueTaskProxy: public AbstractGangTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5293
  typedef AbstractRefProcTaskExecutor::EnqueueTask EnqueueTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5294
  EnqueueTask& _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5296
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5297
  CMSRefEnqueueTaskProxy(EnqueueTask& task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5298
    : AbstractGangTask("Enqueue reference objects in parallel"),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5299
      _task(task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5300
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5301
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5302
  virtual void work(uint worker_id)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5303
  {
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11204
diff changeset
  5304
    _task.work(worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5305
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5306
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5307
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5308
CMSParKeepAliveClosure::CMSParKeepAliveClosure(CMSCollector* collector,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5309
  MemRegion span, CMSBitMap* bit_map, OopTaskQueue* work_queue):
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5310
   _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5311
   _bit_map(bit_map),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5312
   _work_queue(work_queue),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5313
   _mark_and_push(collector, span, bit_map, work_queue),
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30881
diff changeset
  5314
   _low_water_mark(MIN2((work_queue->max_elems()/4),
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30881
diff changeset
  5315
                        ((uint)CMSWorkQueueDrainThreshold * ParallelGCThreads)))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5316
{ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5318
// . see if we can share work_queues with ParNew? XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5319
void CMSRefProcTaskProxy::do_work_steal(int i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5320
  CMSParDrainMarkingStackClosure* drain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5321
  CMSParKeepAliveClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5322
  int* seed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5323
  OopTaskQueue* work_q = work_queue(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5324
  NOT_PRODUCT(int num_steals = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5325
  oop obj_to_scan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5327
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5328
    // Completely finish any left over work from (an) earlier round(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5329
    drain->trim_queue(0);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2154
diff changeset
  5330
    size_t num_from_overflow_list = MIN2((size_t)(work_q->max_elems() - work_q->size())/4,
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2154
diff changeset
  5331
                                         (size_t)ParGCDesiredObjsFromOverflowList);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5332
    // Now check if there's any work in the overflow list
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5333
    // Passing ParallelGCThreads as the third parameter, no_of_gc_threads,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5334
    // only affects the number of attempts made to get work from the
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5335
    // overflow list and does not affect the number of workers.  Just
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5336
    // pass ParallelGCThreads so this behavior is unchanged.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5337
    if (_collector->par_take_from_overflow_list(num_from_overflow_list,
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5338
                                                work_q,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5339
                                                ParallelGCThreads)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5340
      // Found something in global overflow list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5341
      // not yet ready to go stealing work from others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5342
      // We'd like to assert(work_q->size() != 0, ...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5343
      // because we just took work from the overflow list,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5344
      // but of course we can't, since all of that might have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5345
      // been already stolen from us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5346
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5347
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5348
    // Verify that we have no work before we resort to stealing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5349
    assert(work_q->size() == 0, "Have work, shouldn't steal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5350
    // Try to steal from other queues that have work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5351
    if (task_queues()->steal(i, seed, /* reference */ obj_to_scan)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5352
      NOT_PRODUCT(num_steals++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5353
      assert(obj_to_scan->is_oop(), "Oops, not an oop!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5354
      assert(_mark_bit_map->isMarked((HeapWord*)obj_to_scan), "Stole an unmarked oop?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5355
      // Do scanning work
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5356
      obj_to_scan->oop_iterate(keep_alive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5357
      // Loop around, finish this work, and try to steal some more
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5358
    } else if (terminator()->offer_termination()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5359
      break;  // nirvana from the infinite cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5360
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5362
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5363
    if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5364
      gclog_or_tty->print("\n\t(%d: stole %d oops)", i, num_steals);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5365
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5366
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5369
void CMSRefProcTaskExecutor::execute(ProcessTask& task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5370
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5371
  GenCollectedHeap* gch = GenCollectedHeap::heap();
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5372
  WorkGang* workers = gch->workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5373
  assert(workers != NULL, "Need parallel worker threads.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5374
  CMSRefProcTaskProxy rp_task(task, &_collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5375
                              _collector.ref_processor()->span(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5376
                              _collector.markBitMap(),
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5377
                              workers, _collector.task_queues());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5378
  workers->run_task(&rp_task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5381
void CMSRefProcTaskExecutor::execute(EnqueueTask& task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5382
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5384
  GenCollectedHeap* gch = GenCollectedHeap::heap();
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5385
  WorkGang* workers = gch->workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5386
  assert(workers != NULL, "Need parallel worker threads.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5387
  CMSRefEnqueueTaskProxy enq_task(task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5388
  workers->run_task(&enq_task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5389
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5390
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5391
void CMSCollector::refProcessingWork() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5392
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5393
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5395
  ReferenceProcessor* rp = ref_processor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5396
  assert(rp->span().equals(_span), "Spans should be equal");
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  5397
  assert(!rp->enqueuing_is_done(), "Enqueuing should not be complete");
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  5398
  // Process weak references.
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5399
  rp->setup_policy(false);
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  5400
  verify_work_stacks_empty();
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  5401
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5402
  CMSKeepAliveClosure cmsKeepAliveClosure(this, _span, &_markBitMap,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5403
                                          &_markStack, false /* !preclean */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5404
  CMSDrainMarkingStackClosure cmsDrainMarkingStackClosure(this,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5405
                                _span, &_markBitMap, &_markStack,
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  5406
                                &cmsKeepAliveClosure, false /* !preclean */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5407
  {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5408
    GCTraceTime t("weak refs processing", PrintGCDetails, false, _gc_timer_cm);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5409
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5410
    ReferenceProcessorStats stats;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5411
    if (rp->processing_is_mt()) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5412
      // Set the degree of MT here.  If the discovery is done MT, there
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5413
      // may have been a different number of threads doing the discovery
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5414
      // and a different number of discovered lists may have Ref objects.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5415
      // That is OK as long as the Reference lists are balanced (see
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5416
      // balance_all_queues() and balance_queues()).
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5417
      GenCollectedHeap* gch = GenCollectedHeap::heap();
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30581
diff changeset
  5418
      uint active_workers = ParallelGCThreads;
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 32195
diff changeset
  5419
      WorkGang* workers = gch->workers();
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5420
      if (workers != NULL) {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5421
        active_workers = workers->active_workers();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5422
        // The expectation is that active_workers will have already
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5423
        // been set to a reasonable value.  If it has not been set,
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5424
        // investigate.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5425
        assert(active_workers > 0, "Should have been set during scavenge");
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5426
      }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10670
diff changeset
  5427
      rp->set_active_mt_degree(active_workers);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5428
      CMSRefProcTaskExecutor task_executor(*this);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5429
      stats = rp->process_discovered_references(&_is_alive_closure,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5430
                                        &cmsKeepAliveClosure,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5431
                                        &cmsDrainMarkingStackClosure,
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5432
                                        &task_executor,
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5433
                                        _gc_timer_cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5434
    } else {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5435
      stats = rp->process_discovered_references(&_is_alive_closure,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5436
                                        &cmsKeepAliveClosure,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5437
                                        &cmsDrainMarkingStackClosure,
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5438
                                        NULL,
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5439
                                        _gc_timer_cm);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5440
    }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5441
    _gc_tracer_cm->report_gc_reference_stats(stats);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5442
17114
b341b4c63384 8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents: 17112
diff changeset
  5443
  }
b341b4c63384 8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents: 17112
diff changeset
  5444
b341b4c63384 8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents: 17112
diff changeset
  5445
  // This is the point where the entire marking should have completed.
b341b4c63384 8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents: 17112
diff changeset
  5446
  verify_work_stacks_empty();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5447
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  5448
  if (should_unload_classes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5449
    {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5450
      GCTraceTime t("class unloading", PrintGCDetails, false, _gc_timer_cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5451
17114
b341b4c63384 8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents: 17112
diff changeset
  5452
      // Unload classes and purge the SystemDictionary.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5453
      bool purged_class = SystemDictionary::do_unloading(&_is_alive_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5454
17114
b341b4c63384 8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents: 17112
diff changeset
  5455
      // Unload nmethods.
13878
6e6a462a6cff 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 13757
diff changeset
  5456
      CodeCache::do_unloading(&_is_alive_closure, purged_class);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5457
17114
b341b4c63384 8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents: 17112
diff changeset
  5458
      // Prune dead klasses from subklass/sibling/implementor lists.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5459
      Klass::clean_weak_klass_links(&_is_alive_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5460
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5462
    {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5463
      GCTraceTime t("scrub symbol table", PrintGCDetails, false, _gc_timer_cm);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
  5464
      // Clean up unreferenced symbols in symbol table.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
  5465
      SymbolTable::unlink();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5466
    }
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5467
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5468
    {
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5469
      GCTraceTime t("scrub string table", PrintGCDetails, false, _gc_timer_cm);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5470
      // Delete entries for dead interned strings.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5471
      StringTable::unlink(&_is_alive_closure);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5472
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5473
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
  5474
8728
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8688
diff changeset
  5475
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5476
  // Restore any preserved marks as a result of mark stack or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5477
  // work queue overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5478
  restore_preserved_marks_if_any();  // done single-threaded for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5480
  rp->set_enqueuing_is_done(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5481
  if (rp->processing_is_mt()) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  5482
    rp->balance_all_queues();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5483
    CMSRefProcTaskExecutor task_executor(*this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5484
    rp->enqueue_discovered_references(&task_executor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5485
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5486
    rp->enqueue_discovered_references(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5487
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5488
  rp->verify_no_references_recorded();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5489
  assert(!rp->discovery_enabled(), "should have been disabled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5490
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5492
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5493
void CMSCollector::check_correct_thread_executing() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5494
  Thread* t = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5495
  // Only the VM thread or the CMS thread should be here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5496
  assert(t->is_ConcurrentGC_thread() || t->is_VM_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5497
         "Unexpected thread type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5498
  // If this is the vm thread, the foreground process
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5499
  // should not be waiting.  Note that _foregroundGCIsActive is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5500
  // true while the foreground collector is waiting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5501
  if (_foregroundGCShouldWait) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5502
    // We cannot be the VM thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5503
    assert(t->is_ConcurrentGC_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5504
           "Should be CMS thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5505
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5506
    // We can be the CMS thread only if we are in a stop-world
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5507
    // phase of CMS collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5508
    if (t->is_ConcurrentGC_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5509
      assert(_collectorState == InitialMarking ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5510
             _collectorState == FinalMarking,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5511
             "Should be a stop-world phase");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5512
      // The CMS thread should be holding the CMS_token.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5513
      assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5514
             "Potential interference with concurrently "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5515
             "executing VM thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5516
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5517
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5519
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5520
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5521
void CMSCollector::sweep() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5522
  assert(_collectorState == Sweeping, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5523
  check_correct_thread_executing();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5524
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5525
  verify_overflow_empty();
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5526
  increment_sweep_count();
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  5527
  TraceCMSMemoryManagerStats tms(_collectorState,GenCollectedHeap::heap()->gc_cause());
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  5528
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5529
  _inter_sweep_timer.stop();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5530
  _inter_sweep_estimate.sample(_inter_sweep_timer.seconds());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5531
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5532
  assert(!_intra_sweep_timer.is_active(), "Should not be active");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5533
  _intra_sweep_timer.reset();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5534
  _intra_sweep_timer.start();
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5535
  {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5536
    TraceCPUTime tcpu(PrintGCDetails, true, gclog_or_tty);
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5537
    CMSPhaseAccounting pa(this, "sweep", !PrintGCDetails);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5538
    // First sweep the old gen
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5539
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5540
      CMSTokenSyncWithLocks ts(true, _cmsGen->freelistLock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5541
                               bitMapLock());
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5542
      sweepWork(_cmsGen);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5543
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5544
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5545
    // Update Universe::_heap_*_at_gc figures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5546
    // We need all the free list locks to make the abstract state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5547
    // transition from Sweeping to Resetting. See detailed note
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5548
    // further below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5549
    {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5550
      CMSTokenSyncWithLocks ts(true, _cmsGen->freelistLock());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5551
      // Update heap occupancy information which is used as
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5552
      // input to soft ref clearing policy at the next gc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5553
      Universe::update_heap_info_at_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5554
      _collectorState = Resizing;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5555
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5556
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5557
  verify_work_stacks_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5558
  verify_overflow_empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5559
16385
4a05c6d94b04 8005602: NPG: classunloading does not happen while CMS GC with -XX:+CMSClassUnloadingEnabled is used
mgerdin
parents: 15956
diff changeset
  5560
  if (should_unload_classes()) {
24457
0e20b36df5c4 8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents: 24429
diff changeset
  5561
    // Delay purge to the beginning of the next safepoint.  Metaspace::contains
0e20b36df5c4 8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents: 24429
diff changeset
  5562
    // requires that the virtual spaces are stable and not deleted.
0e20b36df5c4 8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents: 24429
diff changeset
  5563
    ClassLoaderDataGraph::set_should_purge(true);
16385
4a05c6d94b04 8005602: NPG: classunloading does not happen while CMS GC with -XX:+CMSClassUnloadingEnabled is used
mgerdin
parents: 15956
diff changeset
  5564
  }
4a05c6d94b04 8005602: NPG: classunloading does not happen while CMS GC with -XX:+CMSClassUnloadingEnabled is used
mgerdin
parents: 15956
diff changeset
  5565
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5566
  _intra_sweep_timer.stop();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5567
  _intra_sweep_estimate.sample(_intra_sweep_timer.seconds());
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5568
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5569
  _inter_sweep_timer.reset();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5570
  _inter_sweep_timer.start();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5571
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  5572
  // We need to use a monotonically non-decreasing time in ms
11755
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11640
diff changeset
  5573
  // or we will see time-warp warnings and os::javaTimeMillis()
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11640
diff changeset
  5574
  // does not guarantee monotonicity.
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11640
diff changeset
  5575
  jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11640
diff changeset
  5576
  update_time_of_last_gc(now);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5578
  // NOTE on abstract state transitions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5579
  // Mutators allocate-live and/or mark the mod-union table dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5580
  // based on the state of the collection.  The former is done in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5581
  // the interval [Marking, Sweeping] and the latter in the interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5582
  // [Marking, Sweeping).  Thus the transitions into the Marking state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5583
  // and out of the Sweeping state must be synchronously visible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5584
  // globally to the mutators.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5585
  // The transition into the Marking state happens with the world
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5586
  // stopped so the mutators will globally see it.  Sweeping is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5587
  // done asynchronously by the background collector so the transition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5588
  // from the Sweeping state to the Resizing state must be done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5589
  // under the freelistLock (as is the check for whether to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5590
  // allocate-live and whether to dirty the mod-union table).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5591
  assert(_collectorState == Resizing, "Change of collector state to"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5592
    " Resizing must be done under the freelistLocks (plural)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5593
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
  5594
  // Now that sweeping has been completed, we clear
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
  5595
  // the incremental_collection_failed flag,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5596
  // thus inviting a younger gen collection to promote into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5597
  // this generation. If such a promotion may still fail,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5598
  // the flag will be set again when a young collection is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5599
  // attempted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5600
  GenCollectedHeap* gch = GenCollectedHeap::heap();
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6763
diff changeset
  5601
  gch->clear_incremental_collection_failed();  // Worth retrying as fresh space may have been freed up
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5602
  gch->update_full_collections_completed(_collection_count_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5603
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5604
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5605
// FIX ME!!! Looks like this belongs in CFLSpace, with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5606
// CMSGen merely delegating to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5607
void ConcurrentMarkSweepGeneration::setNearLargestChunk() {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5608
  double nearLargestPercent = FLSLargestBlockCoalesceProximity;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5609
  HeapWord*  minAddr        = _cmsSpace->bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5610
  HeapWord*  largestAddr    =
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  5611
    (HeapWord*) _cmsSpace->dictionary()->find_largest_dict();
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5612
  if (largestAddr == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5613
    // The dictionary appears to be empty.  In this case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5614
    // try to coalesce at the end of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5615
    largestAddr = _cmsSpace->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5616
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5617
  size_t largestOffset     = pointer_delta(largestAddr, minAddr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5618
  size_t nearLargestOffset =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5619
    (size_t)((double)largestOffset * nearLargestPercent) - MinChunkSize;
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5620
  if (PrintFLSStatistics != 0) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5621
    gclog_or_tty->print_cr(
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5622
      "CMS: Large Block: " PTR_FORMAT ";"
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5623
      " Proximity: " PTR_FORMAT " -> " PTR_FORMAT,
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  5624
      p2i(largestAddr),
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  5625
      p2i(_cmsSpace->nearLargestChunk()), p2i(minAddr + nearLargestOffset));
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5626
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5627
  _cmsSpace->set_nearLargestChunk(minAddr + nearLargestOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5628
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5630
bool ConcurrentMarkSweepGeneration::isNearLargestChunk(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5631
  return addr >= _cmsSpace->nearLargestChunk();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5632
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5634
FreeChunk* ConcurrentMarkSweepGeneration::find_chunk_at_end() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5635
  return _cmsSpace->find_chunk_at_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5636
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5637
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  5638
void ConcurrentMarkSweepGeneration::update_gc_stats(Generation* current_generation,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5639
                                                    bool full) {
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  5640
  // If the young generation has been collected, gather any statistics
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5641
  // that are of interest at this point.
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  5642
  bool current_is_young = GenCollectedHeap::heap()->is_young_gen(current_generation);
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
  5643
  if (!full && current_is_young) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5644
    // Gather statistics on the young generation collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5645
    collector()->stats().record_gc0_end(used());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5646
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5647
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5648
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5649
void CMSCollector::sweepWork(ConcurrentMarkSweepGeneration* old_gen) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5650
  // We iterate over the space(s) underlying this generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5651
  // checking the mark bit map to see if the bits corresponding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5652
  // to specific blocks are marked or not. Blocks that are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5653
  // marked are live and are not swept up. All remaining blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5654
  // are swept up, with coalescing on-the-fly as we sweep up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5655
  // contiguous free and/or garbage blocks:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5656
  // We need to ensure that the sweeper synchronizes with allocators
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5657
  // and stop-the-world collectors. In particular, the following
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5658
  // locks are used:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5659
  // . CMS token: if this is held, a stop the world collection cannot occur
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5660
  // . freelistLock: if this is held no allocation can occur from this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5661
  //                 generation by another thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5662
  // . bitMapLock: if this is held, no other thread can access or update
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5663
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5665
  // Note that we need to hold the freelistLock if we use
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5666
  // block iterate below; else the iterator might go awry if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5667
  // a mutator (or promotion) causes block contents to change
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5668
  // (for instance if the allocator divvies up a block).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5669
  // If we hold the free list lock, for all practical purposes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5670
  // young generation GC's can't occur (they'll usually need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5671
  // promote), so we might as well prevent all young generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5672
  // GC's while we do a sweeping step. For the same reason, we might
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5673
  // as well take the bit map lock for the entire duration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5675
  // check that we hold the requisite locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5676
  assert(have_cms_token(), "Should hold cms token");
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5677
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(), "Should possess CMS token to sweep");
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5678
  assert_lock_strong(old_gen->freelistLock());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5679
  assert_lock_strong(bitMapLock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5680
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5681
  assert(!_inter_sweep_timer.is_active(), "Was switched off in an outer context");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 4455
diff changeset
  5682
  assert(_intra_sweep_timer.is_active(),  "Was switched on  in an outer context");
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5683
  old_gen->cmsSpace()->beginSweepFLCensus((float)(_inter_sweep_timer.seconds()),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5684
                                          _inter_sweep_estimate.padded_average(),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5685
                                          _intra_sweep_estimate.padded_average());
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5686
  old_gen->setNearLargestChunk();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5687
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5688
  {
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5689
    SweepClosure sweepClosure(this, old_gen, &_markBitMap, CMSYield);
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5690
    old_gen->cmsSpace()->blk_iterate_careful(&sweepClosure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5691
    // We need to free-up/coalesce garbage/blocks from a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5692
    // co-terminal free run. This is done in the SweepClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5693
    // destructor; so, do not remove this scope, else the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5694
    // end-of-sweep-census below will be off by a little bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5695
  }
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5696
  old_gen->cmsSpace()->sweep_completed();
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32606
diff changeset
  5697
  old_gen->cmsSpace()->endSweepFLCensus(sweep_count());
341
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  5698
  if (should_unload_classes()) {                // unloaded classes this cycle,
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  5699
    _concurrent_cycles_since_last_unload = 0;   // ... reset count
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  5700
  } else {                                      // did not unload classes,
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  5701
    _concurrent_cycles_since_last_unload++;     // ... increment count
6578aad59716 6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents: 182
diff changeset
  5702
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5703
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5705
// Reset CMS data structures (for now just the marking bit map)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5706
// preparatory for the next cycle.
33153
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5707
void CMSCollector::reset_concurrent() {
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5708
  CMSTokenSyncWithLocks ts(true, bitMapLock());
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5709
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5710
  // If the state is not "Resetting", the foreground  thread
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5711
  // has done a collection and the resetting.
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5712
  if (_collectorState != Resetting) {
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5713
    assert(_collectorState == Idling, "The state should only change"
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5714
      " because the foreground collector has finished the collection");
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5715
    return;
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5716
  }
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5717
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5718
  // Clear the mark bitmap (no grey objects to start with)
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5719
  // for the next cycle.
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5720
  TraceCPUTime tcpu(PrintGCDetails, true, gclog_or_tty);
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5721
  CMSPhaseAccounting cmspa(this, "reset", !PrintGCDetails);
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5722
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5723
  HeapWord* curAddr = _markBitMap.startWord();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5724
  while (curAddr < _markBitMap.endWord()) {
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5725
    size_t remaining  = pointer_delta(_markBitMap.endWord(), curAddr);
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5726
    MemRegion chunk(curAddr, MIN2(CMSBitMapYieldQuantum, remaining));
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5727
    _markBitMap.clear_large_range(chunk);
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5728
    if (ConcurrentMarkSweepThread::should_yield() &&
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5729
        !foregroundGCIsActive() &&
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5730
        CMSYield) {
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5731
      assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5732
             "CMS thread should hold CMS token");
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5733
      assert_lock_strong(bitMapLock());
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5734
      bitMapLock()->unlock();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5735
      ConcurrentMarkSweepThread::desynchronize(true);
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5736
      stopTimer();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5737
      if (PrintCMSStatistics != 0) {
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5738
        incrementYields();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5739
      }
33153
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5740
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5741
      // See the comment in coordinator_yield()
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5742
      for (unsigned i = 0; i < CMSYieldSleepCount &&
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5743
                       ConcurrentMarkSweepThread::should_yield() &&
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5744
                       !CMSCollector::foregroundGCIsActive(); ++i) {
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5745
        os::sleep(Thread::current(), 1, false);
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5746
      }
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5747
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5748
      ConcurrentMarkSweepThread::synchronize(true);
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5749
      bitMapLock()->lock_without_safepoint_check();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5750
      startTimer();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5751
    }
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5752
    curAddr = chunk.end();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5753
  }
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5754
  // A successful mostly concurrent collection has been done.
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5755
  // Because only the full (i.e., concurrent mode failure) collections
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5756
  // are being measured for gc overhead limits, clean the "near" flag
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5757
  // and count.
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5758
  size_policy()->reset_gc_overhead_limit_count();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5759
  _collectorState = Idling;
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5760
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5761
  register_gc_end();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5762
}
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5763
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5764
// Same as above but for STW paths
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5765
void CMSCollector::reset_stw() {
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5766
  // already have the lock
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5767
  assert(_collectorState == Resetting, "just checking");
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5768
  assert_lock_strong(bitMapLock());
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5769
  GCIdMarkAndRestore gc_id_mark(_cmsThread->gc_id());
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5770
  _markBitMap.clear_all();
b9545e2c94df 8139294: TestGCEventMixedWithCMSConcurrent.java still fails after JDK-8134953
brutisso
parents: 33107
diff changeset
  5771
  _collectorState = Idling;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17632
diff changeset
  5772
  register_gc_end();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5773
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5774
12630
ddf6ee008138 7166894: Add gc cause to GC logging for all collectors
brutisso
parents: 12509
diff changeset
  5775
void CMSCollector::do_CMS_operation(CMS_op_type op, GCCause::Cause gc_cause) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5776
  TraceCPUTime tcpu(PrintGCDetails, true, gclog_or_tty);
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
  5777
  GCTraceTime t(GCCauseString("GC", gc_cause), PrintGC, !PrintGCDetails, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5778
  TraceCollectorStats tcs(counters());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5780
  switch (op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5781
    case CMS_op_checkpointRootsInitial: {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7419
diff changeset
  5782
      SvcGCMarker sgcm(SvcGCMarker::OTHER);
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5783
      checkpointRootsInitial();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5784
      if (PrintGC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5785
        _cmsGen->printOccupancy("initial-mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5786
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5787
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5788
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5789
    case CMS_op_checkpointRootsFinal: {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7419
diff changeset
  5790
      SvcGCMarker sgcm(SvcGCMarker::OTHER);
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  5791
      checkpointRootsFinal();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5792
      if (PrintGC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5793
        _cmsGen->printOccupancy("remark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5794
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5795
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5796
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5797
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5798
      fatal("No such CMS_op");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5799
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5800
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5802
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5803
size_t const CMSCollector::skip_header_HeapWords() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5804
  return FreeChunk::header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5805
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5807
// Try and collect here conditions that should hold when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5808
// CMS thread is exiting. The idea is that the foreground GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5809
// thread should not be blocked if it wants to terminate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5810
// the CMS thread and yet continue to run the VM for a while
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5811
// after that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5812
void CMSCollector::verify_ok_to_terminate() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5813
  assert(Thread::current()->is_ConcurrentGC_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5814
         "should be called by CMS thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5815
  assert(!_foregroundGCShouldWait, "should be false");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5816
  // We could check here that all the various low-level locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5817
  // are not held by the CMS thread, but that is overkill; see
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5818
  // also CMSThread::verify_ok_to_terminate() where the CGC_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5819
  // is checked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5820
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5821
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5822
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5823
size_t CMSCollector::block_size_using_printezis_bits(HeapWord* addr) const {
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  5824
   assert(_markBitMap.isMarked(addr) && _markBitMap.isMarked(addr + 1),
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1605
diff changeset
  5825
          "missing Printezis mark?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5826
  HeapWord* nextOneAddr = _markBitMap.getNextMarkedWordAddress(addr + 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5827
  size_t size = pointer_delta(nextOneAddr + 1, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5828
  assert(size == CompactibleFreeListSpace::adjustObjectSize(size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5829
         "alignment problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5830
  assert(size >= 3, "Necessary for Printezis marks to work");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5831
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5832
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5833
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5834
// A variant of the above (block_size_using_printezis_bits()) except
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5835
// that we return 0 if the P-bits are not yet set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5836
size_t CMSCollector::block_size_if_printezis_bits(HeapWord* addr) const {
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  5837
  if (_markBitMap.isMarked(addr + 1)) {
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  5838
    assert(_markBitMap.isMarked(addr), "P-bit can be set only for marked objects");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5839
    HeapWord* nextOneAddr = _markBitMap.getNextMarkedWordAddress(addr + 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5840
    size_t size = pointer_delta(nextOneAddr + 1, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5841
    assert(size == CompactibleFreeListSpace::adjustObjectSize(size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5842
           "alignment problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5843
    assert(size >= 3, "Necessary for Printezis marks to work");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5844
    return size;
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  5845
  }
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  5846
  return 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5847
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5849
HeapWord* CMSCollector::next_card_start_after_block(HeapWord* addr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5850
  size_t sz = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5851
  oop p = (oop)addr;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  5852
  if (p->klass_or_null() != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5853
    sz = CompactibleFreeListSpace::adjustObjectSize(p->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5854
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5855
    sz = block_size_using_printezis_bits(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5856
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5857
  assert(sz > 0, "size must be nonzero");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5858
  HeapWord* next_block = addr + sz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5859
  HeapWord* next_card  = (HeapWord*)round_to((uintptr_t)next_block,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5860
                                             CardTableModRefBS::card_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5861
  assert(round_down((uintptr_t)addr,      CardTableModRefBS::card_size) <
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5862
         round_down((uintptr_t)next_card, CardTableModRefBS::card_size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5863
         "must be different cards");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5864
  return next_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5865
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5866
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5867
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5868
// CMS Bit Map Wrapper /////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5869
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5870
// Construct a CMS bit map infrastructure, but don't create the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5871
// bit vector itself. That is done by a separate call CMSBitMap::allocate()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5872
// further below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5873
CMSBitMap::CMSBitMap(int shifter, int mutex_rank, const char* mutex_name):
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  5874
  _bm(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5875
  _shifter(shifter),
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27905
diff changeset
  5876
  _lock(mutex_rank >= 0 ? new Mutex(mutex_rank, mutex_name, true,
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27905
diff changeset
  5877
                                    Monitor::_safepoint_check_sometimes) : NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5878
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5879
  _bmStartWord = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5880
  _bmWordSize  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5881
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5883
bool CMSBitMap::allocate(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5884
  _bmStartWord = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5885
  _bmWordSize  = mr.word_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5886
  ReservedSpace brs(ReservedSpace::allocation_align_size_up(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5887
                     (_bmWordSize >> (_shifter + LogBitsPerByte)) + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5888
  if (!brs.is_reserved()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5889
    warning("CMS bit map allocation failure");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5890
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5891
  }
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  5892
  // For now we'll just commit all of the bit map up front.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5893
  // Later on we'll try to be more parsimonious with swap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5894
  if (!_virtual_space.initialize(brs, brs.size())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5895
    warning("CMS bit map backing store failure");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5896
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5897
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5898
  assert(_virtual_space.committed_size() == brs.size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5899
         "didn't reserve backing store for all of CMS bit map?");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  5900
  _bm.set_map((BitMap::bm_word_t*)_virtual_space.low());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5901
  assert(_virtual_space.committed_size() << (_shifter + LogBitsPerByte) >=
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5902
         _bmWordSize, "inconsistency in bit map sizing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5903
  _bm.set_size(_bmWordSize >> _shifter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5905
  // bm.clear(); // can we rely on getting zero'd memory? verify below
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5906
  assert(isAllClear(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5907
         "Expected zero'd memory from ReservedSpace constructor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5908
  assert(_bm.size() == heapWordDiffToOffsetDiff(sizeInWords()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5909
         "consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5910
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5911
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5913
void CMSBitMap::dirty_range_iterate_clear(MemRegion mr, MemRegionClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5914
  HeapWord *next_addr, *end_addr, *last_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5915
  assert_locked();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5916
  assert(covers(mr), "out-of-range error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5917
  // XXX assert that start and end are appropriately aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5918
  for (next_addr = mr.start(), end_addr = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5919
       next_addr < end_addr; next_addr = last_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5920
    MemRegion dirty_region = getAndClearMarkedRegion(next_addr, end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5921
    last_addr = dirty_region.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5922
    if (!dirty_region.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5923
      cl->do_MemRegion(dirty_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5924
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5925
      assert(last_addr == end_addr, "program logic");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5926
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5927
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5928
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5929
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5930
16685
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  5931
void CMSBitMap::print_on_error(outputStream* st, const char* prefix) const {
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  5932
  _bm.print_on_error(st, prefix);
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  5933
}
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 16681
diff changeset
  5934
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5935
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5936
void CMSBitMap::assert_locked() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5937
  CMSLockVerifier::assert_locked(lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5938
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5940
bool CMSBitMap::covers(MemRegion mr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5941
  // assert(_bm.map() == _virtual_space.low(), "map inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5942
  assert((size_t)_bm.size() == (_bmWordSize >> _shifter),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5943
         "size inconsistency");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5944
  return (mr.start() >= _bmStartWord) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5945
         (mr.end()   <= endWord());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5946
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5947
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5948
bool CMSBitMap::covers(HeapWord* start, size_t size) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5949
    return (start >= _bmStartWord && (start + size) <= endWord());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5950
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5951
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5952
void CMSBitMap::verifyNoOneBitsInRange(HeapWord* left, HeapWord* right) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5953
  // verify that there are no 1 bits in the interval [left, right)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5954
  FalseBitMapClosure falseBitMapClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5955
  iterate(&falseBitMapClosure, left, right);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5956
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5958
void CMSBitMap::region_invariant(MemRegion mr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5959
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5960
  assert_locked();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5961
  // mr = mr.intersection(MemRegion(_bmStartWord, _bmWordSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5962
  assert(!mr.is_empty(), "unexpected empty region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5963
  assert(covers(mr), "mr should be covered by bit map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5964
  // convert address range into offset range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5965
  size_t start_ofs = heapWordToOffset(mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5966
  // Make sure that end() is appropriately aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5967
  assert(mr.end() == (HeapWord*)round_to((intptr_t)mr.end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5968
                        (1 << (_shifter+LogHeapWordSize))),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5969
         "Misaligned mr.end()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5970
  size_t end_ofs   = heapWordToOffset(mr.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5971
  assert(end_ofs > start_ofs, "Should mark at least one bit");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5972
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5973
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5974
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5975
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5976
bool CMSMarkStack::allocate(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5977
  // allocate a stack of the requisite depth
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5978
  ReservedSpace rs(ReservedSpace::allocation_align_size_up(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5979
                   size * sizeof(oop)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5980
  if (!rs.is_reserved()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5981
    warning("CMSMarkStack allocation failure");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5982
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5983
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5984
  if (!_virtual_space.initialize(rs, rs.size())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5985
    warning("CMSMarkStack backing store failure");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5986
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5987
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5988
  assert(_virtual_space.committed_size() == rs.size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5989
         "didn't reserve backing store for all of CMS stack?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5990
  _base = (oop*)(_virtual_space.low());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5991
  _index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5992
  _capacity = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5993
  NOT_PRODUCT(_max_depth = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5994
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5995
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5997
// XXX FIX ME !!! In the MT case we come in here holding a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5998
// leaf lock. For printing we need to take a further lock
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  5999
// which has lower rank. We need to recalibrate the two
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  6000
// lock-ranks involved in order to be able to print the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6001
// messages below. (Or defer the printing to the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6002
// For now we take the expedient path of just disabling the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6003
// messages for the problematic case.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6004
void CMSMarkStack::expand() {
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
  6005
  assert(_capacity <= MarkStackSizeMax, "stack bigger than permitted");
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
  6006
  if (_capacity == MarkStackSizeMax) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6007
    if (_hit_limit++ == 0 && !CMSConcurrentMTEnabled && PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6008
      // We print a warning message only once per CMS cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6009
      gclog_or_tty->print_cr(" (benign) Hit CMSMarkStack max size limit");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6010
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6011
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6012
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6013
  // Double capacity if possible
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4738
diff changeset
  6014
  size_t new_capacity = MIN2(_capacity*2, MarkStackSizeMax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6015
  // Do not give up existing stack until we have managed to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6016
  // get the double capacity that we desired.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6017
  ReservedSpace rs(ReservedSpace::allocation_align_size_up(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6018
                   new_capacity * sizeof(oop)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6019
  if (rs.is_reserved()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6020
    // Release the backing store associated with old stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6021
    _virtual_space.release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6022
    // Reinitialize virtual space for new stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6023
    if (!_virtual_space.initialize(rs, rs.size())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6024
      fatal("Not enough swap for expanded marking stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6025
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6026
    _base = (oop*)(_virtual_space.low());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6027
    _index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6028
    _capacity = new_capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6029
  } else if (_failed_double++ == 0 && !CMSConcurrentMTEnabled && PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6030
    // Failed to double capacity, continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6031
    // we print a detail message only once per CMS cycle.
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  6032
    gclog_or_tty->print(" (benign) Failed to expand marking stack from " SIZE_FORMAT "K to "
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  6033
            SIZE_FORMAT "K",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6034
            _capacity / K, new_capacity / K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6035
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6036
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6039
// Closures
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6040
// XXX: there seems to be a lot of code  duplication here;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6041
// should refactor and consolidate common code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6043
// This closure is used to mark refs into the CMS generation in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6044
// the CMS bit map. Called at the first checkpoint. This closure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6045
// assumes that we do not need to re-mark dirty cards; if the CMS
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6046
// generation on which this is used is not an oldest
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6047
// generation then this will lose younger_gen cards!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6049
MarkRefsIntoClosure::MarkRefsIntoClosure(
3913
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  6050
  MemRegion span, CMSBitMap* bitMap):
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6051
    _span(span),
3913
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  6052
    _bitMap(bitMap)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6053
{
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6054
  assert(ref_processor() == NULL, "deliberately left NULL");
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6055
  assert(_bitMap->covers(_span), "_bitMap/_span mismatch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6056
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6057
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6058
void MarkRefsIntoClosure::do_oop(oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6059
  // if p points into _span, then mark corresponding bit in _markBitMap
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6060
  assert(obj->is_oop(), "expected an oop");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6061
  HeapWord* addr = (HeapWord*)obj;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6062
  if (_span.contains(addr)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6063
    // this should be made more efficient
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6064
    _bitMap->mark(addr);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6065
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6066
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6067
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6068
void MarkRefsIntoClosure::do_oop(oop* p)       { MarkRefsIntoClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6069
void MarkRefsIntoClosure::do_oop(narrowOop* p) { MarkRefsIntoClosure::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6070
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6071
Par_MarkRefsIntoClosure::Par_MarkRefsIntoClosure(
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6072
  MemRegion span, CMSBitMap* bitMap):
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6073
    _span(span),
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6074
    _bitMap(bitMap)
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6075
{
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6076
  assert(ref_processor() == NULL, "deliberately left NULL");
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6077
  assert(_bitMap->covers(_span), "_bitMap/_span mismatch");
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6078
}
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6079
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6080
void Par_MarkRefsIntoClosure::do_oop(oop obj) {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6081
  // if p points into _span, then mark corresponding bit in _markBitMap
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6082
  assert(obj->is_oop(), "expected an oop");
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6083
  HeapWord* addr = (HeapWord*)obj;
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6084
  if (_span.contains(addr)) {
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6085
    // this should be made more efficient
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6086
    _bitMap->par_mark(addr);
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6087
  }
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6088
}
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6089
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6090
void Par_MarkRefsIntoClosure::do_oop(oop* p)       { Par_MarkRefsIntoClosure::do_oop_work(p); }
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6091
void Par_MarkRefsIntoClosure::do_oop(narrowOop* p) { Par_MarkRefsIntoClosure::do_oop_work(p); }
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18994
diff changeset
  6092
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6093
// A variant of the above, used for CMS marking verification.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6094
MarkRefsIntoVerifyClosure::MarkRefsIntoVerifyClosure(
3913
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  6095
  MemRegion span, CMSBitMap* verification_bm, CMSBitMap* cms_bm):
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6096
    _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6097
    _verification_bm(verification_bm),
3913
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  6098
    _cms_bm(cms_bm)
e049e6b81e11 6885169: merge of 4957990 and 6863023 causes conflict on do_nmethods
jrose
parents: 3912
diff changeset
  6099
{
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6100
  assert(ref_processor() == NULL, "deliberately left NULL");
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6101
  assert(_verification_bm->covers(_span), "_verification_bm/_span mismatch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6103
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6104
void MarkRefsIntoVerifyClosure::do_oop(oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6105
  // if p points into _span, then mark corresponding bit in _markBitMap
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6106
  assert(obj->is_oop(), "expected an oop");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6107
  HeapWord* addr = (HeapWord*)obj;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6108
  if (_span.contains(addr)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6109
    _verification_bm->mark(addr);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6110
    if (!_cms_bm->isMarked(addr)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6111
      oop(addr)->print();
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  6112
      gclog_or_tty->print_cr(" (" INTPTR_FORMAT " should have been marked)", p2i(addr));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6113
      fatal("... aborting");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6114
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6115
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6116
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6117
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6118
void MarkRefsIntoVerifyClosure::do_oop(oop* p)       { MarkRefsIntoVerifyClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6119
void MarkRefsIntoVerifyClosure::do_oop(narrowOop* p) { MarkRefsIntoVerifyClosure::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6121
//////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6122
// MarkRefsIntoAndScanClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6123
//////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6125
MarkRefsIntoAndScanClosure::MarkRefsIntoAndScanClosure(MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6126
                                                       ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6127
                                                       CMSBitMap* bit_map,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6128
                                                       CMSBitMap* mod_union_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6129
                                                       CMSMarkStack*  mark_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6130
                                                       CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6131
                                                       bool should_yield,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6132
                                                       bool concurrent_precleaning):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6133
  _collector(collector),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6134
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6135
  _bit_map(bit_map),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6136
  _mark_stack(mark_stack),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6137
  _pushAndMarkClosure(collector, span, rp, bit_map, mod_union_table,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6138
                      mark_stack, concurrent_precleaning),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6139
  _yield(should_yield),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6140
  _concurrent_precleaning(concurrent_precleaning),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6141
  _freelistLock(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6142
{
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6143
  // FIXME: Should initialize in base class constructor.
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6144
  assert(rp != NULL, "ref_processor shouldn't be NULL");
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6145
  set_ref_processor_internal(rp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6148
// This closure is used to mark refs into the CMS generation at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6149
// second (final) checkpoint, and to scan and transitively follow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6150
// the unmarked oops. It is also used during the concurrent precleaning
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6151
// phase while scanning objects on dirty cards in the CMS generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6152
// The marks are made in the marking bit map and the marking stack is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6153
// used for keeping the (newly) grey objects during the scan.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6154
// The parallel version (Par_...) appears further below.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6155
void MarkRefsIntoAndScanClosure::do_oop(oop obj) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6156
  if (obj != NULL) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6157
    assert(obj->is_oop(), "expected an oop");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6158
    HeapWord* addr = (HeapWord*)obj;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6159
    assert(_mark_stack->isEmpty(), "pre-condition (eager drainage)");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6160
    assert(_collector->overflow_list_is_empty(),
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6161
           "overflow list should be empty");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6162
    if (_span.contains(addr) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6163
        !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6164
      // mark bit map (object is now grey)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6165
      _bit_map->mark(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6166
      // push on marking stack (stack should be empty), and drain the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6167
      // stack by applying this closure to the oops in the oops popped
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6168
      // from the stack (i.e. blacken the grey objects)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6169
      bool res = _mark_stack->push(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6170
      assert(res, "Should have space to push on empty stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6171
      do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6172
        oop new_oop = _mark_stack->pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6173
        assert(new_oop != NULL && new_oop->is_oop(), "Expected an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6174
        assert(_bit_map->isMarked((HeapWord*)new_oop),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6175
               "only grey objects on this stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6176
        // iterate over the oops in this oop, marking and pushing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6177
        // the ones in CMS heap (i.e. in _span).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6178
        new_oop->oop_iterate(&_pushAndMarkClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6179
        // check if it's time to yield
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6180
        do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6181
      } while (!_mark_stack->isEmpty() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6182
               (!_concurrent_precleaning && take_from_overflow_list()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6183
        // if marking stack is empty, and we are not doing this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6184
        // during precleaning, then check the overflow list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6185
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6186
    assert(_mark_stack->isEmpty(), "post-condition (eager drainage)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6187
    assert(_collector->overflow_list_is_empty(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6188
           "overflow list was drained above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6189
    // We could restore evacuated mark words, if any, used for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6190
    // overflow list links here because the overflow list is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6191
    // provably empty here. That would reduce the maximum
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6192
    // size requirements for preserved_{oop,mark}_stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6193
    // But we'll just postpone it until we are all done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6194
    // so we can just stream through.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6195
    if (!_concurrent_precleaning && CMSOverflowEarlyRestoration) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6196
      _collector->restore_preserved_marks_if_any();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6197
      assert(_collector->no_preserved_marks(), "No preserved marks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6199
    assert(!CMSOverflowEarlyRestoration || _collector->no_preserved_marks(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6200
           "All preserved marks should have been restored above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6203
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6204
void MarkRefsIntoAndScanClosure::do_oop(oop* p)       { MarkRefsIntoAndScanClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6205
void MarkRefsIntoAndScanClosure::do_oop(narrowOop* p) { MarkRefsIntoAndScanClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6206
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6207
void MarkRefsIntoAndScanClosure::do_yield_work() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6208
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6209
         "CMS thread should hold CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6210
  assert_lock_strong(_freelistLock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6211
  assert_lock_strong(_bit_map->lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6212
  // relinquish the free_list_lock and bitMaplock()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6213
  _bit_map->lock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6214
  _freelistLock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6215
  ConcurrentMarkSweepThread::desynchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6216
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6217
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6218
    _collector->incrementYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6220
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6221
  // See the comment in coordinator_yield()
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6222
  for (unsigned i = 0;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6223
       i < CMSYieldSleepCount &&
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6224
       ConcurrentMarkSweepThread::should_yield() &&
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6225
       !CMSCollector::foregroundGCIsActive();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6226
       ++i) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6227
    os::sleep(Thread::current(), 1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6228
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6230
  ConcurrentMarkSweepThread::synchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6231
  _freelistLock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6232
  _bit_map->lock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6233
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6236
///////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6237
// Par_MarkRefsIntoAndScanClosure: a parallel version of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6238
//                                 MarkRefsIntoAndScanClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6239
///////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6240
Par_MarkRefsIntoAndScanClosure::Par_MarkRefsIntoAndScanClosure(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6241
  CMSCollector* collector, MemRegion span, ReferenceProcessor* rp,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6242
  CMSBitMap* bit_map, OopTaskQueue* work_queue):
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6243
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6244
  _bit_map(bit_map),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6245
  _work_queue(work_queue),
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30881
diff changeset
  6246
  _low_water_mark(MIN2((work_queue->max_elems()/4),
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30881
diff changeset
  6247
                       ((uint)CMSWorkQueueDrainThreshold * ParallelGCThreads))),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6248
  _par_pushAndMarkClosure(collector, span, rp, bit_map, work_queue)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6249
{
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6250
  // FIXME: Should initialize in base class constructor.
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6251
  assert(rp != NULL, "ref_processor shouldn't be NULL");
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  6252
  set_ref_processor_internal(rp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6254
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6255
// This closure is used to mark refs into the CMS generation at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6256
// second (final) checkpoint, and to scan and transitively follow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6257
// the unmarked oops. The marks are made in the marking bit map and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6258
// the work_queue is used for keeping the (newly) grey objects during
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6259
// the scan phase whence they are also available for stealing by parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6260
// threads. Since the marking bit map is shared, updates are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6261
// synchronized (via CAS).
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6262
void Par_MarkRefsIntoAndScanClosure::do_oop(oop obj) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6263
  if (obj != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6264
    // Ignore mark word because this could be an already marked oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6265
    // that may be chained at the end of the overflow list.
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  6266
    assert(obj->is_oop(true), "expected an oop");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6267
    HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6268
    if (_span.contains(addr) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6269
        !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6270
      // mark bit map (object will become grey):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6271
      // It is possible for several threads to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6272
      // trying to "claim" this object concurrently;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6273
      // the unique thread that succeeds in marking the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6274
      // object first will do the subsequent push on
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6275
      // to the work queue (or overflow list).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6276
      if (_bit_map->par_mark(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6277
        // push on work_queue (which may not be empty), and trim the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6278
        // queue to an appropriate length by applying this closure to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6279
        // the oops in the oops popped from the stack (i.e. blacken the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6280
        // grey objects)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6281
        bool res = _work_queue->push(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6282
        assert(res, "Low water mark should be less than capacity?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6283
        trim_queue(_low_water_mark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6284
      } // Else, another thread claimed the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6285
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6288
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6289
void Par_MarkRefsIntoAndScanClosure::do_oop(oop* p)       { Par_MarkRefsIntoAndScanClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6290
void Par_MarkRefsIntoAndScanClosure::do_oop(narrowOop* p) { Par_MarkRefsIntoAndScanClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6291
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6292
// This closure is used to rescan the marked objects on the dirty cards
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6293
// in the mod union table and the card table proper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6294
size_t ScanMarkedObjectsAgainCarefullyClosure::do_object_careful_m(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6295
  oop p, MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6296
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6297
  size_t size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6298
  HeapWord* addr = (HeapWord*)p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6299
  DEBUG_ONLY(_collector->verify_work_stacks_empty();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6300
  assert(_span.contains(addr), "we are scanning the CMS generation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6301
  // check if it's time to yield
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6302
  if (do_yield_check()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6303
    // We yielded for some foreground stop-world work,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6304
    // and we have been asked to abort this ongoing preclean cycle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6305
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6306
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6307
  if (_bitMap->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6308
    // it's marked; is it potentially uninitialized?
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  6309
    if (p->klass_or_null() != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6310
        // an initialized object; ignore mark word in verification below
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6311
        // since we are running concurrent with mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6312
        assert(p->is_oop(true), "should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6313
        if (p->is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6314
          // objArrays are precisely marked; restrict scanning
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6315
          // to dirty cards only.
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  6316
          size = CompactibleFreeListSpace::adjustObjectSize(
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 32368
diff changeset
  6317
                   p->oop_iterate_size(_scanningClosure, mr));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6318
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6319
          // A non-array may have been imprecisely marked; we need
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6320
          // to scan object in its entirety.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6321
          size = CompactibleFreeListSpace::adjustObjectSize(
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 32368
diff changeset
  6322
                   p->oop_iterate_size(_scanningClosure));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6323
        }
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 16685
diff changeset
  6324
        #ifdef ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6325
          size_t direct_size =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6326
            CompactibleFreeListSpace::adjustObjectSize(p->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6327
          assert(size == direct_size, "Inconsistency in size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6328
          assert(size >= 3, "Necessary for Printezis marks to work");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6329
          if (!_bitMap->isMarked(addr+1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6330
            _bitMap->verifyNoOneBitsInRange(addr+2, addr+size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6331
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6332
            _bitMap->verifyNoOneBitsInRange(addr+2, addr+size-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6333
            assert(_bitMap->isMarked(addr+size-1),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6334
                   "inconsistent Printezis mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6335
          }
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 16685
diff changeset
  6336
        #endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6337
    } else {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  6338
      // An uninitialized object.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6339
      assert(_bitMap->isMarked(addr+1), "missing Printezis mark?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6340
      HeapWord* nextOneAddr = _bitMap->getNextMarkedWordAddress(addr + 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6341
      size = pointer_delta(nextOneAddr + 1, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6342
      assert(size == CompactibleFreeListSpace::adjustObjectSize(size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6343
             "alignment problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6344
      // Note that pre-cleaning needn't redirty the card. OopDesc::set_klass()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6345
      // will dirty the card when the klass pointer is installed in the
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  6346
      // object (signaling the completion of initialization).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6347
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6348
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6349
    // Either a not yet marked object or an uninitialized object
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6350
    if (p->klass_or_null() == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6351
      // An uninitialized object, skip to the next card, since
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6352
      // we may not be able to read its P-bits yet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6353
      assert(size == 0, "Initial value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6354
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6355
      // An object not (yet) reached by marking: we merely need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6356
      // compute its size so as to go look at the next block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6357
      assert(p->is_oop(true), "should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6358
      size = CompactibleFreeListSpace::adjustObjectSize(p->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6359
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6361
  DEBUG_ONLY(_collector->verify_work_stacks_empty();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6362
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6365
void ScanMarkedObjectsAgainCarefullyClosure::do_yield_work() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6366
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6367
         "CMS thread should hold CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6368
  assert_lock_strong(_freelistLock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6369
  assert_lock_strong(_bitMap->lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6370
  // relinquish the free_list_lock and bitMaplock()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6371
  _bitMap->lock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6372
  _freelistLock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6373
  ConcurrentMarkSweepThread::desynchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6374
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6375
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6376
    _collector->incrementYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6379
  // See the comment in coordinator_yield()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6380
  for (unsigned i = 0; i < CMSYieldSleepCount &&
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6381
                   ConcurrentMarkSweepThread::should_yield() &&
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6382
                   !CMSCollector::foregroundGCIsActive(); ++i) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6383
    os::sleep(Thread::current(), 1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6384
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6386
  ConcurrentMarkSweepThread::synchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6387
  _freelistLock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6388
  _bitMap->lock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6389
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6393
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6394
// SurvivorSpacePrecleanClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6395
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6396
// This (single-threaded) closure is used to preclean the oops in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6397
// the survivor spaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6398
size_t SurvivorSpacePrecleanClosure::do_object_careful(oop p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6400
  HeapWord* addr = (HeapWord*)p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6401
  DEBUG_ONLY(_collector->verify_work_stacks_empty();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6402
  assert(!_span.contains(addr), "we are scanning the survivor spaces");
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22551
diff changeset
  6403
  assert(p->klass_or_null() != NULL, "object should be initialized");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6404
  // an initialized object; ignore mark word in verification below
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6405
  // since we are running concurrent with mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6406
  assert(p->is_oop(true), "should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6407
  // Note that we do not yield while we iterate over
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6408
  // the interior oops of p, pushing the relevant ones
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6409
  // on our marking stack.
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 32368
diff changeset
  6410
  size_t size = p->oop_iterate_size(_scanning_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6411
  do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6412
  // Observe that below, we do not abandon the preclean
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6413
  // phase as soon as we should; rather we empty the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6414
  // marking stack before returning. This is to satisfy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6415
  // some existing assertions. In general, it may be a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6416
  // good idea to abort immediately and complete the marking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6417
  // from the grey objects at a later time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6418
  while (!_mark_stack->isEmpty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6419
    oop new_oop = _mark_stack->pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6420
    assert(new_oop != NULL && new_oop->is_oop(), "Expected an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6421
    assert(_bit_map->isMarked((HeapWord*)new_oop),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6422
           "only grey objects on this stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6423
    // iterate over the oops in this oop, marking and pushing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6424
    // the ones in CMS heap (i.e. in _span).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6425
    new_oop->oop_iterate(_scanning_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6426
    // check if it's time to yield
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6427
    do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6428
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6429
  unsigned int after_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6430
    GenCollectedHeap::heap()->total_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6431
  bool abort = (_before_count != after_count) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6432
               _collector->should_abort_preclean();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6433
  return abort ? 0 : size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6434
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6435
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6436
void SurvivorSpacePrecleanClosure::do_yield_work() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6437
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6438
         "CMS thread should hold CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6439
  assert_lock_strong(_bit_map->lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6440
  // Relinquish the bit map lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6441
  _bit_map->lock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6442
  ConcurrentMarkSweepThread::desynchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6443
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6444
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6445
    _collector->incrementYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6446
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6447
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6448
  // See the comment in coordinator_yield()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6449
  for (unsigned i = 0; i < CMSYieldSleepCount &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6450
                       ConcurrentMarkSweepThread::should_yield() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6451
                       !CMSCollector::foregroundGCIsActive(); ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6452
    os::sleep(Thread::current(), 1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6453
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6454
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6455
  ConcurrentMarkSweepThread::synchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6456
  _bit_map->lock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6457
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6458
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6460
// This closure is used to rescan the marked objects on the dirty cards
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6461
// in the mod union table and the card table proper. In the parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6462
// case, although the bitMap is shared, we do a single read so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6463
// isMarked() query is "safe".
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6464
bool ScanMarkedObjectsAgainClosure::do_object_bm(oop p, MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6465
  // Ignore mark word because we are running concurrent with mutators
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  6466
  assert(p->is_oop_or_null(true), "Expected an oop or NULL at " PTR_FORMAT, p2i(p));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6467
  HeapWord* addr = (HeapWord*)p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6468
  assert(_span.contains(addr), "we are scanning the CMS generation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6469
  bool is_obj_array = false;
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 16685
diff changeset
  6470
  #ifdef ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6471
    if (!_parallel) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6472
      assert(_mark_stack->isEmpty(), "pre-condition (eager drainage)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6473
      assert(_collector->overflow_list_is_empty(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6474
             "overflow list should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6476
    }
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 16685
diff changeset
  6477
  #endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6478
  if (_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6479
    // Obj arrays are precisely marked, non-arrays are not;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6480
    // so we scan objArrays precisely and non-arrays in their
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6481
    // entirety.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6482
    if (p->is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6483
      is_obj_array = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6484
      if (_parallel) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6485
        p->oop_iterate(_par_scan_closure, mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6486
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6487
        p->oop_iterate(_scan_closure, mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6488
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6489
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6490
      if (_parallel) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6491
        p->oop_iterate(_par_scan_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6492
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6493
        p->oop_iterate(_scan_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6494
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6495
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6496
  }
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 16685
diff changeset
  6497
  #ifdef ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6498
    if (!_parallel) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6499
      assert(_mark_stack->isEmpty(), "post-condition (eager drainage)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6500
      assert(_collector->overflow_list_is_empty(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6501
             "overflow list should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6502
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6503
    }
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 16685
diff changeset
  6504
  #endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6505
  return is_obj_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6506
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6507
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6508
MarkFromRootsClosure::MarkFromRootsClosure(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6509
                        MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6510
                        CMSBitMap* bitMap, CMSMarkStack*  markStack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6511
                        bool should_yield, bool verifying):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6512
  _collector(collector),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6513
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6514
  _bitMap(bitMap),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6515
  _mut(&collector->_modUnionTable),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6516
  _markStack(markStack),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6517
  _yield(should_yield),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6518
  _skipBits(0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6519
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6520
  assert(_markStack->isEmpty(), "stack should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6521
  _finger = _bitMap->startWord();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6522
  _threshold = _finger;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6523
  assert(_collector->_restart_addr == NULL, "Sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6524
  assert(_span.contains(_finger), "Out of bounds _finger?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6525
  DEBUG_ONLY(_verifying = verifying;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6526
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6527
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6528
void MarkFromRootsClosure::reset(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6529
  assert(_markStack->isEmpty(), "would cause duplicates on stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6530
  assert(_span.contains(addr), "Out of bounds _finger?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6531
  _finger = addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6532
  _threshold = (HeapWord*)round_to(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6533
                 (intptr_t)_finger, CardTableModRefBS::card_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6534
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6536
// Should revisit to see if this should be restructured for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6537
// greater efficiency.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6538
bool MarkFromRootsClosure::do_bit(size_t offset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6539
  if (_skipBits > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6540
    _skipBits--;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6541
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6543
  // convert offset into a HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6544
  HeapWord* addr = _bitMap->startWord() + offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6545
  assert(_bitMap->endWord() && addr < _bitMap->endWord(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6546
         "address out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6547
  assert(_bitMap->isMarked(addr), "tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6548
  if (_bitMap->isMarked(addr+1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6549
    // this is an allocated but not yet initialized object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6550
    assert(_skipBits == 0, "tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6551
    _skipBits = 2;  // skip next two marked bits ("Printezis-marks")
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6552
    oop p = oop(addr);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6553
    if (p->klass_or_null() == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6554
      DEBUG_ONLY(if (!_verifying) {)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6555
        // We re-dirty the cards on which this object lies and increase
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6556
        // the _threshold so that we'll come back to scan this object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6557
        // during the preclean or remark phase. (CMSCleanOnEnter)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6558
        if (CMSCleanOnEnter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6559
          size_t sz = _collector->block_size_using_printezis_bits(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6560
          HeapWord* end_card_addr   = (HeapWord*)round_to(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6561
                                         (intptr_t)(addr+sz), CardTableModRefBS::card_size);
991
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  6562
          MemRegion redirty_range = MemRegion(addr, end_card_addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6563
          assert(!redirty_range.is_empty(), "Arithmetical tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6564
          // Bump _threshold to end_card_addr; note that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6565
          // _threshold cannot possibly exceed end_card_addr, anyhow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6566
          // This prevents future clearing of the card as the scan proceeds
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6567
          // to the right.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6568
          assert(_threshold <= end_card_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6569
                 "Because we are just scanning into this object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6570
          if (_threshold < end_card_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6571
            _threshold = end_card_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6572
          }
613
2aa2b913106c 6687581: Make CMS work with compressed oops
coleenp
parents: 390
diff changeset
  6573
          if (p->klass_or_null() != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6574
            // Redirty the range of cards...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6575
            _mut->mark_range(redirty_range);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6576
          } // ...else the setting of klass will dirty the card anyway.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6577
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6578
      DEBUG_ONLY(})
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6579
      return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6580
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6581
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6582
  scanOopsInOop(addr);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6583
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6586
// We take a break if we've been at this for a while,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6587
// so as to avoid monopolizing the locks involved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6588
void MarkFromRootsClosure::do_yield_work() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6589
  // First give up the locks, then yield, then re-lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6590
  // We should probably use a constructor/destructor idiom to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6591
  // do this unlock/lock or modify the MutexUnlocker class to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6592
  // serve our purpose. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6593
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6594
         "CMS thread should hold CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6595
  assert_lock_strong(_bitMap->lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6596
  _bitMap->lock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6597
  ConcurrentMarkSweepThread::desynchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6598
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6599
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6600
    _collector->incrementYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6601
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6603
  // See the comment in coordinator_yield()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6604
  for (unsigned i = 0; i < CMSYieldSleepCount &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6605
                       ConcurrentMarkSweepThread::should_yield() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6606
                       !CMSCollector::foregroundGCIsActive(); ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6607
    os::sleep(Thread::current(), 1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6608
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6610
  ConcurrentMarkSweepThread::synchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6611
  _bitMap->lock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6612
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6613
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6615
void MarkFromRootsClosure::scanOopsInOop(HeapWord* ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6616
  assert(_bitMap->isMarked(ptr), "expected bit to be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6617
  assert(_markStack->isEmpty(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6618
         "should drain stack to limit stack usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6619
  // convert ptr to an oop preparatory to scanning
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6620
  oop obj = oop(ptr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6621
  // Ignore mark word in verification below, since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6622
  // may be running concurrent with mutators.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6623
  assert(obj->is_oop(true), "should be an oop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6624
  assert(_finger <= ptr, "_finger runneth ahead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6625
  // advance the finger to right end of this object
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6626
  _finger = ptr + obj->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6627
  assert(_finger > ptr, "we just incremented it above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6628
  // On large heaps, it may take us some time to get through
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27252
diff changeset
  6629
  // the marking phase. During
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6630
  // this time it's possible that a lot of mutations have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6631
  // accumulated in the card table and the mod union table --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6632
  // these mutation records are redundant until we have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6633
  // actually traced into the corresponding card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6634
  // Here, we check whether advancing the finger would make
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6635
  // us cross into a new card, and if so clear corresponding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6636
  // cards in the MUT (preclean them in the card-table in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6637
  // future).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6638
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6639
  DEBUG_ONLY(if (!_verifying) {)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6640
    // The clean-on-enter optimization is disabled by default,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6641
    // until we fix 6178663.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6642
    if (CMSCleanOnEnter && (_finger > _threshold)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6643
      // [_threshold, _finger) represents the interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6644
      // of cards to be cleared  in MUT (or precleaned in card table).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6645
      // The set of cards to be cleared is all those that overlap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6646
      // with the interval [_threshold, _finger); note that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6647
      // _threshold is always kept card-aligned but _finger isn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6648
      // always card-aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6649
      HeapWord* old_threshold = _threshold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6650
      assert(old_threshold == (HeapWord*)round_to(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6651
              (intptr_t)old_threshold, CardTableModRefBS::card_size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6652
             "_threshold should always be card-aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6653
      _threshold = (HeapWord*)round_to(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6654
                     (intptr_t)_finger, CardTableModRefBS::card_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6655
      MemRegion mr(old_threshold, _threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6656
      assert(!mr.is_empty(), "Control point invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6657
      assert(_span.contains(mr), "Should clear within span");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6658
      _mut->clear_range(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6659
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6660
  DEBUG_ONLY(})
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6661
  // Note: the finger doesn't advance while we drain
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6662
  // the stack below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6663
  PushOrMarkClosure pushOrMarkClosure(_collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6664
                                      _span, _bitMap, _markStack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6665
                                      _finger, this);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6666
  bool res = _markStack->push(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6667
  assert(res, "Empty non-zero size stack should have space for single push");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6668
  while (!_markStack->isEmpty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6669
    oop new_oop = _markStack->pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6670
    // Skip verifying header mark word below because we are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6671
    // running concurrent with mutators.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6672
    assert(new_oop->is_oop(true), "Oops! expected to pop an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6673
    // now scan this oop's oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6674
    new_oop->oop_iterate(&pushOrMarkClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6675
    do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6676
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6677
  assert(_markStack->isEmpty(), "tautology, emphasizing post-condition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6678
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6680
Par_MarkFromRootsClosure::Par_MarkFromRootsClosure(CMSConcMarkingTask* task,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6681
                       CMSCollector* collector, MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6682
                       CMSBitMap* bit_map,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6683
                       OopTaskQueue* work_queue,
27686
f91c482793e6 8064702: Remove the CMS foreground collector
brutisso
parents: 27625
diff changeset
  6684
                       CMSMarkStack*  overflow_stack):
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6685
  _collector(collector),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6686
  _whole_span(collector->_span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6687
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6688
  _bit_map(bit_map),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6689
  _mut(&collector->_modUnionTable),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6690
  _work_queue(work_queue),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6691
  _overflow_stack(overflow_stack),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6692
  _skip_bits(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6693
  _task(task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6694
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6695
  assert(_work_queue->size() == 0, "work_queue should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6696
  _finger = span.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6697
  _threshold = _finger;     // XXX Defer clear-on-enter optimization for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6698
  assert(_span.contains(_finger), "Out of bounds _finger?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6699
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6700
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6701
// Should revisit to see if this should be restructured for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6702
// greater efficiency.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6703
bool Par_MarkFromRootsClosure::do_bit(size_t offset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6704
  if (_skip_bits > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6705
    _skip_bits--;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6706
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6707
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6708
  // convert offset into a HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6709
  HeapWord* addr = _bit_map->startWord() + offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6710
  assert(_bit_map->endWord() && addr < _bit_map->endWord(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6711
         "address out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6712
  assert(_bit_map->isMarked(addr), "tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6713
  if (_bit_map->isMarked(addr+1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6714
    // this is an allocated object that might not yet be initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6715
    assert(_skip_bits == 0, "tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6716
    _skip_bits = 2;  // skip next two marked bits ("Printezis-marks")
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6717
    oop p = oop(addr);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6718
    if (p->klass_or_null() == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6719
      // in the case of Clean-on-Enter optimization, redirty card
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6720
      // and avoid clearing card by increasing  the threshold.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6721
      return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6722
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6723
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6724
  scan_oops_in_oop(addr);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6725
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6727
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6728
void Par_MarkFromRootsClosure::scan_oops_in_oop(HeapWord* ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6729
  assert(_bit_map->isMarked(ptr), "expected bit to be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6730
  // Should we assert that our work queue is empty or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6731
  // below some drain limit?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6732
  assert(_work_queue->size() == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6733
         "should drain stack to limit stack usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6734
  // convert ptr to an oop preparatory to scanning
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6735
  oop obj = oop(ptr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6736
  // Ignore mark word in verification below, since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6737
  // may be running concurrent with mutators.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6738
  assert(obj->is_oop(true), "should be an oop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6739
  assert(_finger <= ptr, "_finger runneth ahead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6740
  // advance the finger to right end of this object
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6741
  _finger = ptr + obj->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6742
  assert(_finger > ptr, "we just incremented it above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6743
  // On large heaps, it may take us some time to get through
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27252
diff changeset
  6744
  // the marking phase. During
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6745
  // this time it's possible that a lot of mutations have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6746
  // accumulated in the card table and the mod union table --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6747
  // these mutation records are redundant until we have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6748
  // actually traced into the corresponding card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6749
  // Here, we check whether advancing the finger would make
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6750
  // us cross into a new card, and if so clear corresponding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6751
  // cards in the MUT (preclean them in the card-table in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6752
  // future).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6753
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6754
  // The clean-on-enter optimization is disabled by default,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6755
  // until we fix 6178663.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6756
  if (CMSCleanOnEnter && (_finger > _threshold)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6757
    // [_threshold, _finger) represents the interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6758
    // of cards to be cleared  in MUT (or precleaned in card table).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6759
    // The set of cards to be cleared is all those that overlap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6760
    // with the interval [_threshold, _finger); note that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6761
    // _threshold is always kept card-aligned but _finger isn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6762
    // always card-aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6763
    HeapWord* old_threshold = _threshold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6764
    assert(old_threshold == (HeapWord*)round_to(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6765
            (intptr_t)old_threshold, CardTableModRefBS::card_size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6766
           "_threshold should always be card-aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6767
    _threshold = (HeapWord*)round_to(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6768
                   (intptr_t)_finger, CardTableModRefBS::card_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6769
    MemRegion mr(old_threshold, _threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6770
    assert(!mr.is_empty(), "Control point invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6771
    assert(_span.contains(mr), "Should clear within span"); // _whole_span ??
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6772
    _mut->clear_range(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6773
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6774
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6775
  // Note: the local finger doesn't advance while we drain
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6776
  // the stack below, but the global finger sure can and will.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6777
  HeapWord** gfa = _task->global_finger_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6778
  Par_PushOrMarkClosure pushOrMarkClosure(_collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6779
                                      _span, _bit_map,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6780
                                      _work_queue,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6781
                                      _overflow_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6782
                                      _finger,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6783
                                      gfa, this);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6784
  bool res = _work_queue->push(obj);   // overflow could occur here
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6785
  assert(res, "Will hold once we use workqueues");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6786
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6787
    oop new_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6788
    if (!_work_queue->pop_local(new_oop)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6789
      // We emptied our work_queue; check if there's stuff that can
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6790
      // be gotten from the overflow stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6791
      if (CMSConcMarkingTask::get_work_from_overflow_stack(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6792
            _overflow_stack, _work_queue)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6793
        do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6794
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6795
      } else {  // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6796
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6797
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6798
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6799
    // Skip verifying header mark word below because we are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6800
    // running concurrent with mutators.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6801
    assert(new_oop->is_oop(true), "Oops! expected to pop an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6802
    // now scan this oop's oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6803
    new_oop->oop_iterate(&pushOrMarkClosure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6804
    do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6805
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6806
  assert(_work_queue->size() == 0, "tautology, emphasizing post-condition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6807
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6808
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6809
// Yield in response to a request from VM Thread or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6810
// from mutators.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6811
void Par_MarkFromRootsClosure::do_yield_work() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6812
  assert(_task != NULL, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6813
  _task->yield();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6814
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6815
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6816
// A variant of the above used for verifying CMS marking work.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6817
MarkFromRootsVerifyClosure::MarkFromRootsVerifyClosure(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6818
                        MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6819
                        CMSBitMap* verification_bm, CMSBitMap* cms_bm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6820
                        CMSMarkStack*  mark_stack):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6821
  _collector(collector),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6822
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6823
  _verification_bm(verification_bm),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6824
  _cms_bm(cms_bm),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6825
  _mark_stack(mark_stack),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6826
  _pam_verify_closure(collector, span, verification_bm, cms_bm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6827
                      mark_stack)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6828
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6829
  assert(_mark_stack->isEmpty(), "stack should be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6830
  _finger = _verification_bm->startWord();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6831
  assert(_collector->_restart_addr == NULL, "Sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6832
  assert(_span.contains(_finger), "Out of bounds _finger?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6833
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6834
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6835
void MarkFromRootsVerifyClosure::reset(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6836
  assert(_mark_stack->isEmpty(), "would cause duplicates on stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6837
  assert(_span.contains(addr), "Out of bounds _finger?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6838
  _finger = addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6839
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6841
// Should revisit to see if this should be restructured for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6842
// greater efficiency.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6843
bool MarkFromRootsVerifyClosure::do_bit(size_t offset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6844
  // convert offset into a HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6845
  HeapWord* addr = _verification_bm->startWord() + offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6846
  assert(_verification_bm->endWord() && addr < _verification_bm->endWord(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6847
         "address out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6848
  assert(_verification_bm->isMarked(addr), "tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6849
  assert(_cms_bm->isMarked(addr), "tautology");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6850
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6851
  assert(_mark_stack->isEmpty(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6852
         "should drain stack to limit stack usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6853
  // convert addr to an oop preparatory to scanning
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6854
  oop obj = oop(addr);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6855
  assert(obj->is_oop(), "should be an oop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6856
  assert(_finger <= addr, "_finger runneth ahead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6857
  // advance the finger to right end of this object
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6858
  _finger = addr + obj->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6859
  assert(_finger > addr, "we just incremented it above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6860
  // Note: the finger doesn't advance while we drain
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6861
  // the stack below.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6862
  bool res = _mark_stack->push(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6863
  assert(res, "Empty non-zero size stack should have space for single push");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6864
  while (!_mark_stack->isEmpty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6865
    oop new_oop = _mark_stack->pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6866
    assert(new_oop->is_oop(), "Oops! expected to pop an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6867
    // now scan this oop's oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6868
    new_oop->oop_iterate(&_pam_verify_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6869
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6870
  assert(_mark_stack->isEmpty(), "tautology, emphasizing post-condition");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  6871
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6872
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6874
PushAndMarkVerifyClosure::PushAndMarkVerifyClosure(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6875
  CMSCollector* collector, MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6876
  CMSBitMap* verification_bm, CMSBitMap* cms_bm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6877
  CMSMarkStack*  mark_stack):
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  6878
  MetadataAwareOopClosure(collector->ref_processor()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6879
  _collector(collector),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6880
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6881
  _verification_bm(verification_bm),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6882
  _cms_bm(cms_bm),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6883
  _mark_stack(mark_stack)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6884
{ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6885
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6886
void PushAndMarkVerifyClosure::do_oop(oop* p)       { PushAndMarkVerifyClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6887
void PushAndMarkVerifyClosure::do_oop(narrowOop* p) { PushAndMarkVerifyClosure::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6888
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6889
// Upon stack overflow, we discard (part of) the stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6890
// remembering the least address amongst those discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6891
// in CMSCollector's _restart_address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6892
void PushAndMarkVerifyClosure::handle_stack_overflow(HeapWord* lost) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6893
  // Remember the least grey address discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6894
  HeapWord* ra = (HeapWord*)_mark_stack->least_value(lost);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6895
  _collector->lower_restart_addr(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6896
  _mark_stack->reset();  // discard stack contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6897
  _mark_stack->expand(); // expand the stack if possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6898
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6899
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6900
void PushAndMarkVerifyClosure::do_oop(oop obj) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  6901
  assert(obj->is_oop_or_null(), "Expected an oop or NULL at " PTR_FORMAT, p2i(obj));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6902
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6903
  if (_span.contains(addr) && !_verification_bm->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6904
    // Oop lies in _span and isn't yet grey or black
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6905
    _verification_bm->mark(addr);            // now grey
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6906
    if (!_cms_bm->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6907
      oop(addr)->print();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6908
      gclog_or_tty->print_cr(" (" INTPTR_FORMAT " should have been marked)",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  6909
                             p2i(addr));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6910
      fatal("... aborting");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6911
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6912
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6913
    if (!_mark_stack->push(obj)) { // stack overflow
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6914
      if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6915
        gclog_or_tty->print_cr("CMS marking stack overflow (benign) at "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6916
                               SIZE_FORMAT, _mark_stack->capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6917
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6918
      assert(_mark_stack->isFull(), "Else push should have succeeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6919
      handle_stack_overflow(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6920
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6921
    // anything including and to the right of _finger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6922
    // will be scanned as we iterate over the remainder of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6923
    // bit map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6924
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6925
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6926
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6927
PushOrMarkClosure::PushOrMarkClosure(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6928
                     MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6929
                     CMSBitMap* bitMap, CMSMarkStack*  markStack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6930
                     HeapWord* finger, MarkFromRootsClosure* parent) :
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  6931
  MetadataAwareOopClosure(collector->ref_processor()),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6932
  _collector(collector),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6933
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6934
  _bitMap(bitMap),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6935
  _markStack(markStack),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6936
  _finger(finger),
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  6937
  _parent(parent)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6938
{ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6940
Par_PushOrMarkClosure::Par_PushOrMarkClosure(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6941
                     MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6942
                     CMSBitMap* bit_map,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6943
                     OopTaskQueue* work_queue,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6944
                     CMSMarkStack*  overflow_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6945
                     HeapWord* finger,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6946
                     HeapWord** global_finger_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6947
                     Par_MarkFromRootsClosure* parent) :
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  6948
  MetadataAwareOopClosure(collector->ref_processor()),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  6949
  _collector(collector),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6950
  _whole_span(collector->_span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6951
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6952
  _bit_map(bit_map),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6953
  _work_queue(work_queue),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6954
  _overflow_stack(overflow_stack),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6955
  _finger(finger),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6956
  _global_finger_addr(global_finger_addr),
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  6957
  _parent(parent)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6958
{ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6959
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  6960
// Assumes thread-safe access by callers, who are
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  6961
// responsible for mutual exclusion.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6962
void CMSCollector::lower_restart_addr(HeapWord* low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6963
  assert(_span.contains(low), "Out of bounds addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6964
  if (_restart_addr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6965
    _restart_addr = low;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6966
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6967
    _restart_addr = MIN2(_restart_addr, low);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6968
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6969
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6970
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6971
// Upon stack overflow, we discard (part of) the stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6972
// remembering the least address amongst those discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6973
// in CMSCollector's _restart_address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6974
void PushOrMarkClosure::handle_stack_overflow(HeapWord* lost) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6975
  // Remember the least grey address discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6976
  HeapWord* ra = (HeapWord*)_markStack->least_value(lost);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6977
  _collector->lower_restart_addr(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6978
  _markStack->reset();  // discard stack contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6979
  _markStack->expand(); // expand the stack if possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6980
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6981
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6982
// Upon stack overflow, we discard (part of) the stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6983
// remembering the least address amongst those discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6984
// in CMSCollector's _restart_address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6985
void Par_PushOrMarkClosure::handle_stack_overflow(HeapWord* lost) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6986
  // We need to do this under a mutex to prevent other
1372
654bcf7839bc 6722116: CMS: Incorrect overflow handling when using parallel concurrent marking
ysr
parents: 991
diff changeset
  6987
  // workers from interfering with the work done below.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6988
  MutexLockerEx ml(_overflow_stack->par_lock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6989
                   Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6990
  // Remember the least grey address discarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6991
  HeapWord* ra = (HeapWord*)_overflow_stack->least_value(lost);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6992
  _collector->lower_restart_addr(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6993
  _overflow_stack->reset();  // discard stack contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6994
  _overflow_stack->expand(); // expand the stack if possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6995
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6996
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  6997
void PushOrMarkClosure::do_oop(oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6998
  // Ignore mark word because we are running concurrent with mutators.
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  6999
  assert(obj->is_oop_or_null(true), "Expected an oop or NULL at " PTR_FORMAT, p2i(obj));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7000
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7001
  if (_span.contains(addr) && !_bitMap->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7002
    // Oop lies in _span and isn't yet grey or black
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7003
    _bitMap->mark(addr);            // now grey
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7004
    if (addr < _finger) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7005
      // the bit map iteration has already either passed, or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7006
      // sampled, this bit in the bit map; we'll need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7007
      // use the marking stack to scan this oop's oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7008
      bool simulate_overflow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7009
      NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7010
        if (CMSMarkStackOverflowALot &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7011
            _collector->simulate_overflow()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7012
          // simulate a stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7013
          simulate_overflow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7014
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7015
      )
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7016
      if (simulate_overflow || !_markStack->push(obj)) { // stack overflow
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7017
        if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7018
          gclog_or_tty->print_cr("CMS marking stack overflow (benign) at "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7019
                                 SIZE_FORMAT, _markStack->capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7020
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7021
        assert(simulate_overflow || _markStack->isFull(), "Else push should have succeeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7022
        handle_stack_overflow(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7023
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7024
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7025
    // anything including and to the right of _finger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7026
    // will be scanned as we iterate over the remainder of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7027
    // bit map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7028
    do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7029
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7030
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7031
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7032
void PushOrMarkClosure::do_oop(oop* p)       { PushOrMarkClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7033
void PushOrMarkClosure::do_oop(narrowOop* p) { PushOrMarkClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7034
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7035
void Par_PushOrMarkClosure::do_oop(oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7036
  // Ignore mark word because we are running concurrent with mutators.
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7037
  assert(obj->is_oop_or_null(true), "Expected an oop or NULL at " PTR_FORMAT, p2i(obj));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7038
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7039
  if (_whole_span.contains(addr) && !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7040
    // Oop lies in _span and isn't yet grey or black
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7041
    // We read the global_finger (volatile read) strictly after marking oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7042
    bool res = _bit_map->par_mark(addr);    // now grey
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7043
    volatile HeapWord** gfa = (volatile HeapWord**)_global_finger_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7044
    // Should we push this marked oop on our stack?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7045
    // -- if someone else marked it, nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7046
    // -- if target oop is above global finger nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7047
    // -- if target oop is in chunk and above local finger
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7048
    //      then nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7049
    // -- else push on work queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7050
    if (   !res       // someone else marked it, they will deal with it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7051
        || (addr >= *gfa)  // will be scanned in a later task
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7052
        || (_span.contains(addr) && addr >= _finger)) { // later in this chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7053
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7054
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7055
    // the bit map iteration has already either passed, or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7056
    // sampled, this bit in the bit map; we'll need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7057
    // use the marking stack to scan this oop's oops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7058
    bool simulate_overflow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7059
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7060
      if (CMSMarkStackOverflowALot &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7061
          _collector->simulate_overflow()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7062
        // simulate a stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7063
        simulate_overflow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7064
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7065
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7066
    if (simulate_overflow ||
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7067
        !(_work_queue->push(obj) || _overflow_stack->par_push(obj))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7068
      // stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7069
      if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7070
        gclog_or_tty->print_cr("CMS marking stack overflow (benign) at "
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7071
                               SIZE_FORMAT, _overflow_stack->capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7072
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7073
      // We cannot assert that the overflow stack is full because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7074
      // it may have been emptied since.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7075
      assert(simulate_overflow ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7076
             _work_queue->size() == _work_queue->max_elems(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7077
            "Else push should have succeeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7078
      handle_stack_overflow(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7079
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7080
    do_yield_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7081
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7082
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7083
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7084
void Par_PushOrMarkClosure::do_oop(oop* p)       { Par_PushOrMarkClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7085
void Par_PushOrMarkClosure::do_oop(narrowOop* p) { Par_PushOrMarkClosure::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7087
PushAndMarkClosure::PushAndMarkClosure(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7088
                                       MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7089
                                       ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7090
                                       CMSBitMap* bit_map,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7091
                                       CMSBitMap* mod_union_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7092
                                       CMSMarkStack*  mark_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7093
                                       bool           concurrent_precleaning):
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  7094
  MetadataAwareOopClosure(rp),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7095
  _collector(collector),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7096
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7097
  _bit_map(bit_map),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7098
  _mod_union_table(mod_union_table),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7099
  _mark_stack(mark_stack),
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7100
  _concurrent_precleaning(concurrent_precleaning)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7101
{
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  7102
  assert(ref_processor() != NULL, "ref_processor shouldn't be NULL");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7105
// Grey object rescan during pre-cleaning and second checkpoint phases --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7106
// the non-parallel version (the parallel version appears further below.)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7107
void PushAndMarkClosure::do_oop(oop obj) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  7108
  // Ignore mark word verification. If during concurrent precleaning,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  7109
  // the object monitor may be locked. If during the checkpoint
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  7110
  // phases, the object may already have been reached by a  different
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  7111
  // path and may be at the end of the global overflow list (so
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  7112
  // the mark word may be NULL).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 390
diff changeset
  7113
  assert(obj->is_oop_or_null(true /* ignore mark word */),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7114
         "Expected an oop or NULL at " PTR_FORMAT, p2i(obj));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7115
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7116
  // Check if oop points into the CMS generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7117
  // and is not marked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7118
  if (_span.contains(addr) && !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7119
    // a white object ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7120
    _bit_map->mark(addr);         // ... now grey
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7121
    // push on the marking stack (grey set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7122
    bool simulate_overflow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7123
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7124
      if (CMSMarkStackOverflowALot &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7125
          _collector->simulate_overflow()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7126
        // simulate a stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7127
        simulate_overflow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7128
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7129
    )
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7130
    if (simulate_overflow || !_mark_stack->push(obj)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7131
      if (_concurrent_precleaning) {
991
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7132
         // During precleaning we can just dirty the appropriate card(s)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7133
         // in the mod union table, thus ensuring that the object remains
991
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7134
         // in the grey set  and continue. In the case of object arrays
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7135
         // we need to dirty all of the cards that the object spans,
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7136
         // since the rescan of object arrays will be limited to the
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7137
         // dirty cards.
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  7138
         // Note that no one can be interfering with us in this action
991
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7139
         // of dirtying the mod union table, so no locking or atomics
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7140
         // are required.
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7141
         if (obj->is_objArray()) {
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7142
           size_t sz = obj->size();
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7143
           HeapWord* end_card_addr = (HeapWord*)round_to(
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7144
                                        (intptr_t)(addr+sz), CardTableModRefBS::card_size);
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7145
           MemRegion redirty_range = MemRegion(addr, end_card_addr);
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7146
           assert(!redirty_range.is_empty(), "Arithmetical tautology");
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7147
           _mod_union_table->mark_range(redirty_range);
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7148
         } else {
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7149
           _mod_union_table->mark(addr);
5b25d0a7116f 6722112: CMS: Incorrect encoding of overflown object arrays during concurrent precleaning
ysr
parents: 979
diff changeset
  7150
         }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7151
         _collector->_ser_pmc_preclean_ovflw++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7152
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7153
         // During the remark phase, we need to remember this oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7154
         // in the overflow list.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7155
         _collector->push_on_overflow_list(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7156
         _collector->_ser_pmc_remark_ovflw++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7157
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7158
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7162
Par_PushAndMarkClosure::Par_PushAndMarkClosure(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7163
                                               MemRegion span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7164
                                               ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7165
                                               CMSBitMap* bit_map,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7166
                                               OopTaskQueue* work_queue):
25356
4a4a482298a6 8046670: Make CMS metadata aware closures applicable for other collectors
stefank
parents: 25351
diff changeset
  7167
  MetadataAwareOopClosure(rp),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7168
  _collector(collector),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7169
  _span(span),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7170
  _bit_map(bit_map),
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7171
  _work_queue(work_queue)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7172
{
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33153
diff changeset
  7173
  assert(ref_processor() != NULL, "ref_processor shouldn't be NULL");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7175
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7176
void PushAndMarkClosure::do_oop(oop* p)       { PushAndMarkClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7177
void PushAndMarkClosure::do_oop(narrowOop* p) { PushAndMarkClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7178
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7179
// Grey object rescan during second checkpoint phase --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7180
// the parallel version.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7181
void Par_PushAndMarkClosure::do_oop(oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7182
  // In the assert below, we ignore the mark word because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7183
  // this oop may point to an already visited object that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7184
  // on the overflow stack (in which case the mark word has
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7185
  // been hijacked for chaining into the overflow stack --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7186
  // if this is the last object in the overflow stack then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7187
  // its mark word will be NULL). Because this object may
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7188
  // have been subsequently popped off the global overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7189
  // stack, and the mark word possibly restored to the prototypical
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7190
  // value, by the time we get to examined this failing assert in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7191
  // the debugger, is_oop_or_null(false) may subsequently start
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7192
  // to hold.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7193
  assert(obj->is_oop_or_null(true),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7194
         "Expected an oop or NULL at " PTR_FORMAT, p2i(obj));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7195
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7196
  // Check if oop points into the CMS generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7197
  // and is not marked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7198
  if (_span.contains(addr) && !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7199
    // a white object ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7200
    // If we manage to "claim" the object, by being the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7201
    // first thread to mark it, then we push it on our
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7202
    // marking stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7203
    if (_bit_map->par_mark(addr)) {     // ... now grey
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7204
      // push on work queue (grey set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7205
      bool simulate_overflow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7206
      NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7207
        if (CMSMarkStackOverflowALot &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7208
            _collector->par_simulate_overflow()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7209
          // simulate a stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7210
          simulate_overflow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7211
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7212
      )
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7213
      if (simulate_overflow || !_work_queue->push(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7214
        _collector->par_push_on_overflow_list(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7215
        _collector->_par_pmc_remark_ovflw++; //  imprecise OK: no need to CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7216
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7217
    } // Else, some other thread got there first
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7220
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7221
void Par_PushAndMarkClosure::do_oop(oop* p)       { Par_PushAndMarkClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7222
void Par_PushAndMarkClosure::do_oop(narrowOop* p) { Par_PushAndMarkClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7223
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7224
void CMSPrecleanRefsYieldClosure::do_yield_work() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7225
  Mutex* bml = _collector->bitMapLock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7226
  assert_lock_strong(bml);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7227
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7228
         "CMS thread should hold CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7230
  bml->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7231
  ConcurrentMarkSweepThread::desynchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7233
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7234
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7235
    _collector->incrementYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7236
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7238
  // See the comment in coordinator_yield()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7239
  for (unsigned i = 0; i < CMSYieldSleepCount &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7240
                       ConcurrentMarkSweepThread::should_yield() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7241
                       !CMSCollector::foregroundGCIsActive(); ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7242
    os::sleep(Thread::current(), 1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7244
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7245
  ConcurrentMarkSweepThread::synchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7246
  bml->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7248
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7251
bool CMSPrecleanRefsYieldClosure::should_return() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7252
  if (ConcurrentMarkSweepThread::should_yield()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7253
    do_yield_work();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7255
  return _collector->foregroundGCIsActive();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7258
void MarkFromDirtyCardsClosure::do_MemRegion(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7259
  assert(((size_t)mr.start())%CardTableModRefBS::card_size_in_words == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7260
         "mr should be aligned to start at a card boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7261
  // We'd like to assert:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7262
  // assert(mr.word_size()%CardTableModRefBS::card_size_in_words == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7263
  //        "mr should be a range of cards");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7264
  // However, that would be too strong in one case -- the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7265
  // partition ends at _unallocated_block which, in general, can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7266
  // an arbitrary boundary, not necessarily card aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7267
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7268
    _num_dirty_cards +=
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7269
         mr.word_size()/CardTableModRefBS::card_size_in_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7271
  _space->object_iterate_mem(mr, &_scan_cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7273
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7274
SweepClosure::SweepClosure(CMSCollector* collector,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7275
                           ConcurrentMarkSweepGeneration* g,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7276
                           CMSBitMap* bitMap, bool should_yield) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7277
  _collector(collector),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7278
  _g(g),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7279
  _sp(g->cmsSpace()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7280
  _limit(_sp->sweep_limit()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7281
  _freelistLock(_sp->freelistLock()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7282
  _bitMap(bitMap),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7283
  _yield(should_yield),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7284
  _inFreeRange(false),           // No free range at beginning of sweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7285
  _freeRangeInFreeLists(false),  // No free range at beginning of sweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7286
  _lastFreeRangeCoalesced(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7287
  _freeFinger(g->used_region().start())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7288
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7289
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7290
    _numObjectsFreed = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7291
    _numWordsFreed   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7292
    _numObjectsLive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7293
    _numWordsLive = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7294
    _numObjectsAlreadyFree = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7295
    _numWordsAlreadyFree = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7296
    _last_fc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7297
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7298
    _sp->initializeIndexedFreeListArrayReturnedBytes();
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7299
    _sp->dictionary()->initialize_dict_returned_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7300
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7301
  assert(_limit >= _sp->bottom() && _limit <= _sp->end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7302
         "sweep _limit out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7303
  if (CMSTraceSweeper) {
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7304
    gclog_or_tty->print_cr("\n====================\nStarting new sweep with limit " PTR_FORMAT,
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7305
                        p2i(_limit));
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7306
  }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7307
}
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7308
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7309
void SweepClosure::print_on(outputStream* st) const {
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7310
  tty->print_cr("_sp = [" PTR_FORMAT "," PTR_FORMAT ")",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7311
                p2i(_sp->bottom()), p2i(_sp->end()));
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7312
  tty->print_cr("_limit = " PTR_FORMAT, p2i(_limit));
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7313
  tty->print_cr("_freeFinger = " PTR_FORMAT, p2i(_freeFinger));
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7314
  NOT_PRODUCT(tty->print_cr("_last_fc = " PTR_FORMAT, p2i(_last_fc));)
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7315
  tty->print_cr("_inFreeRange = %d, _freeRangeInFreeLists = %d, _lastFreeRangeCoalesced = %d",
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7316
                _inFreeRange, _freeRangeInFreeLists, _lastFreeRangeCoalesced);
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7317
}
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7318
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7319
#ifndef PRODUCT
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7320
// Assertion checking only:  no useful work in product mode --
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7321
// however, if any of the flags below become product flags,
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7322
// you may need to review this code to see if it needs to be
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7323
// enabled in product mode.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7324
SweepClosure::~SweepClosure() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7325
  assert_lock_strong(_freelistLock);
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7326
  assert(_limit >= _sp->bottom() && _limit <= _sp->end(),
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7327
         "sweep _limit out of bounds");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7328
  if (inFreeRange()) {
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7329
    warning("inFreeRange() should have been reset; dumping state of SweepClosure");
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7330
    print();
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7331
    ShouldNotReachHere();
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7332
  }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7333
  if (Verbose && PrintGC) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7334
    gclog_or_tty->print("Collected " SIZE_FORMAT " objects, " SIZE_FORMAT " bytes",
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7335
                        _numObjectsFreed, _numWordsFreed*sizeof(HeapWord));
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7336
    gclog_or_tty->print_cr("\nLive " SIZE_FORMAT " objects,  "
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7337
                           SIZE_FORMAT " bytes  "
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7338
      "Already free " SIZE_FORMAT " objects, " SIZE_FORMAT " bytes",
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7339
      _numObjectsLive, _numWordsLive*sizeof(HeapWord),
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7340
      _numObjectsAlreadyFree, _numWordsAlreadyFree*sizeof(HeapWord));
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7341
    size_t totalBytes = (_numWordsFreed + _numWordsLive + _numWordsAlreadyFree)
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7342
                        * sizeof(HeapWord);
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7343
    gclog_or_tty->print_cr("Total sweep: " SIZE_FORMAT " bytes", totalBytes);
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7344
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7345
    if (PrintCMSStatistics && CMSVerifyReturnedBytes) {
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7346
      size_t indexListReturnedBytes = _sp->sumIndexedFreeListArrayReturnedBytes();
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7347
      size_t dict_returned_bytes = _sp->dictionary()->sum_dict_returned_bytes();
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7348
      size_t returned_bytes = indexListReturnedBytes + dict_returned_bytes;
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7349
      gclog_or_tty->print("Returned " SIZE_FORMAT " bytes", returned_bytes);
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7350
      gclog_or_tty->print("   Indexed List Returned " SIZE_FORMAT " bytes",
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7351
        indexListReturnedBytes);
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7352
      gclog_or_tty->print_cr("        Dictionary Returned " SIZE_FORMAT " bytes",
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7353
        dict_returned_bytes);
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7354
    }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7355
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7356
  if (CMSTraceSweeper) {
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7357
    gclog_or_tty->print_cr("end of sweep with _limit = " PTR_FORMAT "\n================",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7358
                           p2i(_limit));
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7359
  }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7360
}
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7361
#endif  // PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7362
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7363
void SweepClosure::initialize_free_range(HeapWord* freeFinger,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7364
    bool freeRangeInFreeLists) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7365
  if (CMSTraceSweeper) {
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 23508
diff changeset
  7366
    gclog_or_tty->print("---- Start free range at " PTR_FORMAT " with free block (%d)\n",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7367
               p2i(freeFinger), freeRangeInFreeLists);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7368
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7369
  assert(!inFreeRange(), "Trampling existing free range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7370
  set_inFreeRange(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7371
  set_lastFreeRangeCoalesced(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7372
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7373
  set_freeFinger(freeFinger);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7374
  set_freeRangeInFreeLists(freeRangeInFreeLists);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7375
  if (CMSTestInFreeList) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7376
    if (freeRangeInFreeLists) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7377
      FreeChunk* fc = (FreeChunk*) freeFinger;
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7378
      assert(fc->is_free(), "A chunk on the free list should be free.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7379
      assert(fc->size() > 0, "Free range should have a size");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7380
      assert(_sp->verify_chunk_in_free_list(fc), "Chunk is not in free lists");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7381
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7384
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7385
// Note that the sweeper runs concurrently with mutators. Thus,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7386
// it is possible for direct allocation in this generation to happen
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7387
// in the middle of the sweep. Note that the sweeper also coalesces
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7388
// contiguous free blocks. Thus, unless the sweeper and the allocator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7389
// synchronize appropriately freshly allocated blocks may get swept up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7390
// This is accomplished by the sweeper locking the free lists while
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7391
// it is sweeping. Thus blocks that are determined to be free are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7392
// indeed free. There is however one additional complication:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7393
// blocks that have been allocated since the final checkpoint and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7394
// mark, will not have been marked and so would be treated as
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7395
// unreachable and swept up. To prevent this, the allocator marks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7396
// the bit map when allocating during the sweep phase. This leads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7397
// however, to a further complication -- objects may have been allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7398
// but not yet initialized -- in the sense that the header isn't yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7399
// installed. The sweeper can not then determine the size of the block
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7400
// in order to skip over it. To deal with this case, we use a technique
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7401
// (due to Printezis) to encode such uninitialized block sizes in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7402
// bit map. Since the bit map uses a bit per every HeapWord, but the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7403
// CMS generation has a minimum object size of 3 HeapWords, it follows
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7404
// that "normal marks" won't be adjacent in the bit map (there will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7405
// always be at least two 0 bits between successive 1 bits). We make use
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7406
// of these "unused" bits to represent uninitialized blocks -- the bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7407
// corresponding to the start of the uninitialized object and the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7408
// bit are both set. Finally, a 1 bit marks the end of the object that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7409
// started with the two consecutive 1 bits to indicate its potentially
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7410
// uninitialized state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7412
size_t SweepClosure::do_blk_careful(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7413
  FreeChunk* fc = (FreeChunk*)addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7414
  size_t res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7415
6262
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7416
  // Check if we are done sweeping. Below we check "addr >= _limit" rather
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7417
  // than "addr == _limit" because although _limit was a block boundary when
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7418
  // we started the sweep, it may no longer be one because heap expansion
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7419
  // may have caused us to coalesce the block ending at the address _limit
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7420
  // with a newly expanded chunk (this happens when _limit was set to the
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7421
  // previous _end of the space), so we may have stepped past _limit:
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7422
  // see the following Zeno-like trail of CRs 6977970, 7008136, 7042740.
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7423
  if (addr >= _limit) { // we have swept up to or past the limit: finish up
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7424
    assert(_limit >= _sp->bottom() && _limit <= _sp->end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7425
           "sweep _limit out of bounds");
6262
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7426
    assert(addr < _sp->end(), "addr out of bounds");
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7427
    // Flush any free range we might be holding as a single
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7428
    // coalesced chunk to the appropriate free list.
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7429
    if (inFreeRange()) {
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7430
      assert(freeFinger() >= _sp->bottom() && freeFinger() < _limit,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7431
             "freeFinger() " PTR_FORMAT " is out-of-bounds", p2i(freeFinger()));
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7432
      flush_cur_free_chunk(freeFinger(),
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7433
                           pointer_delta(addr, freeFinger()));
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7434
      if (CMSTraceSweeper) {
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7435
        gclog_or_tty->print("Sweep: last chunk: ");
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31358
diff changeset
  7436
        gclog_or_tty->print("put_free_blk " PTR_FORMAT " (" SIZE_FORMAT ") "
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 23508
diff changeset
  7437
                   "[coalesced:%d]\n",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7438
                   p2i(freeFinger()), pointer_delta(addr, freeFinger()),
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 23508
diff changeset
  7439
                   lastFreeRangeCoalesced() ? 1 : 0);
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7440
      }
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7441
    }
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7442
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7443
    // help the iterator loop finish
6262
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7444
    return pointer_delta(_sp->end(), addr);
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7445
  }
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7446
6262
439992021ba8 6977970: CMS: concurrentMarkSweepGeneration.cpp:7947 assert(addr <= _limit) failed: sweep invariant
ysr
parents: 6258
diff changeset
  7447
  assert(addr < _limit, "sweep invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7448
  // check if we should yield
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7449
  do_yield_check(addr);
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7450
  if (fc->is_free()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7451
    // Chunk that is already free
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7452
    res = fc->size();
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7453
    do_already_free_chunk(fc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7454
    debug_only(_sp->verifyFreeLists());
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7455
    // If we flush the chunk at hand in lookahead_and_flush()
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7456
    // and it's coalesced with a preceding chunk, then the
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7457
    // process of "mangling" the payload of the coalesced block
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7458
    // will cause erasure of the size information from the
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7459
    // (erstwhile) header of all the coalesced blocks but the
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7460
    // first, so the first disjunct in the assert will not hold
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7461
    // in that specific case (in which case the second disjunct
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7462
    // will hold).
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7463
    assert(res == fc->size() || ((HeapWord*)fc) + res >= _limit,
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7464
           "Otherwise the size info doesn't change at this step");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7465
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7466
      _numObjectsAlreadyFree++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7467
      _numWordsAlreadyFree += res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7468
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7469
    NOT_PRODUCT(_last_fc = fc;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7470
  } else if (!_bitMap->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7471
    // Chunk is fresh garbage
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7472
    res = do_garbage_chunk(fc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7473
    debug_only(_sp->verifyFreeLists());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7474
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7475
      _numObjectsFreed++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7476
      _numWordsFreed += res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7477
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7478
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7479
    // Chunk that is alive.
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7480
    res = do_live_chunk(fc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7481
    debug_only(_sp->verifyFreeLists());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7482
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7483
        _numObjectsLive++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7484
        _numWordsLive += res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7485
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7487
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7488
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7490
// For the smart allocation, record following
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7491
//  split deaths - a free chunk is removed from its free list because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7492
//      it is being split into two or more chunks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7493
//  split birth - a free chunk is being added to its free list because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7494
//      a larger free chunk has been split and resulted in this free chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7495
//  coal death - a free chunk is being removed from its free list because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7496
//      it is being coalesced into a large free chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7497
//  coal birth - a free chunk is being added to its free list because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7498
//      it was created when two or more free chunks where coalesced into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7499
//      this free chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7500
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7501
// These statistics are used to determine the desired number of free
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7502
// chunks of a given size.  The desired number is chosen to be relative
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7503
// to the end of a CMS sweep.  The desired number at the end of a sweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7504
// is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7505
//      count-at-end-of-previous-sweep (an amount that was enough)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7506
//              - count-at-beginning-of-current-sweep  (the excess)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7507
//              + split-births  (gains in this size during interval)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7508
//              - split-deaths  (demands on this size during interval)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7509
// where the interval is from the end of one sweep to the end of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7510
// next.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7511
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7512
// When sweeping the sweeper maintains an accumulated chunk which is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7513
// the chunk that is made up of chunks that have been coalesced.  That
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7514
// will be termed the left-hand chunk.  A new chunk of garbage that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7515
// is being considered for coalescing will be referred to as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7516
// right-hand chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7517
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7518
// When making a decision on whether to coalesce a right-hand chunk with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7519
// the current left-hand chunk, the current count vs. the desired count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7520
// of the left-hand chunk is considered.  Also if the right-hand chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7521
// is near the large chunk at the end of the heap (see
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7522
// ConcurrentMarkSweepGeneration::isNearLargestChunk()), then the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7523
// left-hand chunk is coalesced.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7524
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7525
// When making a decision about whether to split a chunk, the desired count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7526
// vs. the current count of the candidate to be split is also considered.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7527
// If the candidate is underpopulated (currently fewer chunks than desired)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7528
// a chunk of an overpopulated (currently more chunks than desired) size may
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7529
// be chosen.  The "hint" associated with a free list, if non-null, points
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7530
// to a free list which may be overpopulated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7531
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7532
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7533
void SweepClosure::do_already_free_chunk(FreeChunk* fc) {
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7534
  const size_t size = fc->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7535
  // Chunks that cannot be coalesced are not in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7536
  // free lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7537
  if (CMSTestInFreeList && !fc->cantCoalesce()) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7538
    assert(_sp->verify_chunk_in_free_list(fc),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7539
      "free chunk should be in free lists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7540
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7541
  // a chunk that is already free, should not have been
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7542
  // marked in the bit map
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7543
  HeapWord* const addr = (HeapWord*) fc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7544
  assert(!_bitMap->isMarked(addr), "free chunk should be unmarked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7545
  // Verify that the bit map has no bits marked between
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7546
  // addr and purported end of this block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7547
  _bitMap->verifyNoOneBitsInRange(addr + 1, addr + size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7548
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7549
  // Some chunks cannot be coalesced under any circumstances.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7550
  // See the definition of cantCoalesce().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7551
  if (!fc->cantCoalesce()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7552
    // This chunk can potentially be coalesced.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7553
    if (_sp->adaptive_freelists()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7554
      // All the work is done in
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7555
      do_post_free_or_garbage_chunk(fc, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7556
    } else {  // Not adaptive free lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7557
      // this is a free chunk that can potentially be coalesced by the sweeper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7558
      if (!inFreeRange()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7559
        // if the next chunk is a free block that can't be coalesced
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7560
        // it doesn't make sense to remove this chunk from the free lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7561
        FreeChunk* nextChunk = (FreeChunk*)(addr + size);
7907
2cd00061953b 7011940: iCMS: SIGSEGV in SweepClosure::do_already_free_chunk(FreeChunk*)+0x360
ysr
parents: 7903
diff changeset
  7562
        assert((HeapWord*)nextChunk <= _sp->end(), "Chunk size out of bounds?");
2cd00061953b 7011940: iCMS: SIGSEGV in SweepClosure::do_already_free_chunk(FreeChunk*)+0x360
ysr
parents: 7903
diff changeset
  7563
        if ((HeapWord*)nextChunk < _sp->end() &&     // There is another free chunk to the right ...
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7564
            nextChunk->is_free()               &&     // ... which is free...
7907
2cd00061953b 7011940: iCMS: SIGSEGV in SweepClosure::do_already_free_chunk(FreeChunk*)+0x360
ysr
parents: 7903
diff changeset
  7565
            nextChunk->cantCoalesce()) {             // ... but can't be coalesced
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7566
          // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7567
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7568
          // Potentially the start of a new free range:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7569
          // Don't eagerly remove it from the free lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7570
          // No need to remove it if it will just be put
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7571
          // back again.  (Also from a pragmatic point of view
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7572
          // if it is a free block in a region that is beyond
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7573
          // any allocated blocks, an assertion will fail)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7574
          // Remember the start of a free run.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7575
          initialize_free_range(addr, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7576
          // end - can coalesce with next chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7577
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7578
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7579
        // the midst of a free range, we are coalescing
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7580
        print_free_block_coalesced(fc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7581
        if (CMSTraceSweeper) {
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7582
          gclog_or_tty->print("  -- pick up free block " PTR_FORMAT " (" SIZE_FORMAT ")\n", p2i(fc), size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7583
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7584
        // remove it from the free lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7585
        _sp->removeFreeChunkFromFreeLists(fc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7586
        set_lastFreeRangeCoalesced(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7587
        // If the chunk is being coalesced and the current free range is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7588
        // in the free lists, remove the current free range so that it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7589
        // will be returned to the free lists in its entirety - all
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7590
        // the coalesced pieces included.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7591
        if (freeRangeInFreeLists()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7592
          FreeChunk* ffc = (FreeChunk*) freeFinger();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7593
          assert(ffc->size() == pointer_delta(addr, freeFinger()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7594
            "Size of free range is inconsistent with chunk size.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7595
          if (CMSTestInFreeList) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7596
            assert(_sp->verify_chunk_in_free_list(ffc),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7597
              "free range is not in free lists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7598
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7599
          _sp->removeFreeChunkFromFreeLists(ffc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7600
          set_freeRangeInFreeLists(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7601
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7602
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7603
    }
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7604
    // Note that if the chunk is not coalescable (the else arm
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7605
    // below), we unconditionally flush, without needing to do
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7606
    // a "lookahead," as we do below.
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7607
    if (inFreeRange()) lookahead_and_flush(fc, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7608
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7609
    // Code path common to both original and adaptive free lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7610
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7611
    // cant coalesce with previous block; this should be treated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7612
    // as the end of a free run if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7613
    if (inFreeRange()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7614
      // we kicked some butt; time to pick up the garbage
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7615
      assert(freeFinger() < addr, "freeFinger points too high");
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7616
      flush_cur_free_chunk(freeFinger(), pointer_delta(addr, freeFinger()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7617
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7618
    // else, nothing to do, just continue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7619
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7620
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7621
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7622
size_t SweepClosure::do_garbage_chunk(FreeChunk* fc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7623
  // This is a chunk of garbage.  It is not in any free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7624
  // Add it to a free list or let it possibly be coalesced into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7625
  // a larger chunk.
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7626
  HeapWord* const addr = (HeapWord*) fc;
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7627
  const size_t size = CompactibleFreeListSpace::adjustObjectSize(oop(addr)->size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7628
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7629
  if (_sp->adaptive_freelists()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7630
    // Verify that the bit map has no bits marked between
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7631
    // addr and purported end of just dead object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7632
    _bitMap->verifyNoOneBitsInRange(addr + 1, addr + size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7633
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7634
    do_post_free_or_garbage_chunk(fc, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7635
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7636
    if (!inFreeRange()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7637
      // start of a new free range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7638
      assert(size > 0, "A free range should have a size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7639
      initialize_free_range(addr, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7640
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7641
      // this will be swept up when we hit the end of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7642
      // free range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7643
      if (CMSTraceSweeper) {
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7644
        gclog_or_tty->print("  -- pick up garbage " PTR_FORMAT " (" SIZE_FORMAT ")\n", p2i(fc), size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7645
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7646
      // If the chunk is being coalesced and the current free range is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7647
      // in the free lists, remove the current free range so that it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7648
      // will be returned to the free lists in its entirety - all
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7649
      // the coalesced pieces included.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7650
      if (freeRangeInFreeLists()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7651
        FreeChunk* ffc = (FreeChunk*)freeFinger();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7652
        assert(ffc->size() == pointer_delta(addr, freeFinger()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7653
          "Size of free range is inconsistent with chunk size.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7654
        if (CMSTestInFreeList) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7655
          assert(_sp->verify_chunk_in_free_list(ffc),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7656
            "free range is not in free lists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7657
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7658
        _sp->removeFreeChunkFromFreeLists(ffc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7659
        set_freeRangeInFreeLists(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7660
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7661
      set_lastFreeRangeCoalesced(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7662
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7663
    // this will be swept up when we hit the end of the free range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7665
    // Verify that the bit map has no bits marked between
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7666
    // addr and purported end of just dead object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7667
    _bitMap->verifyNoOneBitsInRange(addr + 1, addr + size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7668
  }
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7669
  assert(_limit >= addr + size,
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7670
         "A freshly garbage chunk can't possibly straddle over _limit");
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7671
  if (inFreeRange()) lookahead_and_flush(fc, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7672
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7673
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7674
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7675
size_t SweepClosure::do_live_chunk(FreeChunk* fc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7676
  HeapWord* addr = (HeapWord*) fc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7677
  // The sweeper has just found a live object. Return any accumulated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7678
  // left hand chunk to the free lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7679
  if (inFreeRange()) {
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7680
    assert(freeFinger() < addr, "freeFinger points too high");
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7681
    flush_cur_free_chunk(freeFinger(), pointer_delta(addr, freeFinger()));
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7682
  }
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7683
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7684
  // This object is live: we'd normally expect this to be
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7685
  // an oop, and like to assert the following:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7686
  // assert(oop(addr)->is_oop(), "live block should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7687
  // However, as we commented above, this may be an object whose
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7688
  // header hasn't yet been initialized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7689
  size_t size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7690
  assert(_bitMap->isMarked(addr), "Tautology for this control point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7691
  if (_bitMap->isMarked(addr + 1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7692
    // Determine the size from the bit map, rather than trying to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7693
    // compute it from the object header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7694
    HeapWord* nextOneAddr = _bitMap->getNextMarkedWordAddress(addr + 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7695
    size = pointer_delta(nextOneAddr + 1, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7696
    assert(size == CompactibleFreeListSpace::adjustObjectSize(size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7697
           "alignment problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7698
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 16685
diff changeset
  7699
#ifdef ASSERT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7700
      if (oop(addr)->klass_or_null() != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7701
        // Ignore mark word because we are running concurrent with mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7702
        assert(oop(addr)->is_oop(true), "live block should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7703
        assert(size ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7704
               CompactibleFreeListSpace::adjustObjectSize(oop(addr)->size()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7705
               "P-mark and computed size do not agree");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7706
      }
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7707
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7709
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7710
    // This should be an initialized object that's alive.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7711
    assert(oop(addr)->klass_or_null() != NULL,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7712
           "Should be an initialized object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7713
    // Ignore mark word because we are running concurrent with mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7714
    assert(oop(addr)->is_oop(true), "live block should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7715
    // Verify that the bit map has no bits marked between
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7716
    // addr and purported end of this block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7717
    size = CompactibleFreeListSpace::adjustObjectSize(oop(addr)->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7718
    assert(size >= 3, "Necessary for Printezis marks to work");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7719
    assert(!_bitMap->isMarked(addr+1), "Tautology for this control point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7720
    DEBUG_ONLY(_bitMap->verifyNoOneBitsInRange(addr+2, addr+size);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7721
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7722
  return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7723
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7724
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7725
void SweepClosure::do_post_free_or_garbage_chunk(FreeChunk* fc,
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7726
                                                 size_t chunkSize) {
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7727
  // do_post_free_or_garbage_chunk() should only be called in the case
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7728
  // of the adaptive free list allocator.
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7729
  const bool fcInFreeLists = fc->is_free();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7730
  assert(_sp->adaptive_freelists(), "Should only be used in this case.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7731
  assert((HeapWord*)fc <= _limit, "sweep invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7732
  if (CMSTestInFreeList && fcInFreeLists) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7733
    assert(_sp->verify_chunk_in_free_list(fc), "free chunk is not in free lists");
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7734
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7735
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7736
  if (CMSTraceSweeper) {
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7737
    gclog_or_tty->print_cr("  -- pick up another chunk at " PTR_FORMAT " (" SIZE_FORMAT ")", p2i(fc), chunkSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7738
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7739
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7740
  HeapWord* const fc_addr = (HeapWord*) fc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7741
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33230
diff changeset
  7742
  bool coalesce = false;
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7743
  const size_t left  = pointer_delta(fc_addr, freeFinger());
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7744
  const size_t right = chunkSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7745
  switch (FLSCoalescePolicy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7746
    // numeric value forms a coalition aggressiveness metric
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7747
    case 0:  { // never coalesce
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7748
      coalesce = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7749
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7750
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7751
    case 1: { // coalesce if left & right chunks on overpopulated lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7752
      coalesce = _sp->coalOverPopulated(left) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7753
                 _sp->coalOverPopulated(right);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7754
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7755
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7756
    case 2: { // coalesce if left chunk on overpopulated list (default)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7757
      coalesce = _sp->coalOverPopulated(left);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7758
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7759
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7760
    case 3: { // coalesce if left OR right chunk on overpopulated list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7761
      coalesce = _sp->coalOverPopulated(left) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7762
                 _sp->coalOverPopulated(right);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7763
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7764
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7765
    case 4: { // always coalesce
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7766
      coalesce = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7767
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7768
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7769
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7770
     ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7771
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7773
  // Should the current free range be coalesced?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7774
  // If the chunk is in a free range and either we decided to coalesce above
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7775
  // or the chunk is near the large block at the end of the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7776
  // (isNearLargestChunk() returns true), then coalesce this chunk.
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7777
  const bool doCoalesce = inFreeRange()
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7778
                          && (coalesce || _g->isNearLargestChunk(fc_addr));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7779
  if (doCoalesce) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7780
    // Coalesce the current free range on the left with the new
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7781
    // chunk on the right.  If either is on a free list,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7782
    // it must be removed from the list and stashed in the closure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7783
    if (freeRangeInFreeLists()) {
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7784
      FreeChunk* const ffc = (FreeChunk*)freeFinger();
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7785
      assert(ffc->size() == pointer_delta(fc_addr, freeFinger()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7786
        "Size of free range is inconsistent with chunk size.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7787
      if (CMSTestInFreeList) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7788
        assert(_sp->verify_chunk_in_free_list(ffc),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7789
          "Chunk is not in free lists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7790
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7791
      _sp->coalDeath(ffc->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7792
      _sp->removeFreeChunkFromFreeLists(ffc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7793
      set_freeRangeInFreeLists(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7794
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7795
    if (fcInFreeLists) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7796
      _sp->coalDeath(chunkSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7797
      assert(fc->size() == chunkSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7798
        "The chunk has the wrong size or is not in the free lists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7799
      _sp->removeFreeChunkFromFreeLists(fc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7800
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7801
    set_lastFreeRangeCoalesced(true);
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7802
    print_free_block_coalesced(fc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7803
  } else {  // not in a free range and/or should not coalesce
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7804
    // Return the current free range and start a new one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7805
    if (inFreeRange()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7806
      // In a free range but cannot coalesce with the right hand chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7807
      // Put the current free range into the free lists.
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7808
      flush_cur_free_chunk(freeFinger(),
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7809
                           pointer_delta(fc_addr, freeFinger()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7810
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7811
    // Set up for new free range.  Pass along whether the right hand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7812
    // chunk is in the free lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7813
    initialize_free_range((HeapWord*)fc, fcInFreeLists);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7814
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7815
}
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7816
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7817
// Lookahead flush:
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7818
// If we are tracking a free range, and this is the last chunk that
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7819
// we'll look at because its end crosses past _limit, we'll preemptively
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7820
// flush it along with any free range we may be holding on to. Note that
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7821
// this can be the case only for an already free or freshly garbage
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7822
// chunk. If this block is an object, it can never straddle
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7823
// over _limit. The "straddling" occurs when _limit is set at
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7824
// the previous end of the space when this cycle started, and
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7825
// a subsequent heap expansion caused the previously co-terminal
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7826
// free block to be coalesced with the newly expanded portion,
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7827
// thus rendering _limit a non-block-boundary making it dangerous
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7828
// for the sweeper to step over and examine.
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7829
void SweepClosure::lookahead_and_flush(FreeChunk* fc, size_t chunk_size) {
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7830
  assert(inFreeRange(), "Should only be called if currently in a free range.");
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7831
  HeapWord* const eob = ((HeapWord*)fc) + chunk_size;
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7832
  assert(_sp->used_region().contains(eob - 1),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7833
         "eob = " PTR_FORMAT " eob-1 = " PTR_FORMAT " _limit = " PTR_FORMAT
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7834
         " out of bounds wrt _sp = [" PTR_FORMAT "," PTR_FORMAT ")"
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7835
         " when examining fc = " PTR_FORMAT "(" SIZE_FORMAT ")",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32735
diff changeset
  7836
         p2i(eob), p2i(eob-1), p2i(_limit), p2i(_sp->bottom()), p2i(_sp->end()), p2i(fc), chunk_size);
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7837
  if (eob >= _limit) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7838
    assert(eob == _limit || fc->is_free(), "Only a free chunk should allow us to cross over the limit");
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7839
    if (CMSTraceSweeper) {
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7840
      gclog_or_tty->print_cr("_limit " PTR_FORMAT " reached or crossed by block "
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7841
                             "[" PTR_FORMAT "," PTR_FORMAT ") in space "
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7842
                             "[" PTR_FORMAT "," PTR_FORMAT ")",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7843
                             p2i(_limit), p2i(fc), p2i(eob), p2i(_sp->bottom()), p2i(_sp->end()));
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7844
    }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7845
    // Return the storage we are tracking back into the free lists.
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7846
    if (CMSTraceSweeper) {
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7847
      gclog_or_tty->print_cr("Flushing ... ");
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7848
    }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7849
    assert(freeFinger() < eob, "Error");
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7850
    flush_cur_free_chunk( freeFinger(), pointer_delta(eob, freeFinger()));
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7851
  }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7852
}
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7853
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7854
void SweepClosure::flush_cur_free_chunk(HeapWord* chunk, size_t size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7855
  assert(inFreeRange(), "Should only be called if currently in a free range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7856
  assert(size > 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7857
    "A zero sized chunk cannot be added to the free lists.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7858
  if (!freeRangeInFreeLists()) {
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7859
    if (CMSTestInFreeList) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7860
      FreeChunk* fc = (FreeChunk*) chunk;
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7861
      fc->set_size(size);
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7862
      assert(!_sp->verify_chunk_in_free_list(fc),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7863
        "chunk should not be in free lists yet");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7864
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7865
    if (CMSTraceSweeper) {
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 23508
diff changeset
  7866
      gclog_or_tty->print_cr(" -- add free block " PTR_FORMAT " (" SIZE_FORMAT ") to free lists",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7867
                    p2i(chunk), size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7868
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7869
    // A new free range is going to be starting.  The current
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7870
    // free range has not been added to the free lists yet or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7871
    // was removed so add it back.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7872
    // If the current free range was coalesced, then the death
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7873
    // of the free range was recorded.  Record a birth now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7874
    if (lastFreeRangeCoalesced()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7875
      _sp->coalBirth(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7876
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7877
    _sp->addChunkAndRepairOffsetTable(chunk, size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7878
            lastFreeRangeCoalesced());
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7879
  } else if (CMSTraceSweeper) {
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7880
    gclog_or_tty->print_cr("Already in free list: nothing to flush");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7881
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7882
  set_inFreeRange(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7883
  set_freeRangeInFreeLists(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7884
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7885
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7886
// We take a break if we've been at this for a while,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7887
// so as to avoid monopolizing the locks involved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7888
void SweepClosure::do_yield_work(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7889
  // Return current free chunk being used for coalescing (if any)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7890
  // to the appropriate freelist.  After yielding, the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7891
  // free block encountered will start a coalescing range of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7892
  // free blocks.  If the next free block is adjacent to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7893
  // chunk just flushed, they will need to wait for the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7894
  // sweep to be coalesced.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7895
  if (inFreeRange()) {
7903
c694e52ff9cb 7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
ysr
parents: 7419
diff changeset
  7896
    flush_cur_free_chunk(freeFinger(), pointer_delta(addr, freeFinger()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7897
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7898
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7899
  // First give up the locks, then yield, then re-lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7900
  // We should probably use a constructor/destructor idiom to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7901
  // do this unlock/lock or modify the MutexUnlocker class to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7902
  // serve our purpose. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7903
  assert_lock_strong(_bitMap->lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7904
  assert_lock_strong(_freelistLock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7905
  assert(ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7906
         "CMS thread should hold CMS token");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7907
  _bitMap->lock()->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7908
  _freelistLock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7909
  ConcurrentMarkSweepThread::desynchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7910
  _collector->stopTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7911
  if (PrintCMSStatistics != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7912
    _collector->incrementYields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7913
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7914
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7915
  // See the comment in coordinator_yield()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7916
  for (unsigned i = 0; i < CMSYieldSleepCount &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7917
                       ConcurrentMarkSweepThread::should_yield() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7918
                       !CMSCollector::foregroundGCIsActive(); ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7919
    os::sleep(Thread::current(), 1, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7920
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7922
  ConcurrentMarkSweepThread::synchronize(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7923
  _freelistLock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7924
  _bitMap->lock()->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7925
  _collector->startTimer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7926
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7928
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7929
// This is actually very useful in a product build if it can
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7930
// be called from the debugger.  Compile it into the product
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7931
// as needed.
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7932
bool debug_verify_chunk_in_free_list(FreeChunk* fc) {
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
  7933
  return debug_cms_space->verify_chunk_in_free_list(fc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7934
}
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7935
#endif
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7936
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7937
void SweepClosure::print_free_block_coalesced(FreeChunk* fc) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7938
  if (CMSTraceSweeper) {
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7939
    gclog_or_tty->print_cr("Sweep:coal_free_blk " PTR_FORMAT " (" SIZE_FORMAT ")",
29797
4d360e3ddebf 8076055: cms: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29693
diff changeset
  7940
                           p2i(fc), fc->size());
9969
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7941
  }
57932d7294a9 7042740: CMS: assert(n> q) failed: Looping at: ... blockOffsetTable.cpp:557
ysr
parents: 9623
diff changeset
  7942
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7944
// CMSIsAliveClosure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7945
bool CMSIsAliveClosure::do_object_b(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7946
  HeapWord* addr = (HeapWord*)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7947
  return addr != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7948
         (!_span.contains(addr) || _bit_map->isMarked(addr));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7949
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7950
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7951
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7952
CMSKeepAliveClosure::CMSKeepAliveClosure( CMSCollector* collector,
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7953
                      MemRegion span,
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7954
                      CMSBitMap* bit_map, CMSMarkStack* mark_stack,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7955
                      bool cpc):
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  7956
  _collector(collector),
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7957
  _span(span),
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7958
  _bit_map(bit_map),
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7959
  _mark_stack(mark_stack),
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7960
  _concurrent_precleaning(cpc) {
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7961
  assert(!_span.is_empty(), "Empty span could spell trouble");
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7962
}
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7963
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  7964
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7965
// CMSKeepAliveClosure: the serial version
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7966
void CMSKeepAliveClosure::do_oop(oop obj) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7967
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7968
  if (_span.contains(addr) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7969
      !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7970
    _bit_map->mark(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7971
    bool simulate_overflow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7972
    NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7973
      if (CMSMarkStackOverflowALot &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7974
          _collector->simulate_overflow()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7975
        // simulate a stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7976
        simulate_overflow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7977
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7978
    )
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  7979
    if (simulate_overflow || !_mark_stack->push(obj)) {
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7980
      if (_concurrent_precleaning) {
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7981
        // We dirty the overflown object and let the remark
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7982
        // phase deal with it.
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7983
        assert(_collector->overflow_list_is_empty(), "Error");
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7984
        // In the case of object arrays, we need to dirty all of
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7985
        // the cards that the object spans. No locking or atomics
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7986
        // are needed since no one else can be mutating the mod union
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7987
        // table.
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7988
        if (obj->is_objArray()) {
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7989
          size_t sz = obj->size();
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7990
          HeapWord* end_card_addr =
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7991
            (HeapWord*)round_to((intptr_t)(addr+sz), CardTableModRefBS::card_size);
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7992
          MemRegion redirty_range = MemRegion(addr, end_card_addr);
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7993
          assert(!redirty_range.is_empty(), "Arithmetical tautology");
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7994
          _collector->_modUnionTable.mark_range(redirty_range);
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7995
        } else {
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7996
          _collector->_modUnionTable.mark(addr);
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7997
        }
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7998
        _collector->_ser_kac_preclean_ovflw++;
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  7999
      } else {
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  8000
        _collector->push_on_overflow_list(obj);
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  8001
        _collector->_ser_kac_ovflw++;
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  8002
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8003
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8004
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8005
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8006
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8007
void CMSKeepAliveClosure::do_oop(oop* p)       { CMSKeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8008
void CMSKeepAliveClosure::do_oop(narrowOop* p) { CMSKeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8009
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8010
// CMSParKeepAliveClosure: a parallel version of the above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8011
// The work queues are private to each closure (thread),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8012
// but (may be) available for stealing by other threads.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8013
void CMSParKeepAliveClosure::do_oop(oop obj) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8014
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8015
  if (_span.contains(addr) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8016
      !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8017
    // In general, during recursive tracing, several threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8018
    // may be concurrently getting here; the first one to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8019
    // "tag" it, claims it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8020
    if (_bit_map->par_mark(addr)) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8021
      bool res = _work_queue->push(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8022
      assert(res, "Low water mark should be much less than capacity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8023
      // Do a recursive trim in the hope that this will keep
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8024
      // stack usage lower, but leave some oops for potential stealers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8025
      trim_queue(_low_water_mark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8026
    } // Else, another thread got there first
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8027
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8028
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8029
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8030
void CMSParKeepAliveClosure::do_oop(oop* p)       { CMSParKeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8031
void CMSParKeepAliveClosure::do_oop(narrowOop* p) { CMSParKeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8032
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8033
void CMSParKeepAliveClosure::trim_queue(uint max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8034
  while (_work_queue->size() > max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8035
    oop new_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8036
    if (_work_queue->pop_local(new_oop)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8037
      assert(new_oop != NULL && new_oop->is_oop(), "Expected an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8038
      assert(_bit_map->isMarked((HeapWord*)new_oop),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8039
             "no white objects on this stack!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8040
      assert(_span.contains((HeapWord*)new_oop), "Out of bounds oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8041
      // iterate over the oops in this oop, marking and pushing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8042
      // the ones in CMS heap (i.e. in _span).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8043
      new_oop->oop_iterate(&_mark_and_push);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8044
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8045
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8046
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8047
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8048
CMSInnerParMarkAndPushClosure::CMSInnerParMarkAndPushClosure(
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8049
                                CMSCollector* collector,
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8050
                                MemRegion span, CMSBitMap* bit_map,
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8051
                                OopTaskQueue* work_queue):
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  8052
  _collector(collector),
3690
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8053
  _span(span),
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8054
  _bit_map(bit_map),
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8055
  _work_queue(work_queue) { }
dba50b88bd50 6798898: CMS: bugs related to class unloading
jmasa
parents: 2885
diff changeset
  8056
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8057
void CMSInnerParMarkAndPushClosure::do_oop(oop obj) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8058
  HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8059
  if (_span.contains(addr) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8060
      !_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8061
    if (_bit_map->par_mark(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8062
      bool simulate_overflow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8063
      NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8064
        if (CMSMarkStackOverflowALot &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8065
            _collector->par_simulate_overflow()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8066
          // simulate a stack overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8067
          simulate_overflow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8068
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8069
      )
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8070
      if (simulate_overflow || !_work_queue->push(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8071
        _collector->par_push_on_overflow_list(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8072
        _collector->_par_kac_ovflw++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8073
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8074
    } // Else another thread got there already
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8075
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8076
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8077
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8078
void CMSInnerParMarkAndPushClosure::do_oop(oop* p)       { CMSInnerParMarkAndPushClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8079
void CMSInnerParMarkAndPushClosure::do_oop(narrowOop* p) { CMSInnerParMarkAndPushClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8080
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8081
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8082
//  CMSExpansionCause                /////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8083
//////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8084
const char* CMSExpansionCause::to_string(CMSExpansionCause::Cause cause) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8085
  switch (cause) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8086
    case _no_expansion:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8087
      return "No expansion";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8088
    case _satisfy_free_ratio:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8089
      return "Free ratio";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8090
    case _satisfy_promotion:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8091
      return "Satisfy promotion";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8092
    case _satisfy_allocation:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8093
      return "allocation";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8094
    case _allocate_par_lab:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8095
      return "Par LAB";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8096
    case _allocate_par_spooling_space:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8097
      return "Par Spooling Space";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8098
    case _adaptive_size_policy:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8099
      return "Ergonomics";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8100
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8101
      return "unknown";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8105
void CMSDrainMarkingStackClosure::do_void() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8106
  // the max number to take from overflow list at a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8107
  const size_t num = _mark_stack->capacity()/4;
1605
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  8108
  assert(!_concurrent_precleaning || _collector->overflow_list_is_empty(),
6b43d186eb8d 6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents: 1392
diff changeset
  8109
         "Overflow list should be NULL during concurrent phases");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8110
  while (!_mark_stack->isEmpty() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8111
         // if stack is empty, check the overflow list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8112
         _collector->take_from_overflow_list(num, _mark_stack)) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8113
    oop obj = _mark_stack->pop();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8114
    HeapWord* addr = (HeapWord*)obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8115
    assert(_span.contains(addr), "Should be within span");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8116
    assert(_bit_map->isMarked(addr), "Should be marked");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8117
    assert(obj->is_oop(), "Should be an oop");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 341
diff changeset
  8118
    obj->oop_iterate(_keep_alive);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8122
void CMSParDrainMarkingStackClosure::do_void() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8123
  // drain queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8124
  trim_queue(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8127
// Trim our work_queue so its length is below max at return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8128
void CMSParDrainMarkingStackClosure::trim_queue(uint max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8129
  while (_work_queue->size() > max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8130
    oop new_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8131
    if (_work_queue->pop_local(new_oop)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8132
      assert(new_oop->is_oop(), "Expected an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8133
      assert(_bit_map->isMarked((HeapWord*)new_oop),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8134
             "no white objects on this stack!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8135
      assert(_span.contains((HeapWord*)new_oop), "Out of bounds oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8136
      // iterate over the oops in this oop, marking and pushing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8137
      // the ones in CMS heap (i.e. in _span).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8138
      new_oop->oop_iterate(&_mark_and_push);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8139
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8143
////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8144
// Support for Marking Stack Overflow list handling and related code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8145
////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8146
// Much of the following code is similar in shape and spirit to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8147
// code used in ParNewGC. We should try and share that code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8148
// as much as possible in the future.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8149
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8150
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8151
// Debugging support for CMSStackOverflowALot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8153
// It's OK to call this multi-threaded;  the worst thing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8154
// that can happen is that we'll get a bunch of closely
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  8155
// spaced simulated overflows, but that's OK, in fact
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8156
// probably good as it would exercise the overflow code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8157
// under contention.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8158
bool CMSCollector::simulate_overflow() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8159
  if (_overflow_counter-- <= 0) { // just being defensive
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8160
    _overflow_counter = CMSMarkStackOverflowInterval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8161
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8162
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8163
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8166
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8167
bool CMSCollector::par_simulate_overflow() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8168
  return simulate_overflow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8170
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8172
// Single-threaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8173
bool CMSCollector::take_from_overflow_list(size_t num, CMSMarkStack* stack) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8174
  assert(stack->isEmpty(), "Expected precondition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8175
  assert(stack->capacity() > num, "Shouldn't bite more than can chew");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8176
  size_t i = num;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8177
  oop  cur = _overflow_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8178
  const markOop proto = markOopDesc::prototype();
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8179
  NOT_PRODUCT(ssize_t n = 0;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8180
  for (oop next; i > 0 && cur != NULL; cur = next, i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8181
    next = oop(cur->mark());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8182
    cur->set_mark(proto);   // until proven otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8183
    assert(cur->is_oop(), "Should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8184
    bool res = stack->push(cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8185
    assert(res, "Bit off more than can chew?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8186
    NOT_PRODUCT(n++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8188
  _overflow_list = cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8189
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8190
  assert(_num_par_pushes >= n, "Too many pops?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8191
  _num_par_pushes -=n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8192
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8193
  return !stack->isEmpty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8195
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19979
diff changeset
  8196
#define BUSY  (cast_to_oop<intptr_t>(0x1aff1aff))
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8197
// (MT-safe) Get a prefix of at most "num" from the list.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8198
// The overflow list is chained through the mark word of
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8199
// each object in the list. We fetch the entire list,
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8200
// break off a prefix of the right size and return the
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8201
// remainder. If other threads try to take objects from
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8202
// the overflow list at that time, they will wait for
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8203
// some time to see if data becomes available. If (and
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8204
// only if) another thread places one or more object(s)
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8205
// on the global list before we have returned the suffix
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8206
// to the global list, we will walk down our local list
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8207
// to find its end and append the global list to
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8208
// our suffix before returning it. This suffix walk can
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8209
// prove to be expensive (quadratic in the amount of traffic)
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8210
// when there are many objects in the overflow list and
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8211
// there is much producer-consumer contention on the list.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8212
// *NOTE*: The overflow list manipulation code here and
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8213
// in ParNewGeneration:: are very similar in shape,
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8214
// except that in the ParNew case we use the old (from/eden)
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8215
// copy of the object to thread the list via its klass word.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8216
// Because of the common code, if you make any changes in
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8217
// the code below, please check the ParNew version to see if
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8218
// similar changes might be needed.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8219
// CR 6797058 has been filed to consolidate the common code.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8220
bool CMSCollector::par_take_from_overflow_list(size_t num,
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  8221
                                               OopTaskQueue* work_q,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  8222
                                               int no_of_gc_threads) {
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8223
  assert(work_q->size() == 0, "First empty local work queue");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8224
  assert(num < work_q->max_elems(), "Can't bite more than we can chew");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8225
  if (_overflow_list == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8226
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8228
  // Grab the entire list; we'll put back a suffix
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19979
diff changeset
  8229
  oop prefix = cast_to_oop(Atomic::xchg_ptr(BUSY, &_overflow_list));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8230
  Thread* tid = Thread::current();
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  8231
  // Before "no_of_gc_threads" was introduced CMSOverflowSpinCount was
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  8232
  // set to ParallelGCThreads.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6447
diff changeset
  8233
  size_t CMSOverflowSpinCount = (size_t) no_of_gc_threads; // was ParallelGCThreads;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8234
  size_t sleep_time_millis = MAX2((size_t)1, num/100);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8235
  // If the list is busy, we spin for a short while,
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8236
  // sleeping between attempts to get the list.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8237
  for (size_t spin = 0; prefix == BUSY && spin < CMSOverflowSpinCount; spin++) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8238
    os::sleep(tid, sleep_time_millis, false);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8239
    if (_overflow_list == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8240
      // Nothing left to take
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8241
      return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8242
    } else if (_overflow_list != BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8243
      // Try and grab the prefix
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19979
diff changeset
  8244
      prefix = cast_to_oop(Atomic::xchg_ptr(BUSY, &_overflow_list));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8245
    }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8246
  }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8247
  // If the list was found to be empty, or we spun long
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8248
  // enough, we give up and return empty-handed. If we leave
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8249
  // the list in the BUSY state below, it must be the case that
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8250
  // some other thread holds the overflow list and will set it
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8251
  // to a non-BUSY state in the future.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8252
  if (prefix == NULL || prefix == BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8253
     // Nothing to take or waited long enough
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8254
     if (prefix == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8255
       // Write back the NULL in case we overwrote it with BUSY above
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8256
       // and it is still the same value.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8257
       (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8258
     }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8259
     return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8260
  }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8261
  assert(prefix != NULL && prefix != BUSY, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8262
  size_t i = num;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8263
  oop cur = prefix;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8264
  // Walk down the first "num" objects, unless we reach the end.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8265
  for (; i > 1 && cur->mark() != NULL; cur = oop(cur->mark()), i--);
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8266
  if (cur->mark() == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8267
    // We have "num" or fewer elements in the list, so there
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8268
    // is nothing to return to the global list.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8269
    // Write back the NULL in lieu of the BUSY we wrote
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8270
    // above, if it is still the same value.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8271
    if (_overflow_list == BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8272
      (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8273
    }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8274
  } else {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  8275
    // Chop off the suffix and return it to the global list.
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8276
    assert(cur->mark() != BUSY, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8277
    oop suffix_head = cur->mark(); // suffix will be put back on global list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8278
    cur->set_mark(NULL);           // break off suffix
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8279
    // It's possible that the list is still in the empty(busy) state
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8280
    // we left it in a short while ago; in that case we may be
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8281
    // able to place back the suffix without incurring the cost
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8282
    // of a walk down the list.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8283
    oop observed_overflow_list = _overflow_list;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8284
    oop cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8285
    bool attached = false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8286
    while (observed_overflow_list == BUSY || observed_overflow_list == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8287
      observed_overflow_list =
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8288
        (oop) Atomic::cmpxchg_ptr(suffix_head, &_overflow_list, cur_overflow_list);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8289
      if (cur_overflow_list == observed_overflow_list) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8290
        attached = true;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8291
        break;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8292
      } else cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8293
    }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8294
    if (!attached) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8295
      // Too bad, someone else sneaked in (at least) an element; we'll need
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8296
      // to do a splice. Find tail of suffix so we can prepend suffix to global
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8297
      // list.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8298
      for (cur = suffix_head; cur->mark() != NULL; cur = (oop)(cur->mark()));
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8299
      oop suffix_tail = cur;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8300
      assert(suffix_tail != NULL && suffix_tail->mark() == NULL,
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8301
             "Tautology");
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8302
      observed_overflow_list = _overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8303
      do {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8304
        cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8305
        if (cur_overflow_list != BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8306
          // Do the splice ...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8307
          suffix_tail->set_mark(markOop(cur_overflow_list));
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8308
        } else { // cur_overflow_list == BUSY
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8309
          suffix_tail->set_mark(NULL);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8310
        }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8311
        // ... and try to place spliced list back on overflow_list ...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8312
        observed_overflow_list =
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8313
          (oop) Atomic::cmpxchg_ptr(suffix_head, &_overflow_list, cur_overflow_list);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8314
      } while (cur_overflow_list != observed_overflow_list);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8315
      // ... until we have succeeded in doing so.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8316
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8317
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8319
  // Push the prefix elements on work_q
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8320
  assert(prefix != NULL, "control point invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8321
  const markOop proto = markOopDesc::prototype();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8322
  oop next;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8323
  NOT_PRODUCT(ssize_t n = 0;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8324
  for (cur = prefix; cur != NULL; cur = next) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8325
    next = oop(cur->mark());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8326
    cur->set_mark(proto);   // until proven otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8327
    assert(cur->is_oop(), "Should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8328
    bool res = work_q->push(cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8329
    assert(res, "Bit off more than we can chew?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8330
    NOT_PRODUCT(n++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8332
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8333
  assert(_num_par_pushes >= n, "Too many pops?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8334
  Atomic::add_ptr(-(intptr_t)n, &_num_par_pushes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8335
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8336
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8337
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8339
// Single-threaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8340
void CMSCollector::push_on_overflow_list(oop p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8341
  NOT_PRODUCT(_num_par_pushes++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8342
  assert(p->is_oop(), "Not an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8343
  preserve_mark_if_necessary(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8344
  p->set_mark((markOop)_overflow_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8345
  _overflow_list = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8346
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8348
// Multi-threaded; use CAS to prepend to overflow list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8349
void CMSCollector::par_push_on_overflow_list(oop p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8350
  NOT_PRODUCT(Atomic::inc_ptr(&_num_par_pushes);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8351
  assert(p->is_oop(), "Not an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8352
  par_preserve_mark_if_necessary(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8353
  oop observed_overflow_list = _overflow_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8354
  oop cur_overflow_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8355
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8356
    cur_overflow_list = observed_overflow_list;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8357
    if (cur_overflow_list != BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8358
      p->set_mark(markOop(cur_overflow_list));
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8359
    } else {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8360
      p->set_mark(NULL);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8361
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8362
    observed_overflow_list =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8363
      (oop) Atomic::cmpxchg_ptr(p, &_overflow_list, cur_overflow_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8364
  } while (cur_overflow_list != observed_overflow_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8365
}
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8366
#undef BUSY
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8368
// Single threaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8369
// General Note on GrowableArray: pushes may silently fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8370
// because we are (temporarily) out of C-heap for expanding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8371
// the stack. The problem is quite ubiquitous and affects
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8372
// a lot of code in the JVM. The prudent thing for GrowableArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8373
// to do (for now) is to exit with an error. However, that may
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8374
// be too draconian in some cases because the caller may be
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1894
diff changeset
  8375
// able to recover without much harm. For such cases, we
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8376
// should probably introduce a "soft_push" method which returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8377
// an indication of success or failure with the assumption that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8378
// the caller may be able to recover from a failure; code in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8379
// the VM can then be changed, incrementally, to deal with such
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8380
// failures where possible, thus, incrementally hardening the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8381
// in such low resource situations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8382
void CMSCollector::preserve_mark_work(oop p, markOop m) {
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8383
  _preserved_oop_stack.push(p);
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8384
  _preserved_mark_stack.push(m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8385
  assert(m == p->mark(), "Mark word changed");
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8386
  assert(_preserved_oop_stack.size() == _preserved_mark_stack.size(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8387
         "bijection");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8388
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8390
// Single threaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8391
void CMSCollector::preserve_mark_if_necessary(oop p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8392
  markOop m = p->mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8393
  if (m->must_be_preserved(p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8394
    preserve_mark_work(p, m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8395
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8396
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8398
void CMSCollector::par_preserve_mark_if_necessary(oop p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8399
  markOop m = p->mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8400
  if (m->must_be_preserved(p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8401
    MutexLockerEx x(ParGCRareEvent_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8402
    // Even though we read the mark word without holding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8403
    // the lock, we are assured that it will not change
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8404
    // because we "own" this oop, so no other thread can
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8405
    // be trying to push it on the overflow list; see
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8406
    // the assertion in preserve_mark_work() that checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8407
    // that m == p->mark().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8408
    preserve_mark_work(p, m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8409
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8410
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8412
// We should be able to do this multi-threaded,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8413
// a chunk of stack being a task (this is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8414
// correct because each oop only ever appears
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8415
// once in the overflow list. However, it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8416
// not very easy to completely overlap this with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8417
// other operations, so will generally not be done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8418
// until all work's been completed. Because we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8419
// expect the preserved oop stack (set) to be small,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8420
// it's probably fine to do this single-threaded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8421
// We can explore cleverer concurrent/overlapped/parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8422
// processing of preserved marks if we feel the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8423
// need for this in the future. Stack overflow should
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8424
// be so rare in practice and, when it happens, its
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8425
// effect on performance so great that this will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8426
// likely just be in the noise anyway.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8427
void CMSCollector::restore_preserved_marks_if_any() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8428
  assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8429
         "world should be stopped");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8430
  assert(Thread::current()->is_ConcurrentGC_thread() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8431
         Thread::current()->is_VM_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8432
         "should be single-threaded");
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8433
  assert(_preserved_oop_stack.size() == _preserved_mark_stack.size(),
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8434
         "bijection");
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8435
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8436
  while (!_preserved_oop_stack.is_empty()) {
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8437
    oop p = _preserved_oop_stack.pop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8438
    assert(p->is_oop(), "Should be an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8439
    assert(_span.contains(p), "oop should be in _span");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8440
    assert(p->mark() == markOopDesc::prototype(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8441
           "Set when taken from overflow list");
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8442
    markOop m = _preserved_mark_stack.pop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8443
    p->set_mark(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8444
  }
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8445
  assert(_preserved_mark_stack.is_empty() && _preserved_oop_stack.is_empty(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8446
         "stacks were cleared above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8447
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8449
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8450
bool CMSCollector::no_preserved_marks() const {
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  8451
  return _preserved_mark_stack.is_empty() && _preserved_oop_stack.is_empty();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8452
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8453
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8454
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8455
// Transfer some number of overflown objects to usual marking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8456
// stack. Return true if some objects were transferred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8457
bool MarkRefsIntoAndScanClosure::take_from_overflow_list() {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2154
diff changeset
  8458
  size_t num = MIN2((size_t)(_mark_stack->capacity() - _mark_stack->length())/4,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8459
                    (size_t)ParGCDesiredObjsFromOverflowList);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8461
  bool res = _collector->take_from_overflow_list(num, _mark_stack);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8462
  assert(_collector->overflow_list_is_empty() || res,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8463
         "If list is not empty, we should have taken something");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8464
  assert(!res || !_mark_stack->isEmpty(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8465
         "If we took something, it should now be on our stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8466
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8467
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8468
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8469
size_t MarkDeadObjectsClosure::do_blk(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8470
  size_t res = _sp->block_size_no_stall(addr, _collector);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8471
  if (_sp->block_is_obj(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8472
    if (_live_bit_map->isMarked(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8473
      // It can't have been dead in a previous cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8474
      guarantee(!_dead_bit_map->isMarked(addr), "No resurrection!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8475
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8476
      _dead_bit_map->mark(addr);      // mark the dead object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8477
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8478
  }
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 8076
diff changeset
  8479
  // Could be 0, if the block size could not be computed without stalling.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8480
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8481
}
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8482
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  8483
TraceCMSMemoryManagerStats::TraceCMSMemoryManagerStats(CMSCollector::CollectorState phase, GCCause::Cause cause): TraceMemoryManagerStats() {
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8484
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8485
  switch (phase) {
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8486
    case CMSCollector::InitialMarking:
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8487
      initialize(true  /* fullGC */ ,
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  8488
                 cause /* cause of the GC */,
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8489
                 true  /* recordGCBeginTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8490
                 true  /* recordPreGCUsage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8491
                 false /* recordPeakUsage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8492
                 false /* recordPostGCusage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8493
                 true  /* recordAccumulatedGCTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8494
                 false /* recordGCEndTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8495
                 false /* countCollection */  );
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8496
      break;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8497
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8498
    case CMSCollector::FinalMarking:
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8499
      initialize(true  /* fullGC */ ,
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  8500
                 cause /* cause of the GC */,
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8501
                 false /* recordGCBeginTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8502
                 false /* recordPreGCUsage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8503
                 false /* recordPeakUsage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8504
                 false /* recordPostGCusage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8505
                 true  /* recordAccumulatedGCTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8506
                 false /* recordGCEndTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8507
                 false /* countCollection */  );
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8508
      break;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8509
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8510
    case CMSCollector::Sweeping:
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8511
      initialize(true  /* fullGC */ ,
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 9342
diff changeset
  8512
                 cause /* cause of the GC */,
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8513
                 false /* recordGCBeginTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8514
                 false /* recordPreGCUsage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8515
                 true  /* recordPeakUsage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8516
                 true  /* recordPostGCusage */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8517
                 false /* recordAccumulatedGCTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8518
                 true  /* recordGCEndTime */,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8519
                 true  /* countCollection */  );
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8520
      break;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8521
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8522
    default:
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8523
      ShouldNotReachHere();
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8524
  }
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5702
diff changeset
  8525
}