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