author | sjohanss |
Wed, 02 May 2018 13:44:49 +0200 | |
changeset 49946 | 2143feab681a |
parent 48955 | e22914003cf0 |
child 51292 | 0538a5cdb474 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48955
e22914003cf0
8194691: Cleanup unnecessary casts in Atomic/OrderAccess uses
kbarrett
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 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:
5076
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
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:
5076
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
30764 | 26 |
#include "gc/shared/taskqueue.hpp" |
7397 | 27 |
#include "oops/oop.inline.hpp" |
35061 | 28 |
#include "logging/log.hpp" |
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
35061
diff
changeset
|
29 |
#include "runtime/atomic.hpp" |
7397 | 30 |
#include "runtime/os.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
10565
diff
changeset
|
31 |
#include "runtime/thread.inline.hpp" |
7397 | 32 |
#include "utilities/debug.hpp" |
33 |
#include "utilities/stack.inline.hpp" |
|
1 | 34 |
|
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
35 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
36 |
uint ParallelTaskTerminator::_total_yields = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
37 |
uint ParallelTaskTerminator::_total_spins = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
38 |
uint ParallelTaskTerminator::_total_peeks = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
39 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
40 |
|
6067 | 41 |
#if TASKQUEUE_STATS |
42 |
const char * const TaskQueueStats::_names[last_stat_id] = { |
|
43 |
"qpush", "qpop", "qpop-s", "qattempt", "qsteal", "opush", "omax" |
|
44 |
}; |
|
45 |
||
6251 | 46 |
TaskQueueStats & TaskQueueStats::operator +=(const TaskQueueStats & addend) |
47 |
{ |
|
48 |
for (unsigned int i = 0; i < last_stat_id; ++i) { |
|
49 |
_stats[i] += addend._stats[i]; |
|
50 |
} |
|
51 |
return *this; |
|
52 |
} |
|
53 |
||
6067 | 54 |
void TaskQueueStats::print_header(unsigned int line, outputStream* const stream, |
55 |
unsigned int width) |
|
56 |
{ |
|
57 |
// Use a width w: 1 <= w <= max_width |
|
58 |
const unsigned int max_width = 40; |
|
59 |
const unsigned int w = MAX2(MIN2(width, max_width), 1U); |
|
60 |
||
61 |
if (line == 0) { // spaces equal in width to the header |
|
62 |
const unsigned int hdr_width = w * last_stat_id + last_stat_id - 1; |
|
63 |
stream->print("%*s", hdr_width, " "); |
|
64 |
} else if (line == 1) { // labels |
|
65 |
stream->print("%*s", w, _names[0]); |
|
66 |
for (unsigned int i = 1; i < last_stat_id; ++i) { |
|
67 |
stream->print(" %*s", w, _names[i]); |
|
68 |
} |
|
69 |
} else if (line == 2) { // dashed lines |
|
70 |
char dashes[max_width + 1]; |
|
71 |
memset(dashes, '-', w); |
|
72 |
dashes[w] = '\0'; |
|
73 |
stream->print("%s", dashes); |
|
74 |
for (unsigned int i = 1; i < last_stat_id; ++i) { |
|
75 |
stream->print(" %s", dashes); |
|
76 |
} |
|
77 |
} |
|
78 |
} |
|
79 |
||
80 |
void TaskQueueStats::print(outputStream* stream, unsigned int width) const |
|
81 |
{ |
|
82 |
#define FMT SIZE_FORMAT_W(*) |
|
83 |
stream->print(FMT, width, _stats[0]); |
|
84 |
for (unsigned int i = 1; i < last_stat_id; ++i) { |
|
85 |
stream->print(" " FMT, width, _stats[i]); |
|
86 |
} |
|
87 |
#undef FMT |
|
88 |
} |
|
6251 | 89 |
|
90 |
#ifdef ASSERT |
|
91 |
// Invariants which should hold after a TaskQueue has been emptied and is |
|
92 |
// quiescent; they do not hold at arbitrary times. |
|
93 |
void TaskQueueStats::verify() const |
|
94 |
{ |
|
95 |
assert(get(push) == get(pop) + get(steal), |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
96 |
"push=" SIZE_FORMAT " pop=" SIZE_FORMAT " steal=" SIZE_FORMAT, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
97 |
get(push), get(pop), get(steal)); |
6251 | 98 |
assert(get(pop_slow) <= get(pop), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
99 |
"pop_slow=" SIZE_FORMAT " pop=" SIZE_FORMAT, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
100 |
get(pop_slow), get(pop)); |
6251 | 101 |
assert(get(steal) <= get(steal_attempt), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
102 |
"steal=" SIZE_FORMAT " steal_attempt=" SIZE_FORMAT, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
103 |
get(steal), get(steal_attempt)); |
6251 | 104 |
assert(get(overflow) == 0 || get(push) != 0, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
105 |
"overflow=" SIZE_FORMAT " push=" SIZE_FORMAT, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
106 |
get(overflow), get(push)); |
6251 | 107 |
assert(get(overflow_max_len) == 0 || get(overflow) != 0, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
108 |
"overflow_max_len=" SIZE_FORMAT " overflow=" SIZE_FORMAT, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32606
diff
changeset
|
109 |
get(overflow_max_len), get(overflow)); |
6251 | 110 |
} |
111 |
#endif // ASSERT |
|
6067 | 112 |
#endif // TASKQUEUE_STATS |
113 |
||
1 | 114 |
int TaskQueueSetSuper::randomParkAndMiller(int *seed0) { |
115 |
const int a = 16807; |
|
116 |
const int m = 2147483647; |
|
117 |
const int q = 127773; /* m div a */ |
|
118 |
const int r = 2836; /* m mod a */ |
|
119 |
assert(sizeof(int) == 4, "I think this relies on that"); |
|
120 |
int seed = *seed0; |
|
121 |
int hi = seed / q; |
|
122 |
int lo = seed % q; |
|
123 |
int test = a * lo - r * hi; |
|
124 |
if (test > 0) |
|
125 |
seed = test; |
|
126 |
else |
|
127 |
seed = test + m; |
|
128 |
*seed0 = seed; |
|
129 |
return seed; |
|
130 |
} |
|
131 |
||
132 |
ParallelTaskTerminator:: |
|
30585 | 133 |
ParallelTaskTerminator(uint n_threads, TaskQueueSetSuper* queue_set) : |
1 | 134 |
_n_threads(n_threads), |
135 |
_queue_set(queue_set), |
|
136 |
_offered_termination(0) {} |
|
137 |
||
138 |
bool ParallelTaskTerminator::peek_in_queue_set() { |
|
139 |
return _queue_set->peek(); |
|
140 |
} |
|
141 |
||
142 |
void ParallelTaskTerminator::yield() { |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
143 |
assert(_offered_termination <= _n_threads, "Invariant"); |
25477
7dad9f95fd31
8047714: Fix for JDK-6546236 made Solaris os::yield() a no-op
fparain
parents:
25351
diff
changeset
|
144 |
os::naked_yield(); |
1 | 145 |
} |
146 |
||
147 |
void ParallelTaskTerminator::sleep(uint millis) { |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
148 |
assert(_offered_termination <= _n_threads, "Invariant"); |
1 | 149 |
os::sleep(Thread::current(), millis, false); |
150 |
} |
|
151 |
||
1374 | 152 |
bool |
153 |
ParallelTaskTerminator::offer_termination(TerminatorTerminator* terminator) { |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
6251
diff
changeset
|
154 |
assert(_n_threads > 0, "Initialization is incorrect"); |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
155 |
assert(_offered_termination < _n_threads, "Invariant"); |
48955
e22914003cf0
8194691: Cleanup unnecessary casts in Atomic/OrderAccess uses
kbarrett
parents:
47216
diff
changeset
|
156 |
Atomic::inc(&_offered_termination); |
1 | 157 |
|
2005
42075507972b
6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents:
1623
diff
changeset
|
158 |
uint yield_count = 0; |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
159 |
// Number of hard spin loops done since last yield |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
160 |
uint hard_spin_count = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
161 |
// Number of iterations in the hard spin loop. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
162 |
uint hard_spin_limit = WorkStealingHardSpins; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
163 |
|
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
164 |
// If WorkStealingSpinToYieldRatio is 0, no hard spinning is done. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
165 |
// If it is greater than 0, then start with a small number |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
166 |
// of spins and increase number with each turn at spinning until |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
167 |
// the count of hard spins exceeds WorkStealingSpinToYieldRatio. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
168 |
// Then do a yield() call and start spinning afresh. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
169 |
if (WorkStealingSpinToYieldRatio > 0) { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
170 |
hard_spin_limit = WorkStealingHardSpins >> WorkStealingSpinToYieldRatio; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
171 |
hard_spin_limit = MAX2(hard_spin_limit, 1U); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
172 |
} |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
173 |
// Remember the initial spin limit. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
174 |
uint hard_spin_start = hard_spin_limit; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
175 |
|
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
176 |
// Loop waiting for all threads to offer termination or |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
177 |
// more work. |
1 | 178 |
while (true) { |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
179 |
assert(_offered_termination <= _n_threads, "Invariant"); |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
180 |
// Are all threads offering termination? |
1 | 181 |
if (_offered_termination == _n_threads) { |
182 |
return true; |
|
183 |
} else { |
|
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
184 |
// Look for more work. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
185 |
// Periodically sleep() instead of yield() to give threads |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
186 |
// waiting on the cores the chance to grab this code |
1 | 187 |
if (yield_count <= WorkStealingYieldsBeforeSleep) { |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
188 |
// Do a yield or hardspin. For purposes of deciding whether |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
189 |
// to sleep, count this as a yield. |
1 | 190 |
yield_count++; |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
191 |
|
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
192 |
// Periodically call yield() instead spinning |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
193 |
// After WorkStealingSpinToYieldRatio spins, do a yield() call |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
194 |
// and reset the counts and starting limit. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
195 |
if (hard_spin_count > WorkStealingSpinToYieldRatio) { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
196 |
yield(); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
197 |
hard_spin_count = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
198 |
hard_spin_limit = hard_spin_start; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
199 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
200 |
_total_yields++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
201 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
202 |
} else { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
203 |
// Hard spin this time |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
204 |
// Increase the hard spinning period but only up to a limit. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
205 |
hard_spin_limit = MIN2(2*hard_spin_limit, |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
206 |
(uint) WorkStealingHardSpins); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
207 |
for (uint j = 0; j < hard_spin_limit; j++) { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
208 |
SpinPause(); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
209 |
} |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
210 |
hard_spin_count++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
211 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
212 |
_total_spins++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
213 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
214 |
} |
1 | 215 |
} else { |
35061 | 216 |
log_develop_trace(gc, task)("ParallelTaskTerminator::offer_termination() thread " PTR_FORMAT " sleeps after %u yields", |
217 |
p2i(Thread::current()), yield_count); |
|
1 | 218 |
yield_count = 0; |
219 |
// A sleep will cause this processor to seek work on another processor's |
|
220 |
// runqueue, if it has nothing else to run (as opposed to the yield |
|
221 |
// which may only move the thread to the end of the this processor's |
|
222 |
// runqueue). |
|
223 |
sleep(WorkStealingSleepMillis); |
|
224 |
} |
|
225 |
||
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
226 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
227 |
_total_peeks++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
228 |
#endif |
1374 | 229 |
if (peek_in_queue_set() || |
230 |
(terminator != NULL && terminator->should_exit_termination())) { |
|
48955
e22914003cf0
8194691: Cleanup unnecessary casts in Atomic/OrderAccess uses
kbarrett
parents:
47216
diff
changeset
|
231 |
Atomic::dec(&_offered_termination); |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
232 |
assert(_offered_termination < _n_threads, "Invariant"); |
1 | 233 |
return false; |
234 |
} |
|
235 |
} |
|
236 |
} |
|
237 |
} |
|
238 |
||
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
239 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
240 |
void ParallelTaskTerminator::print_termination_counts() { |
35061 | 241 |
log_trace(gc, task)("ParallelTaskTerminator Total yields: %u" |
23858
dae377f5a7c7
8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code
stefank
parents:
15228
diff
changeset
|
242 |
" Total spins: %u Total peeks: %u", |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
243 |
total_yields(), |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
244 |
total_spins(), |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
245 |
total_peeks()); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
246 |
} |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
247 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
248 |
|
1 | 249 |
void ParallelTaskTerminator::reset_for_reuse() { |
250 |
if (_offered_termination != 0) { |
|
251 |
assert(_offered_termination == _n_threads, |
|
252 |
"Terminator may still be in use"); |
|
253 |
_offered_termination = 0; |
|
254 |
} |
|
255 |
} |
|
256 |
||
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3262
diff
changeset
|
257 |
#ifdef ASSERT |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3262
diff
changeset
|
258 |
bool ObjArrayTask::is_valid() const { |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
259 |
return _obj != NULL && _obj->is_objArray() && _index >= 0 && |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
260 |
_index < objArrayOop(_obj)->length(); |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3262
diff
changeset
|
261 |
} |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3262
diff
changeset
|
262 |
#endif // ASSERT |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
6251
diff
changeset
|
263 |
|
30585 | 264 |
void ParallelTaskTerminator::reset_for_reuse(uint n_threads) { |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
6251
diff
changeset
|
265 |
reset_for_reuse(); |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
6251
diff
changeset
|
266 |
_n_threads = n_threads; |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
6251
diff
changeset
|
267 |
} |