author | david |
Fri, 27 Mar 2015 15:03:44 +0100 | |
changeset 29796 | 7a04e5c250d1 |
parent 28507 | 354ef83ee258 |
child 30154 | 39cd4e2ccf1c |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23855
diff
changeset
|
2 |
* Copyright (c) 2001, 2014, 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" |
7920 | 26 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
7397 | 27 |
#include "gc_implementation/g1/satbQueue.hpp" |
28 |
#include "memory/allocation.inline.hpp" |
|
29 |
#include "memory/sharedHeap.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
30 |
#include "oops/oop.inline.hpp" |
7397 | 31 |
#include "runtime/mutexLocker.hpp" |
32 |
#include "runtime/thread.hpp" |
|
10670
4ea0e7d2ffbc
6484982: G1: process references during evacuation pauses
johnc
parents:
7920
diff
changeset
|
33 |
#include "runtime/vmThread.hpp" |
1374 | 34 |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
35 |
void ObjPtrQueue::flush() { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
36 |
// The buffer might contain refs into the CSet. We have to filter it |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
37 |
// first before we flush it, otherwise we might end up with an |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
38 |
// enqueued buffer with refs into the CSet which breaks our invariants. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
39 |
filter(); |
28507 | 40 |
flush_impl(); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
41 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
42 |
|
7920 | 43 |
// This method removes entries from an SATB buffer that will not be |
44 |
// useful to the concurrent marking threads. An entry is removed if it |
|
45 |
// satisfies one of the following conditions: |
|
46 |
// |
|
47 |
// * it points to an object outside the G1 heap (G1's concurrent |
|
48 |
// marking only visits objects inside the G1 heap), |
|
49 |
// * it points to an object that has been allocated since marking |
|
50 |
// started (according to SATB those objects do not need to be |
|
51 |
// visited during marking), or |
|
52 |
// * it points to an object that has already been marked (no need to |
|
53 |
// process it again). |
|
54 |
// |
|
55 |
// The rest of the entries will be retained and are compacted towards |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
56 |
// the top of the buffer. Note that, because we do not allow old |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
57 |
// regions in the CSet during marking, all objects on the CSet regions |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
58 |
// are young (eden or survivors) and therefore implicitly live. So any |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
59 |
// references into the CSet will be removed during filtering. |
7920 | 60 |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
61 |
void ObjPtrQueue::filter() { |
7920 | 62 |
G1CollectedHeap* g1h = G1CollectedHeap::heap(); |
63 |
void** buf = _buf; |
|
64 |
size_t sz = _sz; |
|
65 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
66 |
if (buf == NULL) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
67 |
// nothing to do |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
68 |
return; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
69 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
70 |
|
7920 | 71 |
// Used for sanity checking at the end of the loop. |
72 |
debug_only(size_t entries = 0; size_t retained = 0;) |
|
73 |
||
74 |
size_t i = sz; |
|
75 |
size_t new_index = sz; |
|
76 |
||
77 |
while (i > _index) { |
|
78 |
assert(i > 0, "we should have at least one more entry to process"); |
|
79 |
i -= oopSize; |
|
80 |
debug_only(entries += 1;) |
|
81 |
oop* p = (oop*) &buf[byte_index_to_index((int) i)]; |
|
82 |
oop obj = *p; |
|
83 |
// NULL the entry so that unused parts of the buffer contain NULLs |
|
84 |
// at the end. If we are going to retain it we will copy it to its |
|
85 |
// final place. If we have retained all entries we have visited so |
|
86 |
// far, we'll just end up copying it to the same place. |
|
87 |
*p = NULL; |
|
88 |
||
89 |
bool retain = g1h->is_obj_ill(obj); |
|
90 |
if (retain) { |
|
91 |
assert(new_index > 0, "we should not have already filled up the buffer"); |
|
92 |
new_index -= oopSize; |
|
93 |
assert(new_index >= i, |
|
22775 | 94 |
"new_index should never be below i, as we always compact 'up'"); |
7920 | 95 |
oop* new_p = (oop*) &buf[byte_index_to_index((int) new_index)]; |
96 |
assert(new_p >= p, "the destination location should never be below " |
|
97 |
"the source as we always compact 'up'"); |
|
98 |
assert(*new_p == NULL, |
|
99 |
"we should have already cleared the destination location"); |
|
100 |
*new_p = obj; |
|
101 |
debug_only(retained += 1;) |
|
102 |
} |
|
103 |
} |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
104 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
105 |
#ifdef ASSERT |
7920 | 106 |
size_t entries_calc = (sz - _index) / oopSize; |
107 |
assert(entries == entries_calc, "the number of entries we counted " |
|
108 |
"should match the number of entries we calculated"); |
|
109 |
size_t retained_calc = (sz - new_index) / oopSize; |
|
110 |
assert(retained == retained_calc, "the number of retained entries we counted " |
|
111 |
"should match the number of retained entries we calculated"); |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
112 |
#endif // ASSERT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
113 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
114 |
_index = new_index; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
115 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
116 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
117 |
// This method will first apply the above filtering to the buffer. If |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
118 |
// post-filtering a large enough chunk of the buffer has been cleared |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
119 |
// we can re-use the buffer (instead of enqueueing it) and we can just |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
120 |
// allow the mutator to carry on executing using the same buffer |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
121 |
// instead of replacing it. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
122 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
123 |
bool ObjPtrQueue::should_enqueue_buffer() { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
124 |
assert(_lock == NULL || _lock->owned_by_self(), |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
125 |
"we should have taken the lock before calling this"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
126 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
127 |
// Even if G1SATBBufferEnqueueingThresholdPercent == 0 we have to |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
128 |
// filter the buffer given that this will remove any references into |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
129 |
// the CSet as we currently assume that no such refs will appear in |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
130 |
// enqueued buffers. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
131 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
132 |
// This method should only be called if there is a non-NULL buffer |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
133 |
// that is full. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
134 |
assert(_index == 0, "pre-condition"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
135 |
assert(_buf != NULL, "pre-condition"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
136 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
137 |
filter(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
138 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
139 |
size_t sz = _sz; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
140 |
size_t all_entries = sz / oopSize; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
141 |
size_t retained_entries = (sz - _index) / oopSize; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
142 |
size_t perc = retained_entries * 100 / all_entries; |
7920 | 143 |
bool should_enqueue = perc > (size_t) G1SATBBufferEnqueueingThresholdPercent; |
144 |
return should_enqueue; |
|
145 |
} |
|
146 |
||
1374 | 147 |
void ObjPtrQueue::apply_closure(ObjectClosure* cl) { |
148 |
if (_buf != NULL) { |
|
149 |
apply_closure_to_buffer(cl, _buf, _index, _sz); |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
150 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
151 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
152 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
153 |
void ObjPtrQueue::apply_closure_and_empty(ObjectClosure* cl) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
154 |
if (_buf != NULL) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
155 |
apply_closure_to_buffer(cl, _buf, _index, _sz); |
1374 | 156 |
_index = _sz; |
157 |
} |
|
158 |
} |
|
159 |
||
160 |
void ObjPtrQueue::apply_closure_to_buffer(ObjectClosure* cl, |
|
161 |
void** buf, size_t index, size_t sz) { |
|
162 |
if (cl == NULL) return; |
|
163 |
for (size_t i = index; i < sz; i += oopSize) { |
|
164 |
oop obj = (oop)buf[byte_index_to_index((int)i)]; |
|
165 |
// There can be NULL entries because of destructors. |
|
166 |
if (obj != NULL) { |
|
167 |
cl->do_object(obj); |
|
168 |
} |
|
169 |
} |
|
170 |
} |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
171 |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
172 |
#ifndef PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
173 |
// Helpful for debugging |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
174 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
175 |
void ObjPtrQueue::print(const char* name) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
176 |
print(name, _buf, _index, _sz); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
177 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
178 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
179 |
void ObjPtrQueue::print(const char* name, |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
180 |
void** buf, size_t index, size_t sz) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
181 |
gclog_or_tty->print_cr(" SATB BUFFER [%s] buf: "PTR_FORMAT" " |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
182 |
"index: "SIZE_FORMAT" sz: "SIZE_FORMAT, |
29796
7a04e5c250d1
8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
28507
diff
changeset
|
183 |
name, p2i(buf), index, sz); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
184 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
185 |
#endif // PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
186 |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
187 |
#ifdef ASSERT |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
188 |
void ObjPtrQueue::verify_oops_in_buffer() { |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
189 |
if (_buf == NULL) return; |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
190 |
for (size_t i = _index; i < _sz; i += oopSize) { |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
191 |
oop obj = (oop)_buf[byte_index_to_index((int)i)]; |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
192 |
assert(obj != NULL && obj->is_oop(true /* ignore mark word */), |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
193 |
"Not an oop"); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
194 |
} |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
195 |
} |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
196 |
#endif |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
197 |
|
1374 | 198 |
#ifdef _MSC_VER // the use of 'this' below gets a warning, make it go away |
199 |
#pragma warning( disable:4355 ) // 'this' : used in base member initializer list |
|
200 |
#endif // _MSC_VER |
|
201 |
||
202 |
SATBMarkQueueSet::SATBMarkQueueSet() : |
|
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
203 |
PtrQueueSet(), _closures(NULL), |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
204 |
_shared_satb_queue(this, true /*perm*/) { } |
1374 | 205 |
|
206 |
void SATBMarkQueueSet::initialize(Monitor* cbl_mon, Mutex* fl_lock, |
|
4481 | 207 |
int process_completed_threshold, |
1374 | 208 |
Mutex* lock) { |
4481 | 209 |
PtrQueueSet::initialize(cbl_mon, fl_lock, process_completed_threshold, -1); |
1374 | 210 |
_shared_satb_queue.set_lock(lock); |
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
211 |
_closures = NEW_C_HEAP_ARRAY(ObjectClosure*, ParallelGCThreads, mtGC); |
1374 | 212 |
} |
213 |
||
214 |
void SATBMarkQueueSet::handle_zero_index_for_thread(JavaThread* t) { |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
215 |
DEBUG_ONLY(t->satb_mark_queue().verify_oops_in_buffer();) |
1374 | 216 |
t->satb_mark_queue().handle_zero_index(); |
217 |
} |
|
218 |
||
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
219 |
#ifdef ASSERT |
22497 | 220 |
void SATBMarkQueueSet::dump_active_states(bool expected_active) { |
221 |
gclog_or_tty->print_cr("Expected SATB active state: %s", |
|
222 |
expected_active ? "ACTIVE" : "INACTIVE"); |
|
223 |
gclog_or_tty->print_cr("Actual SATB active states:"); |
|
224 |
gclog_or_tty->print_cr(" Queue set: %s", is_active() ? "ACTIVE" : "INACTIVE"); |
|
225 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
|
226 |
gclog_or_tty->print_cr(" Thread \"%s\" queue: %s", t->name(), |
|
227 |
t->satb_mark_queue().is_active() ? "ACTIVE" : "INACTIVE"); |
|
228 |
} |
|
229 |
gclog_or_tty->print_cr(" Shared queue: %s", |
|
230 |
shared_satb_queue()->is_active() ? "ACTIVE" : "INACTIVE"); |
|
231 |
} |
|
232 |
||
233 |
void SATBMarkQueueSet::verify_active_states(bool expected_active) { |
|
234 |
// Verify queue set state |
|
235 |
if (is_active() != expected_active) { |
|
236 |
dump_active_states(expected_active); |
|
237 |
guarantee(false, "SATB queue set has an unexpected active state"); |
|
238 |
} |
|
239 |
||
240 |
// Verify thread queue states |
|
241 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
|
242 |
if (t->satb_mark_queue().is_active() != expected_active) { |
|
243 |
dump_active_states(expected_active); |
|
244 |
guarantee(false, "Thread SATB queue has an unexpected active state"); |
|
245 |
} |
|
246 |
} |
|
247 |
||
248 |
// Verify shared queue state |
|
249 |
if (shared_satb_queue()->is_active() != expected_active) { |
|
250 |
dump_active_states(expected_active); |
|
251 |
guarantee(false, "Shared SATB queue has an unexpected active state"); |
|
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
252 |
} |
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
253 |
} |
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
254 |
#endif // ASSERT |
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
255 |
|
22497 | 256 |
void SATBMarkQueueSet::set_active_all_threads(bool active, bool expected_active) { |
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
257 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
258 |
#ifdef ASSERT |
22497 | 259 |
verify_active_states(expected_active); |
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
260 |
#endif // ASSERT |
22497 | 261 |
_all_active = active; |
262 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
|
263 |
t->satb_mark_queue().set_active(active); |
|
1374 | 264 |
} |
22497 | 265 |
shared_satb_queue()->set_active(active); |
1374 | 266 |
} |
267 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
268 |
void SATBMarkQueueSet::filter_thread_buffers() { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
269 |
for(JavaThread* t = Threads::first(); t; t = t->next()) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
270 |
t->satb_mark_queue().filter(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
271 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
272 |
shared_satb_queue()->filter(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
273 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
274 |
|
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
275 |
void SATBMarkQueueSet::set_closure(uint worker, ObjectClosure* closure) { |
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
276 |
assert(_closures != NULL, "Precondition"); |
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
277 |
assert(worker < ParallelGCThreads, "Worker index must be in range [0...ParallelGCThreads)"); |
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
278 |
_closures[worker] = closure; |
1374 | 279 |
} |
280 |
||
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
281 |
bool SATBMarkQueueSet::apply_closure_to_completed_buffer(uint worker) { |
4481 | 282 |
BufferNode* nd = NULL; |
1374 | 283 |
{ |
284 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
285 |
if (_completed_buffers_head != NULL) { |
|
286 |
nd = _completed_buffers_head; |
|
4481 | 287 |
_completed_buffers_head = nd->next(); |
1374 | 288 |
if (_completed_buffers_head == NULL) _completed_buffers_tail = NULL; |
289 |
_n_completed_buffers--; |
|
290 |
if (_n_completed_buffers == 0) _process_completed = false; |
|
291 |
} |
|
292 |
} |
|
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
25492
diff
changeset
|
293 |
ObjectClosure* cl = _closures[worker]; |
1374 | 294 |
if (nd != NULL) { |
4481 | 295 |
void **buf = BufferNode::make_buffer_from_node(nd); |
296 |
ObjPtrQueue::apply_closure_to_buffer(cl, buf, 0, _sz); |
|
297 |
deallocate_buffer(buf); |
|
1374 | 298 |
return true; |
299 |
} else { |
|
300 |
return false; |
|
301 |
} |
|
302 |
} |
|
303 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
304 |
void SATBMarkQueueSet::iterate_completed_buffers_read_only(ObjectClosure* cl) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
305 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
306 |
assert(cl != NULL, "pre-condition"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
307 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
308 |
BufferNode* nd = _completed_buffers_head; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
309 |
while (nd != NULL) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
310 |
void** buf = BufferNode::make_buffer_from_node(nd); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
311 |
ObjPtrQueue::apply_closure_to_buffer(cl, buf, 0, _sz); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
312 |
nd = nd->next(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
313 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
314 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
315 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
316 |
void SATBMarkQueueSet::iterate_thread_buffers_read_only(ObjectClosure* cl) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
317 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
318 |
assert(cl != NULL, "pre-condition"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
319 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
320 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
321 |
t->satb_mark_queue().apply_closure(cl); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
322 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
323 |
shared_satb_queue()->apply_closure(cl); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
324 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
325 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
326 |
#ifndef PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
327 |
// Helpful for debugging |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
328 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
329 |
#define SATB_PRINTER_BUFFER_SIZE 256 |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
330 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
331 |
void SATBMarkQueueSet::print_all(const char* msg) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
332 |
char buffer[SATB_PRINTER_BUFFER_SIZE]; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
333 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
334 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
335 |
gclog_or_tty->cr(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
336 |
gclog_or_tty->print_cr("SATB BUFFERS [%s]", msg); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
337 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
338 |
BufferNode* nd = _completed_buffers_head; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
339 |
int i = 0; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
340 |
while (nd != NULL) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
341 |
void** buf = BufferNode::make_buffer_from_node(nd); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
342 |
jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Enqueued: %d", i); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
343 |
ObjPtrQueue::print(buffer, buf, 0, _sz); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
344 |
nd = nd->next(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
345 |
i += 1; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
346 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
347 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
348 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
349 |
jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Thread: %s", t->name()); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
350 |
t->satb_mark_queue().print(buffer); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
351 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
352 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
353 |
shared_satb_queue()->print("Shared"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
354 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
355 |
gclog_or_tty->cr(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
356 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
357 |
#endif // PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
358 |
|
1374 | 359 |
void SATBMarkQueueSet::abandon_partial_marking() { |
4481 | 360 |
BufferNode* buffers_to_delete = NULL; |
1374 | 361 |
{ |
362 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
363 |
while (_completed_buffers_head != NULL) { |
|
4481 | 364 |
BufferNode* nd = _completed_buffers_head; |
365 |
_completed_buffers_head = nd->next(); |
|
366 |
nd->set_next(buffers_to_delete); |
|
1374 | 367 |
buffers_to_delete = nd; |
368 |
} |
|
369 |
_completed_buffers_tail = NULL; |
|
370 |
_n_completed_buffers = 0; |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
371 |
DEBUG_ONLY(assert_completed_buffer_list_len_correct_locked()); |
1374 | 372 |
} |
373 |
while (buffers_to_delete != NULL) { |
|
4481 | 374 |
BufferNode* nd = buffers_to_delete; |
375 |
buffers_to_delete = nd->next(); |
|
376 |
deallocate_buffer(BufferNode::make_buffer_from_node(nd)); |
|
1374 | 377 |
} |
378 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
|
379 |
// So we can safely manipulate these queues. |
|
380 |
for (JavaThread* t = Threads::first(); t; t = t->next()) { |
|
381 |
t->satb_mark_queue().reset(); |
|
382 |
} |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
383 |
shared_satb_queue()->reset(); |
1374 | 384 |
} |