annotate src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.cpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents cd3ef3fd20dd
children a181f3a124dd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1887
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
2 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
27 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
28 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
29 #include "memory/genCollectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
30 #include "oops/instanceRefKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
31 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
32 #include "runtime/init.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
33 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
34 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
35 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
36 #include "runtime/mutexLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
37 #include "runtime/os.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1887
diff changeset
38 #include "runtime/vmThread.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // ======= Concurrent Mark Sweep Thread ========
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // The CMS thread is created when Concurrent Mark Sweep is used in the
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // older of two generations in a generational memory system.
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ConcurrentMarkSweepThread*
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ConcurrentMarkSweepThread::_cmst = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 CMSCollector* ConcurrentMarkSweepThread::_collector = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 bool ConcurrentMarkSweepThread::_should_terminate = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 int ConcurrentMarkSweepThread::_CMS_flag = CMS_nil;
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 volatile jint ConcurrentMarkSweepThread::_pending_yields = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 volatile jint ConcurrentMarkSweepThread::_pending_decrements = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 volatile bool ConcurrentMarkSweepThread::_icms_enabled = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 volatile bool ConcurrentMarkSweepThread::_should_run = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // When icms is enabled, the icms thread is stopped until explicitly
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // started.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 volatile bool ConcurrentMarkSweepThread::_should_stop = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 SurrogateLockerThread*
a61af66fc99e Initial load
duke
parents:
diff changeset
61 ConcurrentMarkSweepThread::_slt = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 SurrogateLockerThread::SLT_msg_type
a61af66fc99e Initial load
duke
parents:
diff changeset
63 ConcurrentMarkSweepThread::_sltBuffer = SurrogateLockerThread::empty;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 Monitor*
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ConcurrentMarkSweepThread::_sltMonitor = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 ConcurrentMarkSweepThread::ConcurrentMarkSweepThread(CMSCollector* collector)
a61af66fc99e Initial load
duke
parents:
diff changeset
68 : ConcurrentGCThread() {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 assert(UseConcMarkSweepGC, "UseConcMarkSweepGC should be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
70 assert(_cmst == NULL, "CMS thread already created");
a61af66fc99e Initial load
duke
parents:
diff changeset
71 _cmst = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 assert(_collector == NULL, "Collector already set");
a61af66fc99e Initial load
duke
parents:
diff changeset
73 _collector = collector;
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 set_name("Concurrent Mark-Sweep GC Thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (os::create_thread(this, os::cgc_thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // XXX: need to set this to low priority
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // unless "agressive mode" set; priority
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // should be just less than that of VMThread.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 os::set_priority(this, NearMaxPriority);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if (!DisableStartThread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 os::start_thread(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 _sltMonitor = SLT_lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 set_icms_enabled(CMSIncrementalMode);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 void ConcurrentMarkSweepThread::run() {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 assert(this == cmst(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 this->record_stack_base_and_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
94 this->initialize_thread_local_storage();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 this->set_active_handles(JNIHandleBlock::allocate_block());
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // From this time Thread::current() should be working.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 assert(this == Thread::current(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
98 if (BindCMSThreadToCPU && !os::bind_to_processor(CPUForCMSThread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 warning("Couldn't bind CMS thread to processor %u", CPUForCMSThread);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Wait until Universe::is_fully_initialized()
a61af66fc99e Initial load
duke
parents:
diff changeset
102 {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 CMSLoopCountWarn loopX("CMS::run", "waiting for "
a61af66fc99e Initial load
duke
parents:
diff changeset
104 "Universe::is_fully_initialized()", 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 MutexLockerEx x(CGC_lock, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 set_CMS_flag(CMS_cms_wants_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Wait until Universe is initialized and all initialization is completed.
a61af66fc99e Initial load
duke
parents:
diff changeset
108 while (!is_init_completed() && !Universe::is_fully_initialized() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
109 !_should_terminate) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 CGC_lock->wait(true, 200);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 loopX.tick();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Wait until the surrogate locker thread that will do
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // pending list locking on our behalf has been created.
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // We cannot start the SLT thread ourselves since we need
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // to be a JavaThread to do so.
a61af66fc99e Initial load
duke
parents:
diff changeset
117 CMSLoopCountWarn loopY("CMS::run", "waiting for SLT installation", 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 while (_slt == NULL && !_should_terminate) {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 CGC_lock->wait(true, 200);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 loopY.tick();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 clear_CMS_flag(CMS_cms_wants_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 while (!_should_terminate) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 sleepBeforeNextCycle();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 if (_should_terminate) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 _collector->collect_in_background(false); // !clear_all_soft_refs
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 assert(_should_terminate, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Check that the state of any protocol for synchronization
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // between background (CMS) and foreground collector is "clean"
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // (i.e. will not potentially block the foreground collector,
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // requiring action by us).
a61af66fc99e Initial load
duke
parents:
diff changeset
135 verify_ok_to_terminate();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Signal that it is terminated
a61af66fc99e Initial load
duke
parents:
diff changeset
137 {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 MutexLockerEx mu(Terminator_lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 assert(_cmst == this, "Weird!");
a61af66fc99e Initial load
duke
parents:
diff changeset
141 _cmst = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 Terminator_lock->notify();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Thread destructor usually does this..
a61af66fc99e Initial load
duke
parents:
diff changeset
146 ThreadLocalStorage::set_thread(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void ConcurrentMarkSweepThread::verify_ok_to_terminate() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 assert(!(CGC_lock->owned_by_self() || cms_thread_has_cms_token() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
152 cms_thread_wants_cms_token()),
a61af66fc99e Initial load
duke
parents:
diff changeset
153 "Must renounce all worldly possessions and desires for nirvana");
a61af66fc99e Initial load
duke
parents:
diff changeset
154 _collector->verify_ok_to_terminate();
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // create and start a new ConcurrentMarkSweep Thread for given CMS generation
a61af66fc99e Initial load
duke
parents:
diff changeset
159 ConcurrentMarkSweepThread* ConcurrentMarkSweepThread::start(CMSCollector* collector) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if (!_should_terminate) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 assert(cmst() == NULL, "start() called twice?");
a61af66fc99e Initial load
duke
parents:
diff changeset
162 ConcurrentMarkSweepThread* th = new ConcurrentMarkSweepThread(collector);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 assert(cmst() == th, "Where did the just-created CMS thread go?");
a61af66fc99e Initial load
duke
parents:
diff changeset
164 return th;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void ConcurrentMarkSweepThread::stop() {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 if (CMSIncrementalMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // Disable incremental mode and wake up the thread so it notices the change.
a61af66fc99e Initial load
duke
parents:
diff changeset
172 disable_icms();
a61af66fc99e Initial load
duke
parents:
diff changeset
173 start_icms();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // it is ok to take late safepoints here, if needed
a61af66fc99e Initial load
duke
parents:
diff changeset
176 {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 MutexLockerEx x(Terminator_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 _should_terminate = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 { // Now post a notify on CGC_lock so as to nudge
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // CMS thread(s) that might be slumbering in
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // sleepBeforeNextCycle.
a61af66fc99e Initial load
duke
parents:
diff changeset
183 MutexLockerEx x(CGC_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 CGC_lock->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 { // Now wait until (all) CMS thread(s) have exited
a61af66fc99e Initial load
duke
parents:
diff changeset
187 MutexLockerEx x(Terminator_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 while(cmst() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 Terminator_lock->wait();
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 void ConcurrentMarkSweepThread::threads_do(ThreadClosure* tc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 assert(tc != NULL, "Null ThreadClosure");
a61af66fc99e Initial load
duke
parents:
diff changeset
196 if (_cmst != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 tc->do_thread(_cmst);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 assert(Universe::is_fully_initialized(),
a61af66fc99e Initial load
duke
parents:
diff changeset
200 "Called too early, make sure heap is fully initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
201 if (_collector != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 AbstractWorkGang* gang = _collector->conc_workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
203 if (gang != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 gang->threads_do(tc);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 void ConcurrentMarkSweepThread::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 st->print("\"%s\" ", name());
a61af66fc99e Initial load
duke
parents:
diff changeset
211 Thread::print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 void ConcurrentMarkSweepThread::print_all_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 if (_cmst != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 _cmst->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if (_collector != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 AbstractWorkGang* gang = _collector->conc_workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
221 if (gang != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 gang->print_worker_threads_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 void ConcurrentMarkSweepThread::synchronize(bool is_cms_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 assert(UseConcMarkSweepGC, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 MutexLockerEx x(CGC_lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
231 Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
232 if (!is_cms_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 assert(Thread::current()->is_VM_thread(), "Not a VM thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
234 CMSSynchronousYieldRequest yr;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 while (CMS_flag_is_set(CMS_cms_has_token)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // indicate that we want to get the token
a61af66fc99e Initial load
duke
parents:
diff changeset
237 set_CMS_flag(CMS_vm_wants_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 CGC_lock->wait(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // claim the token and proceed
a61af66fc99e Initial load
duke
parents:
diff changeset
241 clear_CMS_flag(CMS_vm_wants_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 set_CMS_flag(CMS_vm_has_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 assert(Thread::current()->is_ConcurrentGC_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
245 "Not a CMS thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // The following barrier assumes there's only one CMS thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // This will need to be modified is there are more CMS threads than one.
a61af66fc99e Initial load
duke
parents:
diff changeset
248 while (CMS_flag_is_set(CMS_vm_has_token | CMS_vm_wants_token)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 set_CMS_flag(CMS_cms_wants_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 CGC_lock->wait(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // claim the token
a61af66fc99e Initial load
duke
parents:
diff changeset
253 clear_CMS_flag(CMS_cms_wants_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
254 set_CMS_flag(CMS_cms_has_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 void ConcurrentMarkSweepThread::desynchronize(bool is_cms_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 assert(UseConcMarkSweepGC, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 MutexLockerEx x(CGC_lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
262 Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 if (!is_cms_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 assert(Thread::current()->is_VM_thread(), "Not a VM thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
265 assert(CMS_flag_is_set(CMS_vm_has_token), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
266 clear_CMS_flag(CMS_vm_has_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 if (CMS_flag_is_set(CMS_cms_wants_token)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // wake-up a waiting CMS thread
a61af66fc99e Initial load
duke
parents:
diff changeset
269 CGC_lock->notify();
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271 assert(!CMS_flag_is_set(CMS_vm_has_token | CMS_vm_wants_token),
a61af66fc99e Initial load
duke
parents:
diff changeset
272 "Should have been cleared");
a61af66fc99e Initial load
duke
parents:
diff changeset
273 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 assert(Thread::current()->is_ConcurrentGC_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
275 "Not a CMS thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
276 assert(CMS_flag_is_set(CMS_cms_has_token), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
277 clear_CMS_flag(CMS_cms_has_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
278 if (CMS_flag_is_set(CMS_vm_wants_token)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // wake-up a waiting VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
280 CGC_lock->notify();
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282 assert(!CMS_flag_is_set(CMS_cms_has_token | CMS_cms_wants_token),
a61af66fc99e Initial load
duke
parents:
diff changeset
283 "Should have been cleared");
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286
1887
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
287 // Wait until the next synchronous GC, a concurrent full gc request,
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
288 // or a timeout, whichever is earlier.
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
289 void ConcurrentMarkSweepThread::wait_on_cms_lock(long t_millis) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
290 MutexLockerEx x(CGC_lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
291 Mutex::_no_safepoint_check_flag);
1887
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
292 if (_should_terminate || _collector->_full_gc_requested) {
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
293 return;
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
294 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
295 set_CMS_flag(CMS_cms_wants_token); // to provoke notifies
1887
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
296 CGC_lock->wait(Mutex::_no_safepoint_check_flag, t_millis);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
297 clear_CMS_flag(CMS_cms_wants_token);
a61af66fc99e Initial load
duke
parents:
diff changeset
298 assert(!CMS_flag_is_set(CMS_cms_has_token | CMS_cms_wants_token),
a61af66fc99e Initial load
duke
parents:
diff changeset
299 "Should not be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 void ConcurrentMarkSweepThread::sleepBeforeNextCycle() {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 while (!_should_terminate) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 if (CMSIncrementalMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
305 icms_wait();
a61af66fc99e Initial load
duke
parents:
diff changeset
306 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 } else {
1887
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
308 // Wait until the next synchronous GC, a concurrent full gc
cd3ef3fd20dd 6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents: 1552
diff changeset
309 // request or a timeout, whichever is earlier.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
310 wait_on_cms_lock(CMSWaitDuration);
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // Check if we should start a CMS collection cycle
a61af66fc99e Initial load
duke
parents:
diff changeset
313 if (_collector->shouldConcurrentCollect()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // .. collection criterion not yet met, let's go back
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // and wait some more
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // Incremental CMS
a61af66fc99e Initial load
duke
parents:
diff changeset
322 void ConcurrentMarkSweepThread::start_icms() {
a61af66fc99e Initial load
duke
parents:
diff changeset
323 assert(UseConcMarkSweepGC && CMSIncrementalMode, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
324 MutexLockerEx x(iCMS_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 trace_state("start_icms");
a61af66fc99e Initial load
duke
parents:
diff changeset
326 _should_run = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 iCMS_lock->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 void ConcurrentMarkSweepThread::stop_icms() {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 assert(UseConcMarkSweepGC && CMSIncrementalMode, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
332 MutexLockerEx x(iCMS_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
333 if (!_should_stop) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 trace_state("stop_icms");
a61af66fc99e Initial load
duke
parents:
diff changeset
335 _should_stop = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 _should_run = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 asynchronous_yield_request();
a61af66fc99e Initial load
duke
parents:
diff changeset
338 iCMS_lock->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340 }
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 void ConcurrentMarkSweepThread::icms_wait() {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 assert(UseConcMarkSweepGC && CMSIncrementalMode, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
344 if (_should_stop && icms_enabled()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 MutexLockerEx x(iCMS_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 trace_state("pause_icms");
a61af66fc99e Initial load
duke
parents:
diff changeset
347 _collector->stats().stop_cms_timer();
a61af66fc99e Initial load
duke
parents:
diff changeset
348 while(!_should_run && icms_enabled()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
349 iCMS_lock->wait(Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 _collector->stats().start_cms_timer();
a61af66fc99e Initial load
duke
parents:
diff changeset
352 _should_stop = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 trace_state("pause_icms end");
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // Note: this method, although exported by the ConcurrentMarkSweepThread,
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // which is a non-JavaThread, can only be called by a JavaThread.
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // Currently this is done at vm creation time (post-vm-init) by the
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // main/Primordial (Java)Thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // XXX Consider changing this in the future to allow the CMS thread
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // itself to create this thread?
a61af66fc99e Initial load
duke
parents:
diff changeset
363 void ConcurrentMarkSweepThread::makeSurrogateLockerThread(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 assert(UseConcMarkSweepGC, "SLT thread needed only for CMS GC");
a61af66fc99e Initial load
duke
parents:
diff changeset
365 assert(_slt == NULL, "SLT already created");
a61af66fc99e Initial load
duke
parents:
diff changeset
366 _slt = SurrogateLockerThread::make(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }