author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 47216 | 71c04702a3d5 |
child 51332 | c25572739e7c |
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), |
1374 | 95 |
_max_completed_queue(0), |
96 |
_cbl_mon(NULL), _fl_lock(NULL), |
|
97 |
_notify_when_complete(notify_when_complete), |
|
98 |
_completed_buffers_head(NULL), |
|
99 |
_completed_buffers_tail(NULL), |
|
100 |
_n_completed_buffers(0), |
|
101 |
_process_completed_threshold(0), _process_completed(false), |
|
102 |
_buf_free_list(NULL), _buf_free_list_sz(0) |
|
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
103 |
{ |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
104 |
_fl_owner = this; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
105 |
} |
1374 | 106 |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
107 |
PtrQueueSet::~PtrQueueSet() { |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
108 |
// 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
|
109 |
// 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
|
110 |
// doing nothing here. |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
111 |
} |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
112 |
|
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
113 |
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
|
114 |
Mutex* fl_lock, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
115 |
int process_completed_threshold, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
116 |
int max_completed_queue, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
117 |
PtrQueueSet *fl_owner) { |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
118 |
_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
|
119 |
_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
|
120 |
_completed_queue_padding = 0; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
121 |
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
|
122 |
_cbl_mon = cbl_mon; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
123 |
_fl_lock = fl_lock; |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
124 |
_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
|
125 |
} |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
126 |
|
1374 | 127 |
void** PtrQueueSet::allocate_buffer() { |
36354 | 128 |
BufferNode* node = NULL; |
129 |
{ |
|
130 |
MutexLockerEx x(_fl_owner->_fl_lock, Mutex::_no_safepoint_check_flag); |
|
131 |
node = _fl_owner->_buf_free_list; |
|
132 |
if (node != NULL) { |
|
133 |
_fl_owner->_buf_free_list = node->next(); |
|
134 |
_fl_owner->_buf_free_list_sz--; |
|
135 |
} |
|
136 |
} |
|
137 |
if (node == NULL) { |
|
46443 | 138 |
node = BufferNode::allocate(buffer_size()); |
1374 | 139 |
} else { |
36354 | 140 |
// Reinitialize buffer obtained from free list. |
141 |
node->set_index(0); |
|
142 |
node->set_next(NULL); |
|
1374 | 143 |
} |
36354 | 144 |
return BufferNode::make_buffer_from_node(node); |
1374 | 145 |
} |
146 |
||
37065 | 147 |
void PtrQueueSet::deallocate_buffer(BufferNode* node) { |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
148 |
MutexLockerEx x(_fl_owner->_fl_lock, Mutex::_no_safepoint_check_flag); |
4481 | 149 |
node->set_next(_fl_owner->_buf_free_list); |
150 |
_fl_owner->_buf_free_list = node; |
|
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
151 |
_fl_owner->_buf_free_list_sz++; |
1374 | 152 |
} |
153 |
||
154 |
void PtrQueueSet::reduce_free_list() { |
|
4481 | 155 |
assert(_fl_owner == this, "Free list reduction is allowed only for the owner"); |
1374 | 156 |
// For now we'll adopt the strategy of deleting half. |
157 |
MutexLockerEx x(_fl_lock, Mutex::_no_safepoint_check_flag); |
|
158 |
size_t n = _buf_free_list_sz / 2; |
|
36354 | 159 |
for (size_t i = 0; i < n; ++i) { |
160 |
assert(_buf_free_list != NULL, |
|
161 |
"_buf_free_list_sz is wrong: " SIZE_FORMAT, _buf_free_list_sz); |
|
162 |
BufferNode* node = _buf_free_list; |
|
163 |
_buf_free_list = node->next(); |
|
164 |
_buf_free_list_sz--; |
|
165 |
BufferNode::deallocate(node); |
|
1374 | 166 |
} |
167 |
} |
|
168 |
||
4481 | 169 |
void PtrQueue::handle_zero_index() { |
46443 | 170 |
assert(index() == 0, "precondition"); |
7920 | 171 |
|
4481 | 172 |
// This thread records the full buffer and allocates a new one (while |
173 |
// holding the lock if there is one). |
|
174 |
if (_buf != NULL) { |
|
7920 | 175 |
if (!should_enqueue_buffer()) { |
46443 | 176 |
assert(index() > 0, "the buffer can only be re-used if it's not full"); |
7920 | 177 |
return; |
178 |
} |
|
179 |
||
4481 | 180 |
if (_lock) { |
4640
b5edb9b319e4
6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001
johnc
parents:
4481
diff
changeset
|
181 |
assert(_lock->owned_by_self(), "Required."); |
b5edb9b319e4
6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001
johnc
parents:
4481
diff
changeset
|
182 |
|
46443 | 183 |
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
|
184 |
_buf = NULL; // clear shared _buf field |
b5edb9b319e4
6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001
johnc
parents:
4481
diff
changeset
|
185 |
|
37065 | 186 |
locking_enqueue_completed_buffer(node); // enqueue completed buffer |
46685
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46630
diff
changeset
|
187 |
assert(_buf == NULL, "multiple enqueuers appear to be racing"); |
4481 | 188 |
} else { |
46443 | 189 |
BufferNode* node = BufferNode::make_node_from_buffer(_buf, index()); |
37065 | 190 |
if (qset()->process_or_enqueue_complete_buffer(node)) { |
4481 | 191 |
// Recycle the buffer. No allocation. |
37065 | 192 |
assert(_buf == BufferNode::make_buffer_from_node(node), "invariant"); |
46443 | 193 |
assert(capacity() == qset()->buffer_size(), "invariant"); |
194 |
reset(); |
|
4481 | 195 |
return; |
196 |
} |
|
197 |
} |
|
198 |
} |
|
46443 | 199 |
// Set capacity in case this is the first allocation. |
200 |
set_capacity(qset()->buffer_size()); |
|
201 |
// Allocate a new buffer. |
|
4481 | 202 |
_buf = qset()->allocate_buffer(); |
46443 | 203 |
reset(); |
4481 | 204 |
} |
1374 | 205 |
|
37065 | 206 |
bool PtrQueueSet::process_or_enqueue_complete_buffer(BufferNode* node) { |
4481 | 207 |
if (Thread::current()->is_Java_thread()) { |
208 |
// 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
|
209 |
if (_max_completed_queue == 0 || |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46443
diff
changeset
|
210 |
(_max_completed_queue > 0 && |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46443
diff
changeset
|
211 |
_n_completed_buffers >= _max_completed_queue + _completed_queue_padding)) { |
37065 | 212 |
bool b = mut_process_buffer(node); |
4481 | 213 |
if (b) { |
214 |
// True here means that the buffer hasn't been deallocated and the caller may reuse it. |
|
215 |
return true; |
|
216 |
} |
|
1374 | 217 |
} |
4481 | 218 |
} |
219 |
// The buffer will be enqueued. The caller will have to get a new one. |
|
37065 | 220 |
enqueue_complete_buffer(node); |
4481 | 221 |
return false; |
222 |
} |
|
1374 | 223 |
|
37065 | 224 |
void PtrQueueSet::enqueue_complete_buffer(BufferNode* cbn) { |
4481 | 225 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
36354 | 226 |
cbn->set_next(NULL); |
1374 | 227 |
if (_completed_buffers_tail == NULL) { |
228 |
assert(_completed_buffers_head == NULL, "Well-formedness"); |
|
229 |
_completed_buffers_head = cbn; |
|
230 |
_completed_buffers_tail = cbn; |
|
231 |
} else { |
|
4481 | 232 |
_completed_buffers_tail->set_next(cbn); |
1374 | 233 |
_completed_buffers_tail = cbn; |
234 |
} |
|
235 |
_n_completed_buffers++; |
|
236 |
||
4481 | 237 |
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
|
238 |
_n_completed_buffers >= (size_t)_process_completed_threshold) { |
1374 | 239 |
_process_completed = true; |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
240 |
if (_notify_when_complete) { |
4481 | 241 |
_cbl_mon->notify(); |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
242 |
} |
1374 | 243 |
} |
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
244 |
DEBUG_ONLY(assert_completed_buffer_list_len_correct_locked()); |
1374 | 245 |
} |
246 |
||
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36354
diff
changeset
|
247 |
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
|
248 |
size_t n = 0; |
4481 | 249 |
BufferNode* cbn = _completed_buffers_head; |
1374 | 250 |
while (cbn != NULL) { |
251 |
n++; |
|
4481 | 252 |
cbn = cbn->next(); |
1374 | 253 |
} |
254 |
return n; |
|
255 |
} |
|
256 |
||
257 |
void PtrQueueSet::assert_completed_buffer_list_len_correct() { |
|
258 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
259 |
assert_completed_buffer_list_len_correct_locked(); |
|
260 |
} |
|
261 |
||
262 |
void PtrQueueSet::assert_completed_buffer_list_len_correct_locked() { |
|
4481 | 263 |
guarantee(completed_buffers_list_length() == _n_completed_buffers, |
1374 | 264 |
"Completed buffer length is wrong."); |
265 |
} |
|
266 |
||
267 |
void PtrQueueSet::set_buffer_size(size_t sz) { |
|
46443 | 268 |
assert(_buffer_size == 0 && sz > 0, "Should be called only once."); |
269 |
_buffer_size = sz; |
|
1374 | 270 |
} |
271 |
||
4481 | 272 |
// Merge lists of buffers. Notify the processing threads. |
273 |
// 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
|
274 |
// must share the monitor. |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
275 |
void PtrQueueSet::merge_bufferlists(PtrQueueSet *src) { |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
276 |
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
|
277 |
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
|
278 |
if (_completed_buffers_tail == NULL) { |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
279 |
assert(_completed_buffers_head == NULL, "Well-formedness"); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
280 |
_completed_buffers_head = src->_completed_buffers_head; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
281 |
_completed_buffers_tail = src->_completed_buffers_tail; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
282 |
} else { |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
283 |
assert(_completed_buffers_head != NULL, "Well formedness"); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
284 |
if (src->_completed_buffers_head != NULL) { |
4481 | 285 |
_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
|
286 |
_completed_buffers_tail = src->_completed_buffers_tail; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
287 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
288 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
289 |
_n_completed_buffers += src->_n_completed_buffers; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
290 |
|
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
291 |
src->_n_completed_buffers = 0; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
292 |
src->_completed_buffers_head = NULL; |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
293 |
src->_completed_buffers_tail = NULL; |
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 |
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
|
296 |
_completed_buffers_head != NULL && _completed_buffers_tail != NULL, |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
297 |
"Sanity"); |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
298 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
299 |
|
4481 | 300 |
void PtrQueueSet::notify_if_necessary() { |
301 |
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
|
302 |
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
|
303 |
if (_n_completed_buffers >= (size_t)_process_completed_threshold || _max_completed_queue == 0) { |
4481 | 304 |
_process_completed = true; |
305 |
if (_notify_when_complete) |
|
306 |
_cbl_mon->notify(); |
|
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
307 |
} |
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
308 |
} |