hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/vmCMSOperations.cpp
author tonyp
Mon, 28 Jun 2010 14:13:17 -0400
changeset 6058 9c9aec6ab47d
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
permissions -rw-r--r--
6944166: G1: explicit GCs are not always handled correctly Summary: G1 was not handling explicit GCs correctly in many ways. It does now. See the CR for the list of improvements contained in this changeset. Reviewed-by: iveresov, ysr, johnc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5433
diff changeset
     2
 * Copyright (c) 2005, 2006, 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: 5433
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5433
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: 5433
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
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_vmCMSOperations.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
HS_DTRACE_PROBE_DECL(hs_private, cms__initmark__begin);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
HS_DTRACE_PROBE_DECL(hs_private, cms__initmark__end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
HS_DTRACE_PROBE_DECL(hs_private, cms__remark__begin);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
HS_DTRACE_PROBE_DECL(hs_private, cms__remark__end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Methods in abstract class VM_CMS_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
void VM_CMS_Operation::acquire_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // The caller may block while communicating
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // with the SLT thread in order to acquire/release the PLL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  ConcurrentMarkSweepThread::slt()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    manipulatePLL(SurrogateLockerThread::acquirePLL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
void VM_CMS_Operation::release_and_notify_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // The caller may block while communicating
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // with the SLT thread in order to acquire/release the PLL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  ConcurrentMarkSweepThread::slt()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    manipulatePLL(SurrogateLockerThread::releaseAndNotifyPLL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
void VM_CMS_Operation::verify_before_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  if (VerifyBeforeGC &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      GenCollectedHeap::heap()->total_collections() >= VerifyGCStartAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    FreelistLocker x(_collector);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    MutexLockerEx  y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    Universe::heap()->prepare_for_verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    Universe::verify(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
void VM_CMS_Operation::verify_after_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  if (VerifyAfterGC &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      GenCollectedHeap::heap()->total_collections() >= VerifyGCStartAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    FreelistLocker x(_collector);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    MutexLockerEx  y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    Universe::verify(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
bool VM_CMS_Operation::lost_race() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (CMSCollector::abstract_state() == CMSCollector::Idling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // We lost a race to a foreground collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    // -- there's nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  assert(CMSCollector::abstract_state() == legal_state(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
         "Inconsistent collector state?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
bool VM_CMS_Operation::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  assert(!CMSCollector::foregroundGCShouldWait(), "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
         "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  if (needs_pll()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    acquire_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Get the Heap_lock after the pending_list_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  Heap_lock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  if (lost_race()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    assert(_prologue_succeeded == false, "Initialized in c'tor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    if (needs_pll()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    _prologue_succeeded = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  return _prologue_succeeded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
void VM_CMS_Operation::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  assert(!CMSCollector::foregroundGCShouldWait(), "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
         "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Release the Heap_lock first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  if (needs_pll()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// Methods in class VM_CMS_Initial_Mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
void VM_CMS_Initial_Mark::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  if (lost_race()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  HS_DTRACE_PROBE(hs_private, cms__initmark__begin);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  GCCauseSetter gccs(gch, GCCause::_cms_initial_mark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  VM_CMS_Operation::verify_before_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  IsGCActiveMark x; // stop-world GC active
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  _collector->do_CMS_operation(CMSCollector::CMS_op_checkpointRootsInitial);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  VM_CMS_Operation::verify_after_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  HS_DTRACE_PROBE(hs_private, cms__initmark__end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
// Methods in class VM_CMS_Final_Remark_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
void VM_CMS_Final_Remark::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  if (lost_race()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  HS_DTRACE_PROBE(hs_private, cms__remark__begin);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  GCCauseSetter gccs(gch, GCCause::_cms_final_remark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  VM_CMS_Operation::verify_before_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  IsGCActiveMark x; // stop-world GC active
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  _collector->do_CMS_operation(CMSCollector::CMS_op_checkpointRootsFinal);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  VM_CMS_Operation::verify_after_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  HS_DTRACE_PROBE(hs_private, cms__remark__end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// VM operation to invoke a concurrent collection of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// GenCollectedHeap heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
void VM_GenCollectFullConcurrent::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  assert(Thread::current()->is_VM_thread(), "Should be VM thread");
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   166
  assert(GCLockerInvokesConcurrent || ExplicitGCInvokesConcurrent, "Unexpected");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  if (_gc_count_before == gch->total_collections()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // The "full" of do_full_collection call below "forces"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // a collection; the second arg, 0, below ensures that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // only the young gen is collected. XXX In the future,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // we'll probably need to have something in this interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // to say do this only if we are sure we will not bail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    // out to a full collection in this attempt, but that's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    // for the future.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      "We can only be executing this arm of if at a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    gch->do_full_collection(gch->must_clear_all_soft_refs(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
                            0 /* collect only youngest gen */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  } // Else no need for a foreground young gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  assert((_gc_count_before < gch->total_collections()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
         (GC_locker::is_active() /* gc may have been skipped */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
          && (_gc_count_before == gch->total_collections())),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
         "total_collections() should be monotonically increasing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  MutexLockerEx x(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  if (gch->total_full_collections() == _full_gc_count_before) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    // Disable iCMS until the full collection is done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    CMSCollector::disable_icms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    // In case CMS thread was in icms_wait(), wake it up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    CMSCollector::start_icms();
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   194
    // Nudge the CMS thread to start a concurrent collection.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    CMSCollector::request_full_gc(_full_gc_count_before);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    FullGCCount_lock->notify_all();  // Inform the Java thread its work is done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
bool VM_GenCollectFullConcurrent::evaluate_at_safepoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  Thread* thr = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  assert(thr != NULL, "Unexpected tid");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  if (!thr->is_Java_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    assert(thr->is_VM_thread(), "Expected to be evaluated by VM thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    if (_gc_count_before != gch->total_collections()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      // No need to do a young gc, we'll just nudge the CMS thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      // in the doit() method above, to be executed soon.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      assert(_gc_count_before < gch->total_collections(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
             "total_collections() should be monotnically increasing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      return false;  // no need for foreground young gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  return true;       // may still need foreground young gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
void VM_GenCollectFullConcurrent::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  Thread* thr = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  assert(thr->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  JavaThread* jt = (JavaThread*)thr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Release the Heap_lock first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // It is fine to test whether completed collections has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // exceeded our request count without locking because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // the completion count is monotonically increasing;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // this will break for very long-running apps when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // count overflows and wraps around. XXX fix me !!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // e.g. at the rate of 1 full gc per ms, this could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // overflow in about 1000 years.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  GenCollectedHeap* gch = GenCollectedHeap::heap();
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   235
  if (_gc_cause != GCCause::_gc_locker &&
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   236
      gch->total_full_collections_completed() <= _full_gc_count_before) {
6058
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
   237
    // maybe we should change the condition to test _gc_cause ==
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
   238
    // GCCause::_java_lang_system_gc, instead of
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
   239
    // _gc_cause != GCCause::_gc_locker
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
   240
    assert(_gc_cause == GCCause::_java_lang_system_gc,
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
   241
           "the only way to get here if this was a System.gc()-induced GC");
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   242
    assert(ExplicitGCInvokesConcurrent, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // Now, wait for witnessing concurrent gc cycle to complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    // but do so in native mode, because we want to lock the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    // FullGCEvent_lock, which may be needed by the VM thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    // or by the CMS thread, so we do not want to be suspended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    // while holding that lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    ThreadToNativeFromVM native(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    MutexLockerEx ml(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    // Either a concurrent or a stop-world full gc is sufficient
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    // witness to our request.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    while (gch->total_full_collections_completed() <= _full_gc_count_before) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      FullGCCount_lock->wait(Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // Enable iCMS back.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  CMSCollector::enable_icms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
}