author | tschatzl |
Wed, 16 Apr 2014 16:46:58 +0200 | |
changeset 24104 | febf9363fb68 |
parent 23855 | c4574075402c |
child 25351 | 7c198a690050 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
6247 | 2 |
* Copyright (c) 2001, 2010, 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:
4481
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4481
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:
4481
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "gc_implementation/g1/dirtyCardQueue.hpp" |
|
23543 | 27 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
7397 | 28 |
#include "gc_implementation/g1/heapRegionRemSet.hpp" |
29 |
#include "runtime/atomic.hpp" |
|
30 |
#include "runtime/mutexLocker.hpp" |
|
31 |
#include "runtime/safepoint.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
10565
diff
changeset
|
32 |
#include "runtime/thread.inline.hpp" |
7397 | 33 |
#include "utilities/workgroup.hpp" |
1374 | 34 |
|
35 |
bool DirtyCardQueue::apply_closure(CardTableEntryClosure* cl, |
|
36 |
bool consume, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
37 |
uint worker_i) { |
1374 | 38 |
bool res = true; |
39 |
if (_buf != NULL) { |
|
40 |
res = apply_closure_to_buffer(cl, _buf, _index, _sz, |
|
41 |
consume, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
42 |
worker_i); |
1374 | 43 |
if (res && consume) _index = _sz; |
44 |
} |
|
45 |
return res; |
|
46 |
} |
|
47 |
||
48 |
bool DirtyCardQueue::apply_closure_to_buffer(CardTableEntryClosure* cl, |
|
49 |
void** buf, |
|
50 |
size_t index, size_t sz, |
|
51 |
bool consume, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
52 |
uint worker_i) { |
1374 | 53 |
if (cl == NULL) return true; |
54 |
for (size_t i = index; i < sz; i += oopSize) { |
|
55 |
int ind = byte_index_to_index((int)i); |
|
56 |
jbyte* card_ptr = (jbyte*)buf[ind]; |
|
57 |
if (card_ptr != NULL) { |
|
58 |
// Set the entry to null, so we don't do it again (via the test |
|
59 |
// above) if we reconsider this buffer. |
|
60 |
if (consume) buf[ind] = NULL; |
|
61 |
if (!cl->do_card_ptr(card_ptr, worker_i)) return false; |
|
62 |
} |
|
63 |
} |
|
64 |
return true; |
|
65 |
} |
|
66 |
||
67 |
#ifdef _MSC_VER // the use of 'this' below gets a warning, make it go away |
|
68 |
#pragma warning( disable:4355 ) // 'this' : used in base member initializer list |
|
69 |
#endif // _MSC_VER |
|
70 |
||
4481 | 71 |
DirtyCardQueueSet::DirtyCardQueueSet(bool notify_when_complete) : |
72 |
PtrQueueSet(notify_when_complete), |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
73 |
_mut_process_closure(NULL), |
1374 | 74 |
_shared_dirty_card_queue(this, true /*perm*/), |
75 |
_free_ids(NULL), |
|
76 |
_processed_buffers_mut(0), _processed_buffers_rs_thread(0) |
|
77 |
{ |
|
78 |
_all_active = true; |
|
79 |
} |
|
80 |
||
2882
d508a8bac491
6841831: G1: assert(contains_reference(from),"We just added it!") fires
iveresov
parents:
2881
diff
changeset
|
81 |
// Determines how many mutator threads can process the buffers in parallel. |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
82 |
uint DirtyCardQueueSet::num_par_ids() { |
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
83 |
return (uint)os::processor_count(); |
1374 | 84 |
} |
85 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
86 |
void DirtyCardQueueSet::initialize(CardTableEntryClosure* cl, Monitor* cbl_mon, Mutex* fl_lock, |
4481 | 87 |
int process_completed_threshold, |
1374 | 88 |
int max_completed_queue, |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
1623
diff
changeset
|
89 |
Mutex* lock, PtrQueueSet* fl_owner) { |
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
90 |
_mut_process_closure = cl; |
4481 | 91 |
PtrQueueSet::initialize(cbl_mon, fl_lock, process_completed_threshold, |
92 |
max_completed_queue, fl_owner); |
|
3583
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
2882
diff
changeset
|
93 |
set_buffer_size(G1UpdateBufferSize); |
1374 | 94 |
_shared_dirty_card_queue.set_lock(lock); |
95 |
_free_ids = new FreeIdSet((int) num_par_ids(), _cbl_mon); |
|
96 |
} |
|
97 |
||
98 |
void DirtyCardQueueSet::handle_zero_index_for_thread(JavaThread* t) { |
|
99 |
t->dirty_card_queue().handle_zero_index(); |
|
100 |
} |
|
101 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
102 |
void DirtyCardQueueSet::iterate_closure_all_threads(CardTableEntryClosure* cl, |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
103 |
bool consume, |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
104 |
uint worker_i) { |
1374 | 105 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
106 |
for(JavaThread* t = Threads::first(); t; t = t->next()) { |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
107 |
bool b = t->dirty_card_queue().apply_closure(cl, consume); |
1374 | 108 |
guarantee(b, "Should not be interrupted."); |
109 |
} |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
110 |
bool b = shared_dirty_card_queue()->apply_closure(cl, |
1374 | 111 |
consume, |
112 |
worker_i); |
|
113 |
guarantee(b, "Should not be interrupted."); |
|
114 |
} |
|
115 |
||
116 |
bool DirtyCardQueueSet::mut_process_buffer(void** buf) { |
|
117 |
||
118 |
// Used to determine if we had already claimed a par_id |
|
119 |
// before entering this method. |
|
120 |
bool already_claimed = false; |
|
121 |
||
122 |
// We grab the current JavaThread. |
|
123 |
JavaThread* thread = JavaThread::current(); |
|
124 |
||
125 |
// We get the the number of any par_id that this thread |
|
126 |
// might have already claimed. |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
127 |
uint worker_i = thread->get_claimed_par_id(); |
1374 | 128 |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
129 |
// If worker_i is not UINT_MAX then the thread has already claimed |
1374 | 130 |
// a par_id. We make note of it using the already_claimed value |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
131 |
if (worker_i != UINT_MAX) { |
1374 | 132 |
already_claimed = true; |
133 |
} else { |
|
134 |
||
135 |
// Otherwise we need to claim a par id |
|
136 |
worker_i = _free_ids->claim_par_id(); |
|
137 |
||
138 |
// And store the par_id value in the thread |
|
139 |
thread->set_claimed_par_id(worker_i); |
|
140 |
} |
|
141 |
||
142 |
bool b = false; |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
143 |
if (worker_i != UINT_MAX) { |
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
144 |
b = DirtyCardQueue::apply_closure_to_buffer(_mut_process_closure, buf, 0, |
1374 | 145 |
_sz, true, worker_i); |
146 |
if (b) Atomic::inc(&_processed_buffers_mut); |
|
147 |
||
148 |
// If we had not claimed an id before entering the method |
|
149 |
// then we must release the id. |
|
150 |
if (!already_claimed) { |
|
151 |
||
152 |
// we release the id |
|
153 |
_free_ids->release_par_id(worker_i); |
|
154 |
||
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
155 |
// and set the claimed_id in the thread to UINT_MAX |
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
156 |
thread->set_claimed_par_id(UINT_MAX); |
1374 | 157 |
} |
158 |
} |
|
159 |
return b; |
|
160 |
} |
|
161 |
||
4481 | 162 |
|
163 |
BufferNode* |
|
4460
8ffd47b73f43
6899058: G1: Internal error in ptrQueue.cpp:201 in nightly tests
johnc
parents:
3585
diff
changeset
|
164 |
DirtyCardQueueSet::get_completed_buffer(int stop_at) { |
4481 | 165 |
BufferNode* nd = NULL; |
1374 | 166 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
167 |
||
168 |
if ((int)_n_completed_buffers <= stop_at) { |
|
169 |
_process_completed = false; |
|
170 |
return NULL; |
|
171 |
} |
|
172 |
||
173 |
if (_completed_buffers_head != NULL) { |
|
174 |
nd = _completed_buffers_head; |
|
4481 | 175 |
_completed_buffers_head = nd->next(); |
1374 | 176 |
if (_completed_buffers_head == NULL) |
177 |
_completed_buffers_tail = NULL; |
|
178 |
_n_completed_buffers--; |
|
4481 | 179 |
assert(_n_completed_buffers >= 0, "Invariant"); |
1374 | 180 |
} |
181 |
debug_only(assert_completed_buffer_list_len_correct_locked()); |
|
182 |
return nd; |
|
183 |
} |
|
184 |
||
185 |
bool DirtyCardQueueSet:: |
|
6247 | 186 |
apply_closure_to_completed_buffer_helper(CardTableEntryClosure* cl, |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
187 |
uint worker_i, |
4481 | 188 |
BufferNode* nd) { |
1374 | 189 |
if (nd != NULL) { |
4481 | 190 |
void **buf = BufferNode::make_buffer_from_node(nd); |
191 |
size_t index = nd->index(); |
|
1374 | 192 |
bool b = |
6247 | 193 |
DirtyCardQueue::apply_closure_to_buffer(cl, buf, |
4481 | 194 |
index, _sz, |
1374 | 195 |
true, worker_i); |
196 |
if (b) { |
|
197 |
deallocate_buffer(buf); |
|
198 |
return true; // In normal case, go on to next buffer. |
|
199 |
} else { |
|
4481 | 200 |
enqueue_complete_buffer(buf, index); |
1374 | 201 |
return false; |
202 |
} |
|
203 |
} else { |
|
204 |
return false; |
|
205 |
} |
|
206 |
} |
|
207 |
||
6247 | 208 |
bool DirtyCardQueueSet::apply_closure_to_completed_buffer(CardTableEntryClosure* cl, |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23543
diff
changeset
|
209 |
uint worker_i, |
6247 | 210 |
int stop_at, |
211 |
bool during_pause) { |
|
212 |
assert(!during_pause || stop_at == 0, "Should not leave any completed buffers during a pause"); |
|
213 |
BufferNode* nd = get_completed_buffer(stop_at); |
|
214 |
bool res = apply_closure_to_completed_buffer_helper(cl, worker_i, nd); |
|
215 |
if (res) Atomic::inc(&_processed_buffers_rs_thread); |
|
216 |
return res; |
|
217 |
} |
|
218 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
219 |
void DirtyCardQueueSet::apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl) { |
4481 | 220 |
BufferNode* nd = _completed_buffers_head; |
1374 | 221 |
while (nd != NULL) { |
222 |
bool b = |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
223 |
DirtyCardQueue::apply_closure_to_buffer(cl, |
4481 | 224 |
BufferNode::make_buffer_from_node(nd), |
225 |
0, _sz, false); |
|
1374 | 226 |
guarantee(b, "Should not stop early."); |
4481 | 227 |
nd = nd->next(); |
1374 | 228 |
} |
229 |
} |
|
230 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
231 |
void DirtyCardQueueSet::par_apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl) { |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
232 |
BufferNode* nd = _cur_par_buffer_node; |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
233 |
while (nd != NULL) { |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
234 |
BufferNode* next = (BufferNode*)nd->next(); |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
235 |
BufferNode* actual = (BufferNode*)Atomic::cmpxchg_ptr((void*)next, (volatile void*)&_cur_par_buffer_node, (void*)nd); |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
236 |
if (actual == nd) { |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
237 |
bool b = |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
238 |
DirtyCardQueue::apply_closure_to_buffer(cl, |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
239 |
BufferNode::make_buffer_from_node(actual), |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
240 |
0, _sz, false); |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
241 |
guarantee(b, "Should not stop early."); |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
242 |
nd = next; |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
243 |
} else { |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
244 |
nd = actual; |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
245 |
} |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
246 |
} |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
247 |
} |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
248 |
|
6247 | 249 |
// Deallocates any completed log buffers |
250 |
void DirtyCardQueueSet::clear() { |
|
4481 | 251 |
BufferNode* buffers_to_delete = NULL; |
1374 | 252 |
{ |
253 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
254 |
while (_completed_buffers_head != NULL) { |
|
4481 | 255 |
BufferNode* nd = _completed_buffers_head; |
256 |
_completed_buffers_head = nd->next(); |
|
257 |
nd->set_next(buffers_to_delete); |
|
1374 | 258 |
buffers_to_delete = nd; |
259 |
} |
|
260 |
_n_completed_buffers = 0; |
|
261 |
_completed_buffers_tail = NULL; |
|
262 |
debug_only(assert_completed_buffer_list_len_correct_locked()); |
|
263 |
} |
|
264 |
while (buffers_to_delete != NULL) { |
|
4481 | 265 |
BufferNode* nd = buffers_to_delete; |
266 |
buffers_to_delete = nd->next(); |
|
267 |
deallocate_buffer(BufferNode::make_buffer_from_node(nd)); |
|
1374 | 268 |
} |
6247 | 269 |
|
270 |
} |
|
271 |
||
272 |
void DirtyCardQueueSet::abandon_logs() { |
|
273 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
|
274 |
clear(); |
|
1374 | 275 |
// Since abandon is done only at safepoints, we can safely manipulate |
276 |
// these queues. |
|
277 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
|
278 |
t->dirty_card_queue().reset(); |
|
279 |
} |
|
280 |
shared_dirty_card_queue()->reset(); |
|
281 |
} |
|
282 |
||
283 |
||
284 |
void DirtyCardQueueSet::concatenate_logs() { |
|
285 |
// Iterate over all the threads, if we find a partial log add it to |
|
286 |
// the global list of logs. Temporarily turn off the limit on the number |
|
287 |
// of outstanding buffers. |
|
288 |
int save_max_completed_queue = _max_completed_queue; |
|
289 |
_max_completed_queue = max_jint; |
|
290 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
|
291 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
|
292 |
DirtyCardQueue& dcq = t->dirty_card_queue(); |
|
293 |
if (dcq.size() != 0) { |
|
294 |
void **buf = t->dirty_card_queue().get_buf(); |
|
295 |
// We must NULL out the unused entries, then enqueue. |
|
296 |
for (size_t i = 0; i < t->dirty_card_queue().get_index(); i += oopSize) { |
|
297 |
buf[PtrQueue::byte_index_to_index((int)i)] = NULL; |
|
298 |
} |
|
299 |
enqueue_complete_buffer(dcq.get_buf(), dcq.get_index()); |
|
300 |
dcq.reinitialize(); |
|
301 |
} |
|
302 |
} |
|
303 |
if (_shared_dirty_card_queue.size() != 0) { |
|
304 |
enqueue_complete_buffer(_shared_dirty_card_queue.get_buf(), |
|
305 |
_shared_dirty_card_queue.get_index()); |
|
306 |
_shared_dirty_card_queue.reinitialize(); |
|
307 |
} |
|
308 |
// Restore the completed buffer queue limit. |
|
309 |
_max_completed_queue = save_max_completed_queue; |
|
310 |
} |