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