author | tschatzl |
Wed, 25 Nov 2015 14:43:29 +0100 | |
changeset 34300 | 6075c1e0e913 |
parent 33608 | 7afc768e4d62 |
child 35061 | be6025ebffea |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
30764 | 2 |
* Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved. |
1374 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5243
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5243
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:
5243
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_G1_CONCURRENTMARKTHREAD_HPP |
26 |
#define SHARE_VM_GC_G1_CONCURRENTMARKTHREAD_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/concurrentGCThread.hpp" |
7397 | 29 |
|
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
30 |
// The Concurrent Mark GC Thread triggers the parallel CMConcurrentMarkingTasks |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
31 |
// as well as handling various marking cleanup. |
1374 | 32 |
|
33 |
class ConcurrentMark; |
|
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
34 |
class G1CollectorPolicy; |
1374 | 35 |
|
36 |
class ConcurrentMarkThread: public ConcurrentGCThread { |
|
37 |
friend class VMStructs; |
|
38 |
||
39 |
double _vtime_start; // Initial virtual time. |
|
40 |
double _vtime_accum; // Accumulated virtual time. |
|
41 |
||
42 |
double _vtime_mark_accum; |
|
31397
c9cc3289b80c
8129549: G1: Make sure the concurrent thread does not mix its logging with the STW pauses
brutisso
parents:
30764
diff
changeset
|
43 |
void cm_log(bool doit, bool join_sts, const char* fmt, ...) ATTRIBUTE_PRINTF(4, 5); |
1374 | 44 |
|
45 |
public: |
|
46 |
virtual void run(); |
|
47 |
||
48 |
private: |
|
49 |
ConcurrentMark* _cm; |
|
31597
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
50 |
|
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
51 |
enum State { |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
52 |
Idle, |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
53 |
Started, |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
54 |
InProgress |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
55 |
}; |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
56 |
|
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
57 |
volatile State _state; |
1374 | 58 |
|
59 |
void sleepBeforeNextCycle(); |
|
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
60 |
void delay_to_keep_mmu(G1CollectorPolicy* g1_policy, bool remark); |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
61 |
|
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
62 |
void run_service(); |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
63 |
void stop_service(); |
1374 | 64 |
|
65 |
static SurrogateLockerThread* _slt; |
|
66 |
||
67 |
public: |
|
68 |
// Constructor |
|
69 |
ConcurrentMarkThread(ConcurrentMark* cm); |
|
70 |
||
71 |
static void makeSurrogateLockerThread(TRAPS); |
|
72 |
static SurrogateLockerThread* slt() { return _slt; } |
|
73 |
||
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
74 |
// Total virtual time so far for this thread and concurrent marking tasks. |
1374 | 75 |
double vtime_accum(); |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
31597
diff
changeset
|
76 |
// Marking virtual time so far this thread and concurrent marking tasks. |
1374 | 77 |
double vtime_mark_accum(); |
78 |
||
5243
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
79 |
ConcurrentMark* cm() { return _cm; } |
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
80 |
|
31597
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
81 |
void set_idle() { assert(_state != Started, "must not be starting a new cycle"); _state = Idle; } |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
82 |
bool idle() { return _state == Idle; } |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
83 |
void set_started() { assert(_state == Idle, "cycle in progress"); _state = Started; } |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
84 |
bool started() { return _state == Started; } |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
85 |
void set_in_progress() { assert(_state == Started, "must be starting a cycle"); _state = InProgress; } |
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
86 |
bool in_progress() { return _state == InProgress; } |
5243
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
87 |
|
31597
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
88 |
// Returns true from the moment a marking cycle is |
5243
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
89 |
// initiated (during the initial-mark pause when started() is set) |
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
90 |
// to the moment when the cycle completes (just after the next |
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
91 |
// marking bitmap has been cleared and in_progress() is |
31597
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
92 |
// cleared). While during_cycle() is true we will not start another cycle |
5243
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
93 |
// so that cycles do not overlap. We cannot use just in_progress() |
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
94 |
// as the CM thread might take some time to wake up before noticing |
99e5a8f5d81f
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp
parents:
4022
diff
changeset
|
95 |
// that started() is set and set in_progress(). |
31597
f63dde8cc8f7
8129626: G1: set_in_progress() and clear_started() needs a barrier on non-TSO platforms
brutisso
parents:
31397
diff
changeset
|
96 |
bool during_cycle() { return !idle(); } |
1374 | 97 |
|
98 |
// shutdown |
|
2881 | 99 |
void stop(); |
1374 | 100 |
}; |
7397 | 101 |
|
30764 | 102 |
#endif // SHARE_VM_GC_G1_CONCURRENTMARKTHREAD_HPP |