hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2001-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class ConcurrentMarkSweepGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class CMSCollector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// The Concurrent Mark Sweep GC Thread (could be several in the future).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class ConcurrentMarkSweepThread: public ConcurrentGCThread {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  friend class ConcurrentMarkSweepGeneration;   // XXX should remove friendship
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  friend class CMSCollector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  virtual void run();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  static ConcurrentMarkSweepThread*     _cmst;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  static CMSCollector*                  _collector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  static SurrogateLockerThread*         _slt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static SurrogateLockerThread::SLT_msg_type _sltBuffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  static Monitor*                       _sltMonitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  ConcurrentMarkSweepThread*            _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static bool _should_terminate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  enum CMS_flag_type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    CMS_nil             = NoBits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    CMS_cms_wants_token = nth_bit(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    CMS_cms_has_token   = nth_bit(1),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    CMS_vm_wants_token  = nth_bit(2),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    CMS_vm_has_token    = nth_bit(3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  static int _CMS_flag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static bool CMS_flag_is_set(int b)        { return (_CMS_flag & b) != 0;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static bool set_CMS_flag(int b)           { return (_CMS_flag |= b) != 0;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static bool clear_CMS_flag(int b)         { return (_CMS_flag &= ~b) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  void sleepBeforeNextCycle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // CMS thread should yield for a young gen collection, direct allocation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // and iCMS activity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static char _pad_1[64 - sizeof(jint)];    // prevent cache-line sharing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static volatile jint _pending_yields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static volatile jint _pending_decrements; // decrements to _pending_yields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  static char _pad_2[64 - sizeof(jint)];    // prevent cache-line sharing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Tracing messages, enabled by CMSTraceThreadState.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static inline void trace_state(const char* desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  static volatile bool _icms_enabled;   // iCMS enabled?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  static volatile bool _should_run;     // iCMS may run
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static volatile bool _should_stop;    // iCMS should stop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  void verify_ok_to_terminate() const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  ConcurrentMarkSweepThread(CMSCollector* collector);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static void makeSurrogateLockerThread(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static SurrogateLockerThread* slt() { return _slt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Tester
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  bool is_ConcurrentGC_thread() const { return true;       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  static void threads_do(ThreadClosure* tc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void print() const                                  { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static void print_all_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static void print_all()                             { print_all_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Returns the CMS Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static ConcurrentMarkSweepThread* cmst()    { return _cmst; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  static CMSCollector*         collector()    { return _collector;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Create and start the CMS Thread, or stop it on shutdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static ConcurrentMarkSweepThread* start(CMSCollector* collector);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  static void stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static bool should_terminate() { return _should_terminate; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Synchronization using CMS token
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  static void synchronize(bool is_cms_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  static void desynchronize(bool is_cms_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static bool vm_thread_has_cms_token() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    return CMS_flag_is_set(CMS_vm_has_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static bool cms_thread_has_cms_token() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    return CMS_flag_is_set(CMS_cms_has_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static bool vm_thread_wants_cms_token() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    return CMS_flag_is_set(CMS_vm_wants_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static bool cms_thread_wants_cms_token() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    return CMS_flag_is_set(CMS_cms_wants_token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Wait on CMS lock until the next synchronous GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // or given timeout, whichever is earlier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void    wait_on_cms_lock(long t); // milliseconds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // The CMS thread will yield during the work portion of it's cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // only when requested to.  Both synchronous and asychronous requests
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // are provided.  A synchronous request is used for young gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // collections and direct allocations.  The requesting thread increments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // pending_yields at the beginning of an operation, and decrements it when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // the operation is completed.  The CMS thread yields when pending_yields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // is positive.  An asynchronous request is used by iCMS in the stop_icms()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // operation. A single yield satisfies the outstanding asynch yield requests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // The requesting thread increments both pending_yields and pending_decrements.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // After yielding, the CMS thread decrements both by the amount in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // pending_decrements.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // Note that, while "_pending_yields >= _pending_decrements" is an invariant,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // we cannot easily test that invariant, since the counters are manipulated via
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // atomic instructions without explicit locking and we cannot read
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // the two counters atomically together: one suggestion is to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // use (for example) 16-bit counters so as to be able to read the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // two counters atomically even on 32-bit platforms. Notice that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // the second assert in acknowledge_yield_request() does indeed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // check a form of the above invariant, albeit indirectly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  static void increment_pending_yields()   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    Atomic::inc(&_pending_yields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    assert(_pending_yields >= 0, "can't be negative");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  static void decrement_pending_yields()   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    Atomic::dec(&_pending_yields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    assert(_pending_yields >= 0, "can't be negative");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static void asynchronous_yield_request() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    increment_pending_yields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    Atomic::inc(&_pending_decrements);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    assert(_pending_decrements >= 0, "can't be negative");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  static void acknowledge_yield_request() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    jint decrement = _pending_decrements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    if (decrement > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
      // Order important to preserve: _pending_yields >= _pending_decrements
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
      Atomic::add(-decrement, &_pending_decrements);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      Atomic::add(-decrement, &_pending_yields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      assert(_pending_decrements >= 0, "can't be negative");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
      assert(_pending_yields >= 0, "can't be negative");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  static bool should_yield()   { return _pending_yields > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // CMS incremental mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  static void start_icms(); // notify thread to start a quantum of work
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  static void stop_icms();  // request thread to stop working
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void icms_wait();         // if asked to stop, wait until notified to start
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Incremental mode is enabled globally by the flag CMSIncrementalMode.  It
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // must also be enabled/disabled dynamically to allow foreground collections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static inline void enable_icms()              { _icms_enabled = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  static inline void disable_icms()             { _icms_enabled = false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  static inline void set_icms_enabled(bool val) { _icms_enabled = val; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  static inline bool icms_enabled()             { return _icms_enabled; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
inline void ConcurrentMarkSweepThread::trace_state(const char* desc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  if (CMSTraceThreadState) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    char buf[128];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    TimeStamp& ts = gclog_or_tty->time_stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    if (!ts.is_updated()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      ts.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    jio_snprintf(buf, sizeof(buf), " [%.3f:  CMSThread %s] ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                 ts.seconds(), desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    buf[sizeof(buf) - 1] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    gclog_or_tty->print(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
// For scoped increment/decrement of yield requests
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
class CMSSynchronousYieldRequest: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  CMSSynchronousYieldRequest() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    ConcurrentMarkSweepThread::increment_pending_yields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  ~CMSSynchronousYieldRequest() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    ConcurrentMarkSweepThread::decrement_pending_yields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// Used to emit a warning in case of unexpectedly excessive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
// looping (in "apparently endless loops") in CMS code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
class CMSLoopCountWarn: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  const char* _src;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  const char* _msg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  const intx  _threshold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  intx        _ticks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  inline CMSLoopCountWarn(const char* src, const char* msg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                          const intx threshold) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    _src(src), _msg(msg), _threshold(threshold), _ticks(0) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  inline void tick() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    _ticks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    if (CMSLoopWarn && _ticks % _threshold == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      warning("%s has looped %d times %s", _src, _ticks, _msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
};