author | eosterlund |
Mon, 26 Feb 2018 09:34:12 +0100 | |
changeset 49164 | 7e958a8ebcd3 |
parent 48103 | 26dbe08d1c17 |
child 49751 | c3a10df652c0 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
47647
64dba69fc528
8189276: Make SuspendibleThreadSet and related code available to other GCs
rkennke
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, 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:
5350
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5350
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:
5350
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
26 |
#include "gc/g1/g1ConcurrentRefine.hpp" |
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
27 |
#include "gc/g1/g1ConcurrentRefineThread.hpp" |
47647
64dba69fc528
8189276: Make SuspendibleThreadSet and related code available to other GCs
rkennke
parents:
47216
diff
changeset
|
28 |
#include "gc/shared/suspendibleThreadSet.hpp" |
35061 | 29 |
#include "logging/log.hpp" |
7397 | 30 |
#include "memory/resourceArea.hpp" |
31 |
#include "runtime/handles.inline.hpp" |
|
32 |
#include "runtime/mutexLocker.hpp" |
|
1374 | 33 |
|
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
34 |
G1ConcurrentRefineThread::G1ConcurrentRefineThread(G1ConcurrentRefine* cr, uint worker_id) : |
1374 | 35 |
ConcurrentGCThread(), |
2881 | 36 |
_worker_id(worker_id), |
37 |
_active(false), |
|
4481 | 38 |
_monitor(NULL), |
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
39 |
_cr(cr), |
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
40 |
_vtime_accum(0.0) |
1374 | 41 |
{ |
22551 | 42 |
// Each thread has its own monitor. The i-th thread is responsible for signaling |
43 |
// to thread i+1 if the number of buffers in the queue exceeds a threshold for this |
|
4481 | 44 |
// thread. Monitors are also used to wake up the threads during termination. |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
45 |
// The 0th (primary) worker is notified by mutator threads and has a special monitor. |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
46 |
if (!is_primary()) { |
28163
322d55d167be
8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents:
24331
diff
changeset
|
47 |
_monitor = new Monitor(Mutex::nonleaf, "Refinement monitor", true, |
322d55d167be
8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents:
24331
diff
changeset
|
48 |
Monitor::_safepoint_check_never); |
4481 | 49 |
} else { |
50 |
_monitor = DirtyCardQ_CBL_mon; |
|
51 |
} |
|
24331
c0bc7e5653fb
6885993: Named Thread: introduce print() and print_on(outputStream* st) methods
zgu
parents:
24104
diff
changeset
|
52 |
|
c0bc7e5653fb
6885993: Named Thread: introduce print() and print_on(outputStream* st) methods
zgu
parents:
24104
diff
changeset
|
53 |
// set name |
29464
02c245ad3ec9
8073545: Use shorter and more descriptive names for GC worker threads
david
parents:
28163
diff
changeset
|
54 |
set_name("G1 Refine#%d", worker_id); |
35916
23189249c2c1
8147884: Names of GC threads should be set before the threads start
asmotrak
parents:
35061
diff
changeset
|
55 |
create_and_start(); |
1374 | 56 |
} |
57 |
||
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
58 |
void G1ConcurrentRefineThread::wait_for_completed_buffers() { |
4481 | 59 |
MutexLockerEx x(_monitor, Mutex::_no_safepoint_check_flag); |
37081
7656f5356a5d
8140257: Add support for "gc service threads" to ConcurrentGCThread
drwhite
parents:
36402
diff
changeset
|
60 |
while (!should_terminate() && !is_active()) { |
4481 | 61 |
_monitor->wait(Mutex::_no_safepoint_check_flag); |
62 |
} |
|
63 |
} |
|
64 |
||
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
65 |
bool G1ConcurrentRefineThread::is_active() { |
4481 | 66 |
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set(); |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
67 |
return is_primary() ? dcqs.process_completed_buffers() : _active; |
4481 | 68 |
} |
69 |
||
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
70 |
void G1ConcurrentRefineThread::activate() { |
4481 | 71 |
MutexLockerEx x(_monitor, Mutex::_no_safepoint_check_flag); |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
72 |
if (!is_primary()) { |
4481 | 73 |
set_active(true); |
74 |
} else { |
|
75 |
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set(); |
|
76 |
dcqs.set_process_completed(true); |
|
77 |
} |
|
78 |
_monitor->notify(); |
|
79 |
} |
|
2881 | 80 |
|
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
81 |
void G1ConcurrentRefineThread::deactivate() { |
4481 | 82 |
MutexLockerEx x(_monitor, Mutex::_no_safepoint_check_flag); |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
83 |
if (!is_primary()) { |
4481 | 84 |
set_active(false); |
85 |
} else { |
|
86 |
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set(); |
|
87 |
dcqs.set_process_completed(false); |
|
88 |
} |
|
89 |
} |
|
90 |
||
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
91 |
void G1ConcurrentRefineThread::run_service() { |
4481 | 92 |
_vtime_start = os::elapsedVTime(); |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
93 |
|
37081
7656f5356a5d
8140257: Add support for "gc service threads" to ConcurrentGCThread
drwhite
parents:
36402
diff
changeset
|
94 |
while (!should_terminate()) { |
4481 | 95 |
// Wait for work |
96 |
wait_for_completed_buffers(); |
|
37081
7656f5356a5d
8140257: Add support for "gc service threads" to ConcurrentGCThread
drwhite
parents:
36402
diff
changeset
|
97 |
if (should_terminate()) { |
4481 | 98 |
break; |
99 |
} |
|
100 |
||
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37197
diff
changeset
|
101 |
size_t buffers_processed = 0; |
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
102 |
log_debug(gc, refine)("Activated worker %d, on threshold: " SIZE_FORMAT ", current: " SIZE_FORMAT, |
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
103 |
_worker_id, _cr->activation_threshold(_worker_id), |
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
104 |
JavaThread::dirty_card_queue_set().completed_buffers_num()); |
36196
5128f617b0c6
8150134: Simplify concurrent refinement thread deactivation
kbarrett
parents:
36179
diff
changeset
|
105 |
|
24094 | 106 |
{ |
30613
a7815bb05ae2
8079579: Add SuspendibleThreadSetLeaver and make SuspendibleThreadSet::joint()/leave() private
pliden
parents:
29464
diff
changeset
|
107 |
SuspendibleThreadSetJoiner sts_join; |
24094 | 108 |
|
37197
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
109 |
while (!should_terminate()) { |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
110 |
if (sts_join.should_yield()) { |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
111 |
sts_join.yield(); |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
112 |
continue; // Re-check for termination after yield delay. |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
113 |
} |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
114 |
|
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
115 |
if (!_cr->do_refinement_step(_worker_id)) { |
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
116 |
break; |
37197
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
117 |
} |
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37197
diff
changeset
|
118 |
++buffers_processed; |
37197
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
119 |
} |
2881 | 120 |
} |
4481 | 121 |
|
37197
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
122 |
deactivate(); |
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
123 |
log_debug(gc, refine)("Deactivated worker %d, off threshold: " SIZE_FORMAT |
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37197
diff
changeset
|
124 |
", current: " SIZE_FORMAT ", processed: " SIZE_FORMAT, |
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
125 |
_worker_id, _cr->deactivation_threshold(_worker_id), |
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
126 |
JavaThread::dirty_card_queue_set().completed_buffers_num(), |
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37197
diff
changeset
|
127 |
buffers_processed); |
37197
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37081
diff
changeset
|
128 |
|
1374 | 129 |
if (os::supports_vtime()) { |
130 |
_vtime_accum = (os::elapsedVTime() - _vtime_start); |
|
131 |
} else { |
|
132 |
_vtime_accum = 0.0; |
|
133 |
} |
|
134 |
} |
|
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
135 |
|
36196
5128f617b0c6
8150134: Simplify concurrent refinement thread deactivation
kbarrett
parents:
36179
diff
changeset
|
136 |
log_debug(gc, refine)("Stopping %d", _worker_id); |
1374 | 137 |
} |
138 |
||
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47647
diff
changeset
|
139 |
void G1ConcurrentRefineThread::stop_service() { |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
140 |
MutexLockerEx x(_monitor, Mutex::_no_safepoint_check_flag); |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30770
diff
changeset
|
141 |
_monitor->notify(); |
35061 | 142 |
} |