src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp

Thu, 13 Feb 2014 17:44:39 +0100

author
stefank
date
Thu, 13 Feb 2014 17:44:39 +0100
changeset 6971
7426d8d76305
parent 6680
78bbf4d43a14
child 6876
710a3c8b516e
permissions
-rw-r--r--

8034761: Remove the do_code_roots parameter from process_strong_roots
Reviewed-by: tschatzl, mgerdin, jmasa

duke@435 1 /*
drchase@6680 2 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPTHREAD_HPP
stefank@2314 26 #define SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPTHREAD_HPP
stefank@2314 27
stefank@2314 28 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp"
stefank@2314 29 #include "gc_implementation/shared/concurrentGCThread.hpp"
stefank@4299 30 #include "runtime/thread.inline.hpp"
stefank@2314 31
duke@435 32 class ConcurrentMarkSweepGeneration;
duke@435 33 class CMSCollector;
duke@435 34
ysr@2647 35 // The Concurrent Mark Sweep GC Thread
duke@435 36 class ConcurrentMarkSweepThread: public ConcurrentGCThread {
duke@435 37 friend class VMStructs;
duke@435 38 friend class ConcurrentMarkSweepGeneration; // XXX should remove friendship
duke@435 39 friend class CMSCollector;
duke@435 40 public:
duke@435 41 virtual void run();
duke@435 42
duke@435 43 private:
duke@435 44 static ConcurrentMarkSweepThread* _cmst;
duke@435 45 static CMSCollector* _collector;
duke@435 46 static SurrogateLockerThread* _slt;
duke@435 47 static SurrogateLockerThread::SLT_msg_type _sltBuffer;
duke@435 48 static Monitor* _sltMonitor;
duke@435 49
duke@435 50 static bool _should_terminate;
duke@435 51
duke@435 52 enum CMS_flag_type {
duke@435 53 CMS_nil = NoBits,
duke@435 54 CMS_cms_wants_token = nth_bit(0),
duke@435 55 CMS_cms_has_token = nth_bit(1),
duke@435 56 CMS_vm_wants_token = nth_bit(2),
duke@435 57 CMS_vm_has_token = nth_bit(3)
duke@435 58 };
duke@435 59
duke@435 60 static int _CMS_flag;
duke@435 61
duke@435 62 static bool CMS_flag_is_set(int b) { return (_CMS_flag & b) != 0; }
duke@435 63 static bool set_CMS_flag(int b) { return (_CMS_flag |= b) != 0; }
duke@435 64 static bool clear_CMS_flag(int b) { return (_CMS_flag &= ~b) != 0; }
duke@435 65 void sleepBeforeNextCycle();
duke@435 66
duke@435 67 // CMS thread should yield for a young gen collection, direct allocation,
duke@435 68 // and iCMS activity.
duke@435 69 static char _pad_1[64 - sizeof(jint)]; // prevent cache-line sharing
duke@435 70 static volatile jint _pending_yields;
duke@435 71 static volatile jint _pending_decrements; // decrements to _pending_yields
duke@435 72 static char _pad_2[64 - sizeof(jint)]; // prevent cache-line sharing
duke@435 73
duke@435 74 // Tracing messages, enabled by CMSTraceThreadState.
duke@435 75 static inline void trace_state(const char* desc);
duke@435 76
ysr@2647 77 static volatile int _icms_disabled; // a counter to track #iCMS disable & enable
duke@435 78 static volatile bool _should_run; // iCMS may run
duke@435 79 static volatile bool _should_stop; // iCMS should stop
duke@435 80
duke@435 81 // debugging
duke@435 82 void verify_ok_to_terminate() const PRODUCT_RETURN;
duke@435 83
duke@435 84 public:
duke@435 85 // Constructor
duke@435 86 ConcurrentMarkSweepThread(CMSCollector* collector);
duke@435 87
duke@435 88 static void makeSurrogateLockerThread(TRAPS);
duke@435 89 static SurrogateLockerThread* slt() { return _slt; }
duke@435 90
duke@435 91 // Tester
duke@435 92 bool is_ConcurrentGC_thread() const { return true; }
duke@435 93
duke@435 94 static void threads_do(ThreadClosure* tc);
duke@435 95
duke@435 96 // Printing
duke@435 97 void print_on(outputStream* st) const;
duke@435 98 void print() const { print_on(tty); }
duke@435 99 static void print_all_on(outputStream* st);
duke@435 100 static void print_all() { print_all_on(tty); }
duke@435 101
duke@435 102 // Returns the CMS Thread
duke@435 103 static ConcurrentMarkSweepThread* cmst() { return _cmst; }
duke@435 104 static CMSCollector* collector() { return _collector; }
duke@435 105
duke@435 106 // Create and start the CMS Thread, or stop it on shutdown
duke@435 107 static ConcurrentMarkSweepThread* start(CMSCollector* collector);
duke@435 108 static void stop();
duke@435 109 static bool should_terminate() { return _should_terminate; }
duke@435 110
duke@435 111 // Synchronization using CMS token
duke@435 112 static void synchronize(bool is_cms_thread);
duke@435 113 static void desynchronize(bool is_cms_thread);
duke@435 114 static bool vm_thread_has_cms_token() {
duke@435 115 return CMS_flag_is_set(CMS_vm_has_token);
duke@435 116 }
duke@435 117 static bool cms_thread_has_cms_token() {
duke@435 118 return CMS_flag_is_set(CMS_cms_has_token);
duke@435 119 }
duke@435 120 static bool vm_thread_wants_cms_token() {
duke@435 121 return CMS_flag_is_set(CMS_vm_wants_token);
duke@435 122 }
duke@435 123 static bool cms_thread_wants_cms_token() {
duke@435 124 return CMS_flag_is_set(CMS_cms_wants_token);
duke@435 125 }
duke@435 126
duke@435 127 // Wait on CMS lock until the next synchronous GC
ysr@2242 128 // or given timeout, whichever is earlier. A timeout value
ysr@2242 129 // of 0 indicates that there is no upper bound on the wait time.
ysr@2242 130 // A concurrent full gc request terminates the wait.
ysr@2242 131 void wait_on_cms_lock(long t_millis);
duke@435 132
jmasa@4679 133 // Wait on CMS lock until the next synchronous GC
jmasa@4679 134 // or given timeout, whichever is earlier. A timeout value
jmasa@4679 135 // of 0 indicates that there is no upper bound on the wait time.
jmasa@4679 136 // A concurrent full gc request terminates the wait.
jmasa@4679 137 void wait_on_cms_lock_for_scavenge(long t_millis);
jmasa@4679 138
ysr@2192 139 // The CMS thread will yield during the work portion of its cycle
duke@435 140 // only when requested to. Both synchronous and asychronous requests
ysr@2192 141 // are provided:
ysr@2192 142 // (1) A synchronous request is used for young gen collections and
ysr@2192 143 // for direct allocations. The requesting thread increments
ysr@2192 144 // _pending_yields at the beginning of an operation, and decrements
ysr@2192 145 // _pending_yields when that operation is completed.
ysr@2192 146 // In turn, the CMS thread yields when _pending_yields is positive,
ysr@2192 147 // and continues to yield until the value reverts to 0.
ysr@2192 148 // (2) An asynchronous request, on the other hand, is used by iCMS
ysr@2192 149 // for the stop_icms() operation. A single yield satisfies all of
ysr@2192 150 // the outstanding asynch yield requests, of which there may
ysr@2192 151 // occasionally be several in close succession. To accomplish
ysr@2192 152 // this, an asynch-requesting thread atomically increments both
ysr@2192 153 // _pending_yields and _pending_decrements. An asynchr requesting
ysr@2192 154 // thread does not wait and "acknowledge" completion of an operation
ysr@2192 155 // and deregister the request, like the synchronous version described
ysr@2192 156 // above does. In turn, after yielding, the CMS thread decrements both
ysr@2192 157 // _pending_yields and _pending_decrements by the value seen in
ysr@2192 158 // _pending_decrements before the decrement.
ysr@2192 159 // NOTE: The above scheme is isomorphic to having two request counters,
ysr@2192 160 // one for async requests and one for sync requests, and for the CMS thread
ysr@2192 161 // to check the sum of the two counters to decide whether it should yield
ysr@2192 162 // and to clear only the async counter when it yields. However, it turns out
ysr@2192 163 // to be more efficient for CMS code to just check a single counter
ysr@2192 164 // _pending_yields that holds the sum (of both sync and async requests), and
ysr@2192 165 // a second counter _pending_decrements that only holds the async requests,
ysr@2192 166 // for greater efficiency, since in a typical CMS run, there are many more
ysr@2192 167 // pontential (i.e. static) yield points than there are actual
ysr@2192 168 // (i.e. dynamic) yields because of requests, which are few and far between.
ysr@2192 169 //
duke@435 170 // Note that, while "_pending_yields >= _pending_decrements" is an invariant,
duke@435 171 // we cannot easily test that invariant, since the counters are manipulated via
duke@435 172 // atomic instructions without explicit locking and we cannot read
duke@435 173 // the two counters atomically together: one suggestion is to
duke@435 174 // use (for example) 16-bit counters so as to be able to read the
duke@435 175 // two counters atomically even on 32-bit platforms. Notice that
ysr@2192 176 // the second assert in acknowledge_yield_request() below does indeed
duke@435 177 // check a form of the above invariant, albeit indirectly.
duke@435 178
duke@435 179 static void increment_pending_yields() {
duke@435 180 Atomic::inc(&_pending_yields);
duke@435 181 assert(_pending_yields >= 0, "can't be negative");
duke@435 182 }
duke@435 183 static void decrement_pending_yields() {
duke@435 184 Atomic::dec(&_pending_yields);
duke@435 185 assert(_pending_yields >= 0, "can't be negative");
duke@435 186 }
duke@435 187 static void asynchronous_yield_request() {
ysr@2192 188 assert(CMSIncrementalMode, "Currently only used w/iCMS");
duke@435 189 increment_pending_yields();
duke@435 190 Atomic::inc(&_pending_decrements);
duke@435 191 assert(_pending_decrements >= 0, "can't be negative");
duke@435 192 }
duke@435 193 static void acknowledge_yield_request() {
duke@435 194 jint decrement = _pending_decrements;
duke@435 195 if (decrement > 0) {
ysr@2192 196 assert(CMSIncrementalMode, "Currently only used w/iCMS");
duke@435 197 // Order important to preserve: _pending_yields >= _pending_decrements
duke@435 198 Atomic::add(-decrement, &_pending_decrements);
duke@435 199 Atomic::add(-decrement, &_pending_yields);
duke@435 200 assert(_pending_decrements >= 0, "can't be negative");
duke@435 201 assert(_pending_yields >= 0, "can't be negative");
duke@435 202 }
duke@435 203 }
duke@435 204 static bool should_yield() { return _pending_yields > 0; }
duke@435 205
duke@435 206 // CMS incremental mode.
duke@435 207 static void start_icms(); // notify thread to start a quantum of work
duke@435 208 static void stop_icms(); // request thread to stop working
duke@435 209 void icms_wait(); // if asked to stop, wait until notified to start
duke@435 210
duke@435 211 // Incremental mode is enabled globally by the flag CMSIncrementalMode. It
duke@435 212 // must also be enabled/disabled dynamically to allow foreground collections.
ysr@2647 213 #define ICMS_ENABLING_ASSERT \
ysr@2647 214 assert((CMSIncrementalMode && _icms_disabled >= 0) || \
ysr@2647 215 (!CMSIncrementalMode && _icms_disabled <= 0), "Error")
ysr@2647 216
ysr@2647 217 static inline void enable_icms() {
ysr@2647 218 ICMS_ENABLING_ASSERT;
ysr@2647 219 Atomic::dec(&_icms_disabled);
ysr@2647 220 }
ysr@2647 221 static inline void disable_icms() {
ysr@2647 222 ICMS_ENABLING_ASSERT;
ysr@2647 223 Atomic::inc(&_icms_disabled);
ysr@2647 224 }
ysr@2647 225 static inline bool icms_is_disabled() {
ysr@2647 226 ICMS_ENABLING_ASSERT;
ysr@2647 227 return _icms_disabled > 0;
ysr@2647 228 }
ysr@2647 229 static inline bool icms_is_enabled() {
ysr@2647 230 return !icms_is_disabled();
ysr@2647 231 }
duke@435 232 };
duke@435 233
duke@435 234 inline void ConcurrentMarkSweepThread::trace_state(const char* desc) {
duke@435 235 if (CMSTraceThreadState) {
duke@435 236 char buf[128];
duke@435 237 TimeStamp& ts = gclog_or_tty->time_stamp();
duke@435 238 if (!ts.is_updated()) {
duke@435 239 ts.update();
duke@435 240 }
duke@435 241 jio_snprintf(buf, sizeof(buf), " [%.3f: CMSThread %s] ",
duke@435 242 ts.seconds(), desc);
duke@435 243 buf[sizeof(buf) - 1] = '\0';
drchase@6680 244 gclog_or_tty->print("%s", buf);
duke@435 245 }
duke@435 246 }
duke@435 247
ysr@2192 248 // For scoped increment/decrement of (synchronous) yield requests
duke@435 249 class CMSSynchronousYieldRequest: public StackObj {
duke@435 250 public:
duke@435 251 CMSSynchronousYieldRequest() {
duke@435 252 ConcurrentMarkSweepThread::increment_pending_yields();
duke@435 253 }
duke@435 254 ~CMSSynchronousYieldRequest() {
duke@435 255 ConcurrentMarkSweepThread::decrement_pending_yields();
duke@435 256 }
duke@435 257 };
duke@435 258
duke@435 259 // Used to emit a warning in case of unexpectedly excessive
duke@435 260 // looping (in "apparently endless loops") in CMS code.
duke@435 261 class CMSLoopCountWarn: public StackObj {
duke@435 262 private:
duke@435 263 const char* _src;
duke@435 264 const char* _msg;
duke@435 265 const intx _threshold;
duke@435 266 intx _ticks;
duke@435 267
duke@435 268 public:
duke@435 269 inline CMSLoopCountWarn(const char* src, const char* msg,
duke@435 270 const intx threshold) :
duke@435 271 _src(src), _msg(msg), _threshold(threshold), _ticks(0) { }
duke@435 272
duke@435 273 inline void tick() {
duke@435 274 _ticks++;
duke@435 275 if (CMSLoopWarn && _ticks % _threshold == 0) {
drchase@6680 276 warning("%s has looped " INTX_FORMAT " times %s", _src, _ticks, _msg);
duke@435 277 }
duke@435 278 }
duke@435 279 };
stefank@2314 280
stefank@2314 281 #endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPTHREAD_HPP

mercurial