ysr@777: /* ysr@777: * Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved. ysr@777: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ysr@777: * ysr@777: * This code is free software; you can redistribute it and/or modify it ysr@777: * under the terms of the GNU General Public License version 2 only, as ysr@777: * published by the Free Software Foundation. ysr@777: * ysr@777: * This code is distributed in the hope that it will be useful, but WITHOUT ysr@777: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ysr@777: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ysr@777: * version 2 for more details (a copy is included in the LICENSE file that ysr@777: * accompanied this code). ysr@777: * ysr@777: * You should have received a copy of the GNU General Public License version ysr@777: * 2 along with this work; if not, write to the Free Software Foundation, ysr@777: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. ysr@777: * ysr@777: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, ysr@777: * CA 95054 USA or visit www.sun.com if you need additional information or ysr@777: * have any questions. ysr@777: * ysr@777: */ ysr@777: ysr@777: // The Concurrent Mark GC Thread (could be several in the future). ysr@777: // This is copied from the Concurrent Mark Sweep GC Thread ysr@777: // Still under construction. ysr@777: ysr@777: class ConcurrentMark; ysr@777: ysr@777: class ConcurrentMarkThread: public ConcurrentGCThread { ysr@777: friend class VMStructs; ysr@777: ysr@777: double _vtime_start; // Initial virtual time. ysr@777: double _vtime_accum; // Accumulated virtual time. ysr@777: ysr@777: double _vtime_mark_accum; ysr@777: double _vtime_count_accum; ysr@777: ysr@777: public: ysr@777: virtual void run(); ysr@777: ysr@777: private: ysr@777: ConcurrentMark* _cm; ysr@777: bool _started; ysr@777: bool _in_progress; ysr@777: ysr@777: void sleepBeforeNextCycle(); ysr@777: ysr@777: static SurrogateLockerThread* _slt; ysr@777: ysr@777: public: ysr@777: // Constructor ysr@777: ConcurrentMarkThread(ConcurrentMark* cm); ysr@777: ysr@777: static void makeSurrogateLockerThread(TRAPS); ysr@777: static SurrogateLockerThread* slt() { return _slt; } ysr@777: ysr@777: // Printing ysr@777: void print(); ysr@777: ysr@777: // Total virtual time so far. ysr@777: double vtime_accum(); ysr@777: // Marking virtual time so far ysr@777: double vtime_mark_accum(); ysr@777: // Counting virtual time so far. ysr@777: double vtime_count_accum() { return _vtime_count_accum; } ysr@777: ysr@777: ConcurrentMark* cm() { return _cm; } ysr@777: ysr@777: void set_started() { _started = true; } ysr@777: void clear_started() { _started = false; } ysr@777: bool started() { return _started; } ysr@777: ysr@777: void set_in_progress() { _in_progress = true; } ysr@777: void clear_in_progress() { _in_progress = false; } ysr@777: bool in_progress() { return _in_progress; } ysr@777: ysr@777: // Yield for GC ysr@777: void yield(); ysr@777: ysr@777: // shutdown iveresov@1229: void stop(); ysr@777: };