src/hotspot/share/gc/cms/cmsVMOperations.cpp
author coleenp
Thu, 25 Apr 2019 10:56:31 -0400
changeset 54623 1126f0607c70
parent 52876 2d17750d41e7
child 54786 ebf733a324d4
permissions -rw-r--r--
8222811: Consolidate MutexLockerEx and MutexLocker Summary: Make MutexLocker be MutexLockerEx implementation, remove MutexLockerEx calls. Reviewed-by: dcubed, dholmes, pliden, rehn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 52876
diff changeset
     2
 * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    25
#include "precompiled.hpp"
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
    26
#include "gc/cms/cmsHeap.hpp"
52876
2d17750d41e7 8214791: Consistently name gc files containing VM operations
tschatzl
parents: 49594
diff changeset
    27
#include "gc/cms/cmsVMOperations.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    28
#include "gc/cms/concurrentMarkSweepGeneration.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    29
#include "gc/cms/concurrentMarkSweepThread.hpp"
49594
898ef81cbc0e 8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents: 49449
diff changeset
    30
#include "gc/shared/gcLocker.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    31
#include "gc/shared/gcTimer.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33107
diff changeset
    32
#include "gc/shared/gcTraceTime.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    33
#include "gc/shared/isGCActiveMark.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 47622
diff changeset
    34
#include "runtime/handles.inline.hpp"
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 47622
diff changeset
    35
#include "runtime/interfaceSupport.inline.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
    36
#include "runtime/os.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    37
#include "utilities/dtrace.hpp"
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8684
diff changeset
    38
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// Methods in abstract class VM_CMS_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
void VM_CMS_Operation::verify_before_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  if (VerifyBeforeGC &&
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
    44
      CMSHeap::heap()->total_collections() >= VerifyGCStartAt) {
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37129
diff changeset
    45
    GCTraceTime(Info, gc, phases, verify) tm("Verify Before", _collector->_gc_timer_cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    FreelistLocker x(_collector);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 52876
diff changeset
    48
    MutexLocker  y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
    49
    CMSHeap::heap()->prepare_for_verify();
14076
84643cfaeaa8 8000831: Heap verification output incorrect/incomplete
johnc
parents: 12630
diff changeset
    50
    Universe::verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
void VM_CMS_Operation::verify_after_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (VerifyAfterGC &&
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
    56
      CMSHeap::heap()->total_collections() >= VerifyGCStartAt) {
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37129
diff changeset
    57
    GCTraceTime(Info, gc, phases, verify) tm("Verify After", _collector->_gc_timer_cm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    FreelistLocker x(_collector);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 52876
diff changeset
    60
    MutexLocker  y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
14076
84643cfaeaa8 8000831: Heap verification output incorrect/incomplete
johnc
parents: 12630
diff changeset
    61
    Universe::verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
bool VM_CMS_Operation::lost_race() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (CMSCollector::abstract_state() == CMSCollector::Idling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    // We lost a race to a foreground collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    // -- there's nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  assert(CMSCollector::abstract_state() == legal_state(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
         "Inconsistent collector state?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
bool VM_CMS_Operation::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  assert(!CMSCollector::foregroundGCShouldWait(), "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
         "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  Heap_lock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  if (lost_race()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    assert(_prologue_succeeded == false, "Initialized in c'tor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    _prologue_succeeded = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  return _prologue_succeeded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
void VM_CMS_Operation::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  assert(!CMSCollector::foregroundGCShouldWait(), "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
         "Possible deadlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
40892
330a02d935ad 8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents: 37146
diff changeset
    98
  if (Universe::has_reference_pending_list()) {
330a02d935ad 8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents: 37146
diff changeset
    99
    Heap_lock->notify_all();
330a02d935ad 8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents: 37146
diff changeset
   100
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// Methods in class VM_CMS_Initial_Mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
void VM_CMS_Initial_Mark::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  if (lost_race()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
22520
b9e88eed82d7 8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents: 21767
diff changeset
   112
  HS_PRIVATE_CMS_INITMARK_BEGIN();
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 31358
diff changeset
   113
  GCIdMark gc_id_mark(_gc_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 18025
diff changeset
   115
  _collector->_gc_timer_cm->register_gc_pause_start("Initial Mark");
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   116
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   117
  CMSHeap* heap = CMSHeap::heap();
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   118
  GCCauseSetter gccs(heap, GCCause::_cms_initial_mark);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  VM_CMS_Operation::verify_before_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  IsGCActiveMark x; // stop-world GC active
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   123
  _collector->do_CMS_operation(CMSCollector::CMS_op_checkpointRootsInitial, heap->gc_cause());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  VM_CMS_Operation::verify_after_gc();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   126
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 18025
diff changeset
   127
  _collector->_gc_timer_cm->register_gc_pause_end();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   128
22520
b9e88eed82d7 8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents: 21767
diff changeset
   129
  HS_PRIVATE_CMS_INITMARK_END();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// Methods in class VM_CMS_Final_Remark_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
//////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void VM_CMS_Final_Remark::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  if (lost_race()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  }
22520
b9e88eed82d7 8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents: 21767
diff changeset
   140
  HS_PRIVATE_CMS_REMARK_BEGIN();
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 31358
diff changeset
   141
  GCIdMark gc_id_mark(_gc_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 18025
diff changeset
   143
  _collector->_gc_timer_cm->register_gc_pause_start("Final Mark");
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   144
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   145
  CMSHeap* heap = CMSHeap::heap();
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   146
  GCCauseSetter gccs(heap, GCCause::_cms_final_remark);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  VM_CMS_Operation::verify_before_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  IsGCActiveMark x; // stop-world GC active
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   151
  _collector->do_CMS_operation(CMSCollector::CMS_op_checkpointRootsFinal, heap->gc_cause());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  VM_CMS_Operation::verify_after_gc();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   154
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   155
  _collector->save_heap_summary();
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 18025
diff changeset
   156
  _collector->_gc_timer_cm->register_gc_pause_end();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   157
22520
b9e88eed82d7 8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents: 21767
diff changeset
   158
  HS_PRIVATE_CMS_REMARK_END();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// VM operation to invoke a concurrent collection of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// GenCollectedHeap heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
void VM_GenCollectFullConcurrent::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  assert(Thread::current()->is_VM_thread(), "Should be VM thread");
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   165
  assert(GCLockerInvokesConcurrent || ExplicitGCInvokesConcurrent, "Unexpected");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   167
  CMSHeap* heap = CMSHeap::heap();
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   168
  if (_gc_count_before == heap->total_collections()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // The "full" of do_full_collection call below "forces"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // a collection; the second arg, 0, below ensures that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // only the young gen is collected. XXX In the future,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // we'll probably need to have something in this interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // to say do this only if we are sure we will not bail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // out to a full collection in this attempt, but that's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    // for the future.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      "We can only be executing this arm of if at a safepoint");
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   178
    GCCauseSetter gccs(heap, _gc_cause);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   179
    heap->do_full_collection(heap->must_clear_all_soft_refs(), GenCollectedHeap::YoungGen);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  } // Else no need for a foreground young gc
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   181
  assert((_gc_count_before < heap->total_collections()) ||
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
   182
         (GCLocker::is_active() /* gc may have been skipped */
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   183
          && (_gc_count_before == heap->total_collections())),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
         "total_collections() should be monotonically increasing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 52876
diff changeset
   186
  MutexLocker x(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   187
  assert(_full_gc_count_before <= heap->total_full_collections(), "Error");
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   188
  if (heap->total_full_collections() == _full_gc_count_before) {
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   189
    // Nudge the CMS thread to start a concurrent collection.
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14077
diff changeset
   190
    CMSCollector::request_full_gc(_full_gc_count_before, _gc_cause);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  } else {
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   192
    assert(_full_gc_count_before < heap->total_full_collections(), "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    FullGCCount_lock->notify_all();  // Inform the Java thread its work is done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
bool VM_GenCollectFullConcurrent::evaluate_at_safepoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  Thread* thr = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  assert(thr != NULL, "Unexpected tid");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  if (!thr->is_Java_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    assert(thr->is_VM_thread(), "Expected to be evaluated by VM thread");
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   202
    CMSHeap* heap = CMSHeap::heap();
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   203
    if (_gc_count_before != heap->total_collections()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      // No need to do a young gc, we'll just nudge the CMS thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      // in the doit() method above, to be executed soon.
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   206
      assert(_gc_count_before < heap->total_collections(),
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22520
diff changeset
   207
             "total_collections() should be monotonically increasing");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      return false;  // no need for foreground young gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  return true;       // may still need foreground young gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
void VM_GenCollectFullConcurrent::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  Thread* thr = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(thr->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  JavaThread* jt = (JavaThread*)thr;
40892
330a02d935ad 8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents: 37146
diff changeset
   219
330a02d935ad 8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents: 37146
diff changeset
   220
  if (Universe::has_reference_pending_list()) {
330a02d935ad 8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents: 37146
diff changeset
   221
    Heap_lock->notify_all();
330a02d935ad 8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents: 37146
diff changeset
   222
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // It is fine to test whether completed collections has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // exceeded our request count without locking because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // the completion count is monotonically increasing;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // this will break for very long-running apps when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // count overflows and wraps around. XXX fix me !!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // e.g. at the rate of 1 full gc per ms, this could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // overflow in about 1000 years.
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   232
  CMSHeap* heap = CMSHeap::heap();
5433
c182d4c3039e 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 1
diff changeset
   233
  if (_gc_cause != GCCause::_gc_locker &&
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   234
      heap->total_full_collections_completed() <= _full_gc_count_before) {
6058
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
   235
    // maybe we should change the condition to test _gc_cause ==
31032
8e72621ca186 8072913: [REDO] GCCause should distinguish jcmd GC.run from System.gc()
ysuenaga
parents: 30764
diff changeset
   236
    // GCCause::_java_lang_system_gc or GCCause::_dcmd_gc_run,
8e72621ca186 8072913: [REDO] GCCause should distinguish jcmd GC.run from System.gc()
ysuenaga
parents: 30764
diff changeset
   237
    // instead of _gc_cause != GCCause::_gc_locker
8e72621ca186 8072913: [REDO] GCCause should distinguish jcmd GC.run from System.gc()
ysuenaga
parents: 30764
diff changeset
   238
    assert(GCCause::is_user_requested_gc(_gc_cause),
6058
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
   239
           "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
   240
    assert(ExplicitGCInvokesConcurrent, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    // Now, wait for witnessing concurrent gc cycle to complete,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    // but do so in native mode, because we want to lock the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // FullGCEvent_lock, which may be needed by the VM thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    // or by the CMS thread, so we do not want to be suspended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    // while holding that lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    ThreadToNativeFromVM native(jt);
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 52876
diff changeset
   247
    MutexLocker ml(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    // Either a concurrent or a stop-world full gc is sufficient
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    // witness to our request.
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   250
    while (heap->total_full_collections_completed() <= _full_gc_count_before) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 52876
diff changeset
   251
      FullGCCount_lock->wait_without_safepoint_check();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}