author | tschatzl |
Wed, 08 Aug 2018 15:31:06 +0200 | |
changeset 51332 | c25572739e7c |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
46305
bff6d23aa1e3
8175221: Cleanup DirtyCardQueueSet::concatenate_log
kbarrett
parents:
37065
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:
5082
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5082
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:
5082
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
30764 | 26 |
#include "gc/g1/ptrQueue.hpp" |
7397 | 27 |
#include "memory/allocation.hpp" |
28 |
#include "memory/allocation.inline.hpp" |
|
29 |
#include "runtime/mutex.hpp" |
|
30 |
#include "runtime/mutexLocker.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13963
diff
changeset
|
31 |
#include "runtime/thread.inline.hpp" |
1374 | 32 |
|
36354 | 33 |
#include <new> |
34 |
||
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
35 |
PtrQueue::PtrQueue(PtrQueueSet* qset, bool permanent, bool active) : |
46443 | 36 |
_qset(qset), |
37 |
_active(active), |
|
38 |
_permanent(permanent), |
|
39 |
_index(0), |
|
40 |
_capacity_in_bytes(0), |
|
41 |
_buf(NULL), |
|
42 |
_lock(NULL) |
|
1374 | 43 |
{} |
44 |
||
28507 | 45 |
PtrQueue::~PtrQueue() { |
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
46 |
assert(_permanent || (_buf == NULL), "queue must be flushed before delete"); |
28507 | 47 |
} |
48 |
||
49 |
void PtrQueue::flush_impl() { |
|
46305
bff6d23aa1e3
8175221: Cleanup DirtyCardQueueSet::concatenate_log
kbarrett
parents:
37065
diff
changeset
|
50 |
if (_buf != NULL) { |
46443 | 51 |
BufferNode* node = BufferNode::make_node_from_buffer(_buf, index()); |
37065 | 52 |
if (is_empty()) { |
1374 | 53 |
// No work to do. |
37065 | 54 |
qset()->deallocate_buffer(node); |
1374 | 55 |
} else { |
37065 | 56 |
qset()->enqueue_complete_buffer(node); |
1374 | 57 |
} |
1560
1b328492b7f8
6770608: G1: Mutator thread can flush barrier and satb queues during safepoint
iveresov
parents:
1374
diff
changeset
|
58 |
_buf = NULL; |
46443 | 59 |
set_index(0); |
1374 | 60 |
} |
61 |
} |
|
62 |
||
63 |
||
64 |
void PtrQueue::enqueue_known_active(void* ptr) { |
|
65 |
while (_index == 0) { |
|
66 |
handle_zero_index(); |
|
67 |
} |
|
4481 | 68 |
|
46443 | 69 |
assert(_buf != NULL, "postcondition"); |
70 |
assert(index() > 0, "postcondition"); |
|
71 |
assert(index() <= capacity(), "invariant"); |
|
72 |
_index -= _element_size; |
|
73 |
_buf[index()] = ptr; |
|
1374 | 74 |
} |
75 |
||
37065 | 76 |
void PtrQueue::locking_enqueue_completed_buffer(BufferNode* node) { |
1374 | 77 |
assert(_lock->owned_by_self(), "Required."); |
37065 | 78 |
qset()->enqueue_complete_buffer(node); |
1374 | 79 |
} |
80 |
||
81 |
||
46443 | 82 |
BufferNode* BufferNode::allocate(size_t size) { |
83 |
size_t byte_size = size * sizeof(void*); |
|
36354 | 84 |
void* data = NEW_C_HEAP_ARRAY(char, buffer_offset() + byte_size, mtGC); |
85 |
return new (data) BufferNode; |
|
86 |
} |
|
87 |
||
88 |
void BufferNode::deallocate(BufferNode* node) { |
|
89 |
node->~BufferNode(); |
|
90 |
FREE_C_HEAP_ARRAY(char, node); |
|
91 |
} |
|
92 |
||
1374 | 93 |
PtrQueueSet::PtrQueueSet(bool notify_when_complete) : |
46443 | 94 |
_buffer_size(0), |
51332 | 95 |
_cbl_mon(NULL), |
1374 | 96 |
_completed_buffers_head(NULL), |
97 |
_completed_buffers_tail(NULL), |
|
98 |
_n_completed_buffers(0), |
|
51332 | 99 |
_process_completed_threshold(0), |
100 |
_process_completed(false), |
|
101 |
_fl_lock(NULL), |
|
102 |
_buf_free_list(NULL), |
|
103 |
_buf_free_list_sz(0), |
|
104 |
_fl_owner(NULL), |
|
105 |
_all_active(false), |
|
106 |
_notify_when_complete(notify_when_complete), |
|
107 |
_max_completed_queue(0), |
|
108 |
_completed_queue_padding(0) |
|
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
109 |
{ |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
110 |
_fl_owner = this; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
111 |
} |
1374 | 112 |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
113 |
PtrQueueSet::~PtrQueueSet() { |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
114 |
// There are presently only a couple (derived) instances ever |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
115 |
// created, and they are permanent, so no harm currently done by |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
116 |
// doing nothing here. |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
117 |
} |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
118 |
|
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
119 |
void PtrQueueSet::initialize(Monitor* cbl_mon, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
120 |
Mutex* fl_lock, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
121 |
int process_completed_threshold, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
122 |
int max_completed_queue, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
123 |
PtrQueueSet *fl_owner) { |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
124 |
_max_completed_queue = max_completed_queue; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
125 |
_process_completed_threshold = process_completed_threshold; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
126 |
_completed_queue_padding = 0; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
127 |
assert(cbl_mon != NULL && fl_lock != NULL, "Init order issue?"); |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
128 |
_cbl_mon = cbl_mon; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
129 |
_fl_lock = fl_lock; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
130 |
_fl_owner = (fl_owner != NULL) ? fl_owner : this; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
131 |
} |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
132 |
|
1374 | 133 |
void** PtrQueueSet::allocate_buffer() { |
36354 | 134 |
BufferNode* node = NULL; |
135 |
{ |
|
136 |
MutexLockerEx x(_fl_owner->_fl_lock, Mutex::_no_safepoint_check_flag); |
|
137 |
node = _fl_owner->_buf_free_list; |
|
138 |
if (node != NULL) { |
|
139 |
_fl_owner->_buf_free_list = node->next(); |
|
140 |
_fl_owner->_buf_free_list_sz--; |
|
141 |
} |
|
142 |
} |
|
143 |
if (node == NULL) { |
|
46443 | 144 |
node = BufferNode::allocate(buffer_size()); |
1374 | 145 |
} else { |
36354 | 146 |
// Reinitialize buffer obtained from free list. |
147 |
node->set_index(0); |
|
148 |
node->set_next(NULL); |
|
1374 | 149 |
} |
36354 | 150 |
return BufferNode::make_buffer_from_node(node); |
1374 | 151 |
} |
152 |
||
37065 | 153 |
void PtrQueueSet::deallocate_buffer(BufferNode* node) { |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
154 |
MutexLockerEx x(_fl_owner->_fl_lock, Mutex::_no_safepoint_check_flag); |
4481 | 155 |
node->set_next(_fl_owner->_buf_free_list); |
156 |
_fl_owner->_buf_free_list = node; |
|
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
157 |
_fl_owner->_buf_free_list_sz++; |
1374 | 158 |
} |
159 |
||
160 |
void PtrQueueSet::reduce_free_list() { |
|
4481 | 161 |
assert(_fl_owner == this, "Free list reduction is allowed only for the owner"); |
1374 | 162 |
// For now we'll adopt the strategy of deleting half. |
163 |
MutexLockerEx x(_fl_lock, Mutex::_no_safepoint_check_flag); |
|
164 |
size_t n = _buf_free_list_sz / 2; |
|
36354 | 165 |
for (size_t i = 0; i < n; ++i) { |
166 |
assert(_buf_free_list != NULL, |
|
167 |
"_buf_free_list_sz is wrong: " SIZE_FORMAT, _buf_free_list_sz); |
|
168 |
BufferNode* node = _buf_free_list; |
|
169 |
_buf_free_list = node->next(); |
|
170 |
_buf_free_list_sz--; |
|
171 |
BufferNode::deallocate(node); |
|
1374 | 172 |
} |
173 |
} |
|
174 |
||
4481 | 175 |
void PtrQueue::handle_zero_index() { |
46443 | 176 |
assert(index() == 0, "precondition"); |
7920 | 177 |
|
4481 | 178 |
// This thread records the full buffer and allocates a new one (while |
179 |
// holding the lock if there is one). |
|
180 |
if (_buf != NULL) { |
|
7920 | 181 |
if (!should_enqueue_buffer()) { |
46443 | 182 |
assert(index() > 0, "the buffer can only be re-used if it's not full"); |
7920 | 183 |
return; |
184 |
} |
|
185 |
||
4481 | 186 |
if (_lock) { |
4640
b5edb9b319e4
6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001
johnc
parents:
4481
diff
changeset
|
187 |
assert(_lock->owned_by_self(), "Required."); |
b5edb9b319e4
6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001
johnc
parents:
4481
diff
changeset
|
188 |
|
46443 | 189 |
BufferNode* node = BufferNode::make_node_from_buffer(_buf, index()); |
4640
b5edb9b319e4
6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001
johnc
parents:
4481
diff
changeset
|
190 |
_buf = NULL; // clear shared _buf field |
b5edb9b319e4
6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001
johnc
parents:
4481
diff
changeset
|
191 |
|
37065 | 192 |
locking_enqueue_completed_buffer(node); // enqueue completed buffer |
46685
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46630
diff
changeset
|
193 |
assert(_buf == NULL, "multiple enqueuers appear to be racing"); |
4481 | 194 |
} else { |
46443 | 195 |
BufferNode* node = BufferNode::make_node_from_buffer(_buf, index()); |
37065 | 196 |
if (qset()->process_or_enqueue_complete_buffer(node)) { |
4481 | 197 |
// Recycle the buffer. No allocation. |
37065 | 198 |
assert(_buf == BufferNode::make_buffer_from_node(node), "invariant"); |
46443 | 199 |
assert(capacity() == qset()->buffer_size(), "invariant"); |
200 |
reset(); |
|
4481 | 201 |
return; |
202 |
} |
|
203 |
} |
|
204 |
} |
|
46443 | 205 |
// Set capacity in case this is the first allocation. |
206 |
set_capacity(qset()->buffer_size()); |
|
207 |
// Allocate a new buffer. |
|
4481 | 208 |
_buf = qset()->allocate_buffer(); |
46443 | 209 |
reset(); |
4481 | 210 |
} |
1374 | 211 |
|
37065 | 212 |
bool PtrQueueSet::process_or_enqueue_complete_buffer(BufferNode* node) { |
4481 | 213 |
if (Thread::current()->is_Java_thread()) { |
214 |
// We don't lock. It is fine to be epsilon-precise here. |
|
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46443
diff
changeset
|
215 |
if (_max_completed_queue == 0 || |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46443
diff
changeset
|
216 |
(_max_completed_queue > 0 && |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46443
diff
changeset
|
217 |
_n_completed_buffers >= _max_completed_queue + _completed_queue_padding)) { |
37065 | 218 |
bool b = mut_process_buffer(node); |
4481 | 219 |
if (b) { |
220 |
// True here means that the buffer hasn't been deallocated and the caller may reuse it. |
|
221 |
return true; |
|
222 |
} |
|
1374 | 223 |
} |
4481 | 224 |
} |
225 |
// The buffer will be enqueued. The caller will have to get a new one. |
|
37065 | 226 |
enqueue_complete_buffer(node); |
4481 | 227 |
return false; |
228 |
} |
|
1374 | 229 |
|
37065 | 230 |
void PtrQueueSet::enqueue_complete_buffer(BufferNode* cbn) { |
4481 | 231 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
36354 | 232 |
cbn->set_next(NULL); |
1374 | 233 |
if (_completed_buffers_tail == NULL) { |
234 |
assert(_completed_buffers_head == NULL, "Well-formedness"); |
|
235 |
_completed_buffers_head = cbn; |
|
236 |
_completed_buffers_tail = cbn; |
|
237 |
} else { |
|
4481 | 238 |
_completed_buffers_tail->set_next(cbn); |
1374 | 239 |
_completed_buffers_tail = cbn; |
240 |
} |
|
241 |
_n_completed_buffers++; |
|
242 |
||
4481 | 243 |
if (!_process_completed && _process_completed_threshold >= 0 && |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
244 |
_n_completed_buffers >= (size_t)_process_completed_threshold) { |
1374 | 245 |
_process_completed = true; |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
246 |
if (_notify_when_complete) { |
4481 | 247 |
_cbl_mon->notify(); |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
248 |
} |
1374 | 249 |
} |
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
250 |
DEBUG_ONLY(assert_completed_buffer_list_len_correct_locked()); |
1374 | 251 |
} |
252 |
||
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
253 |
size_t PtrQueueSet::completed_buffers_list_length() { |
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
254 |
size_t n = 0; |
4481 | 255 |
BufferNode* cbn = _completed_buffers_head; |
1374 | 256 |
while (cbn != NULL) { |
257 |
n++; |
|
4481 | 258 |
cbn = cbn->next(); |
1374 | 259 |
} |
260 |
return n; |
|
261 |
} |
|
262 |
||
263 |
void PtrQueueSet::assert_completed_buffer_list_len_correct() { |
|
264 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
265 |
assert_completed_buffer_list_len_correct_locked(); |
|
266 |
} |
|
267 |
||
268 |
void PtrQueueSet::assert_completed_buffer_list_len_correct_locked() { |
|
4481 | 269 |
guarantee(completed_buffers_list_length() == _n_completed_buffers, |
1374 | 270 |
"Completed buffer length is wrong."); |
271 |
} |
|
272 |
||
273 |
void PtrQueueSet::set_buffer_size(size_t sz) { |
|
46443 | 274 |
assert(_buffer_size == 0 && sz > 0, "Should be called only once."); |
275 |
_buffer_size = sz; |
|
1374 | 276 |
} |
277 |
||
4481 | 278 |
// Merge lists of buffers. Notify the processing threads. |
279 |
// The source queue is emptied as a result. The queues |
|
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
280 |
// must share the monitor. |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
281 |
void PtrQueueSet::merge_bufferlists(PtrQueueSet *src) { |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
282 |
assert(_cbl_mon == src->_cbl_mon, "Should share the same lock"); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
283 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
284 |
if (_completed_buffers_tail == NULL) { |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
285 |
assert(_completed_buffers_head == NULL, "Well-formedness"); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
286 |
_completed_buffers_head = src->_completed_buffers_head; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
287 |
_completed_buffers_tail = src->_completed_buffers_tail; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
288 |
} else { |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
289 |
assert(_completed_buffers_head != NULL, "Well formedness"); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
290 |
if (src->_completed_buffers_head != NULL) { |
4481 | 291 |
_completed_buffers_tail->set_next(src->_completed_buffers_head); |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
292 |
_completed_buffers_tail = src->_completed_buffers_tail; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
293 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
294 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
295 |
_n_completed_buffers += src->_n_completed_buffers; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
296 |
|
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
297 |
src->_n_completed_buffers = 0; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
298 |
src->_completed_buffers_head = NULL; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
299 |
src->_completed_buffers_tail = NULL; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
300 |
|
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
301 |
assert(_completed_buffers_head == NULL && _completed_buffers_tail == NULL || |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
302 |
_completed_buffers_head != NULL && _completed_buffers_tail != NULL, |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
303 |
"Sanity"); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
304 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
305 |
|
4481 | 306 |
void PtrQueueSet::notify_if_necessary() { |
307 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
308 |
assert(_process_completed_threshold >= 0, "_process_completed is negative"); |
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
309 |
if (_n_completed_buffers >= (size_t)_process_completed_threshold || _max_completed_queue == 0) { |
4481 | 310 |
_process_completed = true; |
311 |
if (_notify_when_complete) |
|
312 |
_cbl_mon->notify(); |
|
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
313 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
314 |
} |