author | never |
Tue, 13 Oct 2009 16:29:31 -0700 | |
changeset 4014 | b59b8c387950 |
parent 3262 | 30d1c247fc25 |
child 5076 | 8b74a4b60b31 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
2105 | 2 |
* Copyright 2001-2009 Sun Microsystems, Inc. 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 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
# include "incls/_precompiled.incl" |
|
26 |
# include "incls/_taskqueue.cpp.incl" |
|
27 |
||
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
28 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
29 |
uint ParallelTaskTerminator::_total_yields = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
30 |
uint ParallelTaskTerminator::_total_spins = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
31 |
uint ParallelTaskTerminator::_total_peeks = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
32 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
33 |
|
1 | 34 |
bool TaskQueueSuper::peek() { |
35 |
return _bottom != _age.top(); |
|
36 |
} |
|
37 |
||
38 |
int TaskQueueSetSuper::randomParkAndMiller(int *seed0) { |
|
39 |
const int a = 16807; |
|
40 |
const int m = 2147483647; |
|
41 |
const int q = 127773; /* m div a */ |
|
42 |
const int r = 2836; /* m mod a */ |
|
43 |
assert(sizeof(int) == 4, "I think this relies on that"); |
|
44 |
int seed = *seed0; |
|
45 |
int hi = seed / q; |
|
46 |
int lo = seed % q; |
|
47 |
int test = a * lo - r * hi; |
|
48 |
if (test > 0) |
|
49 |
seed = test; |
|
50 |
else |
|
51 |
seed = test + m; |
|
52 |
*seed0 = seed; |
|
53 |
return seed; |
|
54 |
} |
|
55 |
||
56 |
ParallelTaskTerminator:: |
|
57 |
ParallelTaskTerminator(int n_threads, TaskQueueSetSuper* queue_set) : |
|
58 |
_n_threads(n_threads), |
|
59 |
_queue_set(queue_set), |
|
60 |
_offered_termination(0) {} |
|
61 |
||
62 |
bool ParallelTaskTerminator::peek_in_queue_set() { |
|
63 |
return _queue_set->peek(); |
|
64 |
} |
|
65 |
||
66 |
void ParallelTaskTerminator::yield() { |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
67 |
assert(_offered_termination <= _n_threads, "Invariant"); |
1 | 68 |
os::yield(); |
69 |
} |
|
70 |
||
71 |
void ParallelTaskTerminator::sleep(uint millis) { |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
72 |
assert(_offered_termination <= _n_threads, "Invariant"); |
1 | 73 |
os::sleep(Thread::current(), millis, false); |
74 |
} |
|
75 |
||
1374 | 76 |
bool |
77 |
ParallelTaskTerminator::offer_termination(TerminatorTerminator* terminator) { |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
78 |
assert(_offered_termination < _n_threads, "Invariant"); |
1 | 79 |
Atomic::inc(&_offered_termination); |
80 |
||
2005
42075507972b
6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents:
1623
diff
changeset
|
81 |
uint yield_count = 0; |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
82 |
// 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
|
83 |
uint hard_spin_count = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
84 |
// Number of iterations in the hard spin loop. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
85 |
uint hard_spin_limit = WorkStealingHardSpins; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
86 |
|
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
87 |
// 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
|
88 |
// 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
|
89 |
// 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
|
90 |
// the count of hard spins exceeds WorkStealingSpinToYieldRatio. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
91 |
// 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
|
92 |
if (WorkStealingSpinToYieldRatio > 0) { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
93 |
hard_spin_limit = WorkStealingHardSpins >> WorkStealingSpinToYieldRatio; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
94 |
hard_spin_limit = MAX2(hard_spin_limit, 1U); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
95 |
} |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
96 |
// Remember the initial spin limit. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
97 |
uint hard_spin_start = hard_spin_limit; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
98 |
|
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
99 |
// 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
|
100 |
// more work. |
1 | 101 |
while (true) { |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
102 |
assert(_offered_termination <= _n_threads, "Invariant"); |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
103 |
// Are all threads offering termination? |
1 | 104 |
if (_offered_termination == _n_threads) { |
105 |
return true; |
|
106 |
} else { |
|
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
107 |
// Look for more work. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
108 |
// Periodically sleep() instead of yield() to give threads |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
109 |
// waiting on the cores the chance to grab this code |
1 | 110 |
if (yield_count <= WorkStealingYieldsBeforeSleep) { |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
111 |
// 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
|
112 |
// to sleep, count this as a yield. |
1 | 113 |
yield_count++; |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
114 |
|
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
115 |
// Periodically call yield() instead spinning |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
116 |
// After WorkStealingSpinToYieldRatio spins, do a yield() call |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
117 |
// and reset the counts and starting limit. |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
118 |
if (hard_spin_count > WorkStealingSpinToYieldRatio) { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
119 |
yield(); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
120 |
hard_spin_count = 0; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
121 |
hard_spin_limit = hard_spin_start; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
122 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
123 |
_total_yields++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
124 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
125 |
} else { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
126 |
// Hard spin this time |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
127 |
// 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
|
128 |
hard_spin_limit = MIN2(2*hard_spin_limit, |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
129 |
(uint) WorkStealingHardSpins); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
130 |
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
|
131 |
SpinPause(); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
132 |
} |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
133 |
hard_spin_count++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
134 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
135 |
_total_spins++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
136 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
137 |
} |
1 | 138 |
} else { |
139 |
if (PrintGCDetails && Verbose) { |
|
140 |
gclog_or_tty->print_cr("ParallelTaskTerminator::offer_termination() " |
|
141 |
"thread %d sleeps after %d yields", |
|
142 |
Thread::current(), yield_count); |
|
143 |
} |
|
144 |
yield_count = 0; |
|
145 |
// A sleep will cause this processor to seek work on another processor's |
|
146 |
// runqueue, if it has nothing else to run (as opposed to the yield |
|
147 |
// which may only move the thread to the end of the this processor's |
|
148 |
// runqueue). |
|
149 |
sleep(WorkStealingSleepMillis); |
|
150 |
} |
|
151 |
||
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
152 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
153 |
_total_peeks++; |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
154 |
#endif |
1374 | 155 |
if (peek_in_queue_set() || |
156 |
(terminator != NULL && terminator->should_exit_termination())) { |
|
1 | 157 |
Atomic::dec(&_offered_termination); |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
158 |
assert(_offered_termination < _n_threads, "Invariant"); |
1 | 159 |
return false; |
160 |
} |
|
161 |
} |
|
162 |
} |
|
163 |
} |
|
164 |
||
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
165 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
166 |
void ParallelTaskTerminator::print_termination_counts() { |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
167 |
gclog_or_tty->print_cr("ParallelTaskTerminator Total yields: %lld " |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
168 |
"Total spins: %lld Total peeks: %lld", |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
169 |
total_yields(), |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
170 |
total_spins(), |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
171 |
total_peeks()); |
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 |
#endif |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
174 |
|
1 | 175 |
void ParallelTaskTerminator::reset_for_reuse() { |
176 |
if (_offered_termination != 0) { |
|
177 |
assert(_offered_termination == _n_threads, |
|
178 |
"Terminator may still be in use"); |
|
179 |
_offered_termination = 0; |
|
180 |
} |
|
181 |
} |
|
182 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
183 |
bool RegionTaskQueueWithOverflow::is_empty() { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
184 |
return (_region_queue.size() == 0) && |
1 | 185 |
(_overflow_stack->length() == 0); |
186 |
} |
|
187 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
188 |
bool RegionTaskQueueWithOverflow::stealable_is_empty() { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
189 |
return _region_queue.size() == 0; |
1 | 190 |
} |
191 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
192 |
bool RegionTaskQueueWithOverflow::overflow_is_empty() { |
1 | 193 |
return _overflow_stack->length() == 0; |
194 |
} |
|
195 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
196 |
void RegionTaskQueueWithOverflow::initialize() { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
197 |
_region_queue.initialize(); |
1 | 198 |
assert(_overflow_stack == 0, "Creating memory leak"); |
199 |
_overflow_stack = |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
200 |
new (ResourceObj::C_HEAP) GrowableArray<RegionTask>(10, true); |
1 | 201 |
} |
202 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
203 |
void RegionTaskQueueWithOverflow::save(RegionTask t) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
204 |
if (TraceRegionTasksQueuing && Verbose) { |
1 | 205 |
gclog_or_tty->print_cr("CTQ: save " PTR_FORMAT, t); |
206 |
} |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
207 |
if(!_region_queue.push(t)) { |
1 | 208 |
_overflow_stack->push(t); |
209 |
} |
|
210 |
} |
|
211 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
212 |
// Note that using this method will retrieve all regions |
1 | 213 |
// that have been saved but that it will always check |
214 |
// the overflow stack. It may be more efficient to |
|
215 |
// check the stealable queue and the overflow stack |
|
216 |
// separately. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
217 |
bool RegionTaskQueueWithOverflow::retrieve(RegionTask& region_task) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
218 |
bool result = retrieve_from_overflow(region_task); |
1 | 219 |
if (!result) { |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
220 |
result = retrieve_from_stealable_queue(region_task); |
1 | 221 |
} |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
222 |
if (TraceRegionTasksQueuing && Verbose && result) { |
1 | 223 |
gclog_or_tty->print_cr(" CTQ: retrieve " PTR_FORMAT, result); |
224 |
} |
|
225 |
return result; |
|
226 |
} |
|
227 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
228 |
bool RegionTaskQueueWithOverflow::retrieve_from_stealable_queue( |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
229 |
RegionTask& region_task) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
230 |
bool result = _region_queue.pop_local(region_task); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
231 |
if (TraceRegionTasksQueuing && Verbose) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
232 |
gclog_or_tty->print_cr("CTQ: retrieve_stealable " PTR_FORMAT, region_task); |
1 | 233 |
} |
234 |
return result; |
|
235 |
} |
|
236 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
237 |
bool |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
238 |
RegionTaskQueueWithOverflow::retrieve_from_overflow(RegionTask& region_task) { |
1 | 239 |
bool result; |
240 |
if (!_overflow_stack->is_empty()) { |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
241 |
region_task = _overflow_stack->pop(); |
1 | 242 |
result = true; |
243 |
} else { |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
244 |
region_task = (RegionTask) NULL; |
1 | 245 |
result = false; |
246 |
} |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
247 |
if (TraceRegionTasksQueuing && Verbose) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1374
diff
changeset
|
248 |
gclog_or_tty->print_cr("CTQ: retrieve_stealable " PTR_FORMAT, region_task); |
1 | 249 |
} |
250 |
return result; |
|
251 |
} |