author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 49752 | 93d84f667d12 |
child 51278 | d56dd9798d54 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
49007
82d9d5744e5f
8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS
pliden
parents:
48105
diff
changeset
|
2 |
* Copyright (c) 2001, 2018, 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" |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47216
diff
changeset
|
26 |
#include "jvm.h" |
30764 | 27 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
28 |
#include "gc/g1/g1ThreadLocalData.hpp" |
33792 | 29 |
#include "gc/g1/satbMarkQueue.hpp" |
30764 | 30 |
#include "gc/shared/collectedHeap.hpp" |
7397 | 31 |
#include "memory/allocation.inline.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
32 |
#include "oops/oop.inline.hpp" |
7397 | 33 |
#include "runtime/mutexLocker.hpp" |
30577
de9fa7ccc1bc
8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents:
30279
diff
changeset
|
34 |
#include "runtime/safepoint.hpp" |
7397 | 35 |
#include "runtime/thread.hpp" |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
36 |
#include "runtime/threadSMR.hpp" |
10670
4ea0e7d2ffbc
6484982: G1: process references during evacuation pauses
johnc
parents:
7920
diff
changeset
|
37 |
#include "runtime/vmThread.hpp" |
1374 | 38 |
|
33792 | 39 |
SATBMarkQueue::SATBMarkQueue(SATBMarkQueueSet* qset, bool permanent) : |
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
40 |
// SATB queues are only active during marking cycles. We create |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
41 |
// them with their active field set to false. If a thread is |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
42 |
// created during a cycle and its SATB queue needs to be activated |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
43 |
// before the thread starts running, we'll need to set its active |
49347
edb65305d3ac
8195148: Collapse G1SATBCardTableModRefBS and G1SATBCardTableLoggingModRefBS into a single G1BarrierSet
eosterlund
parents:
49007
diff
changeset
|
44 |
// field to true. This is done in G1SBarrierSet::on_thread_attach(). |
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
45 |
PtrQueue(qset, permanent, false /* active */) |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
46 |
{ } |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
47 |
|
33792 | 48 |
void SATBMarkQueue::flush() { |
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
49 |
// Filter now to possibly save work later. If filtering empties the |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
50 |
// buffer then flush_impl can deallocate the buffer. |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
51 |
filter(); |
28507 | 52 |
flush_impl(); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
53 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
54 |
|
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
55 |
// Return true if a SATB buffer entry refers to an object that |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
56 |
// requires marking. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
57 |
// |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
58 |
// The entry must point into the G1 heap. In particular, it must not |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
59 |
// be a NULL pointer. NULL pointers are pre-filtered and never |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
60 |
// inserted into a SATB buffer. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
61 |
// |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
62 |
// An entry that is below the NTAMS pointer for the containing heap |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
63 |
// region requires marking. Such an entry must point to a valid object. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
64 |
// |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
65 |
// An entry that is at least the NTAMS pointer for the containing heap |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
66 |
// region might be any of the following, none of which should be marked. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
67 |
// |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
68 |
// * A reference to an object allocated since marking started. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
69 |
// According to SATB, such objects are implicitly kept live and do |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
70 |
// not need to be dealt with via SATB buffer processing. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
71 |
// |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
72 |
// * A reference to a young generation object. Young objects are |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
73 |
// handled separately and are not marked by concurrent marking. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
74 |
// |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
75 |
// * A stale reference to a young generation object. If a young |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
76 |
// generation object reference is recorded and not filtered out |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
77 |
// before being moved by a young collection, the reference becomes |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
78 |
// stale. |
7920 | 79 |
// |
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
80 |
// * A stale reference to an eagerly reclaimed humongous object. If a |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
81 |
// humongous object is recorded and then reclaimed, the reference |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
82 |
// becomes stale. |
7920 | 83 |
// |
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
84 |
// The stale reference cases are implicitly handled by the NTAMS |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
85 |
// comparison. Because of the possibility of stale references, buffer |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
86 |
// processing must be somewhat circumspect and not assume entries |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
87 |
// in an unfiltered buffer refer to valid objects. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
88 |
|
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
89 |
inline bool requires_marking(const void* entry, G1CollectedHeap* heap) { |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
90 |
// Includes rejection of NULL pointers. |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
91 |
assert(heap->is_in_reserved(entry), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
92 |
"Non-heap pointer in SATB buffer: " PTR_FORMAT, p2i(entry)); |
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
93 |
|
33786
ac8da6513351
8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents:
33762
diff
changeset
|
94 |
HeapRegion* region = heap->heap_region_containing(entry); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
95 |
assert(region != NULL, "No region for " PTR_FORMAT, p2i(entry)); |
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
96 |
if (entry >= region->next_top_at_mark_start()) { |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
97 |
return false; |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
98 |
} |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
99 |
|
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46560
diff
changeset
|
100 |
assert(oopDesc::is_oop(oop(entry), true /* ignore mark word */), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
101 |
"Invalid oop in SATB buffer: " PTR_FORMAT, p2i(entry)); |
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
102 |
|
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
103 |
return true; |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
104 |
} |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
105 |
|
37065 | 106 |
inline bool retain_entry(const void* entry, G1CollectedHeap* heap) { |
49719
a0f5f7868091
8201171: Cleanup in g1CollectedHeap, change CamelCase to snake_case
lkorinth
parents:
49347
diff
changeset
|
107 |
return requires_marking(entry, heap) && !heap->is_marked_next((oop)entry); |
37065 | 108 |
} |
109 |
||
30255
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
110 |
// This method removes entries from a SATB buffer that will not be |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
111 |
// useful to the concurrent marking threads. Entries are retained if |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
112 |
// they require marking and are not already marked. Retained entries |
f43e306ec51e
8075466: SATB queue pre-filter verify found reclaimed humongous object
kbarrett
parents:
30154
diff
changeset
|
113 |
// are compacted toward the top of the buffer. |
7920 | 114 |
|
33792 | 115 |
void SATBMarkQueue::filter() { |
7920 | 116 |
G1CollectedHeap* g1h = G1CollectedHeap::heap(); |
117 |
void** buf = _buf; |
|
118 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
119 |
if (buf == NULL) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
120 |
// nothing to do |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
121 |
return; |
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 |
|
37065 | 124 |
// Two-fingered compaction toward the end. |
46443 | 125 |
void** src = &buf[index()]; |
126 |
void** dst = &buf[capacity()]; |
|
127 |
assert(src <= dst, "invariant"); |
|
37065 | 128 |
for ( ; src < dst; ++src) { |
129 |
// Search low to high for an entry to keep. |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
130 |
void* entry = *src; |
37065 | 131 |
if (retain_entry(entry, g1h)) { |
132 |
// Found keeper. Search high to low for an entry to discard. |
|
133 |
while (src < --dst) { |
|
134 |
if (!retain_entry(*dst, g1h)) { |
|
135 |
*dst = entry; // Replace discard with keeper. |
|
136 |
break; |
|
137 |
} |
|
138 |
} |
|
139 |
// If discard search failed (src == dst), the outer loop will also end. |
|
7920 | 140 |
} |
141 |
} |
|
37065 | 142 |
// dst points to the lowest retained entry, or the end of the buffer |
143 |
// if all the entries were filtered out. |
|
46443 | 144 |
set_index(dst - buf); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
145 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
146 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
147 |
// 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
|
148 |
// 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
|
149 |
// 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
|
150 |
// 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
|
151 |
// instead of replacing it. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
152 |
|
33792 | 153 |
bool SATBMarkQueue::should_enqueue_buffer() { |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
154 |
assert(_lock == NULL || _lock->owned_by_self(), |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
155 |
"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
|
156 |
|
30577
de9fa7ccc1bc
8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents:
30279
diff
changeset
|
157 |
// If G1SATBBufferEnqueueingThresholdPercent == 0 we could skip filtering. |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
158 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
159 |
// 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
|
160 |
// that is full. |
46443 | 161 |
assert(index() == 0, "pre-condition"); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
162 |
assert(_buf != NULL, "pre-condition"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
163 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
164 |
filter(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
165 |
|
46443 | 166 |
size_t cap = capacity(); |
167 |
size_t percent_used = ((cap - index()) * 100) / cap; |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
168 |
bool should_enqueue = percent_used > G1SATBBufferEnqueueingThresholdPercent; |
7920 | 169 |
return should_enqueue; |
170 |
} |
|
171 |
||
33792 | 172 |
void SATBMarkQueue::apply_closure_and_empty(SATBBufferClosure* cl) { |
30577
de9fa7ccc1bc
8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents:
30279
diff
changeset
|
173 |
assert(SafepointSynchronize::is_at_safepoint(), |
de9fa7ccc1bc
8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents:
30279
diff
changeset
|
174 |
"SATB queues must only be processed at safepoints"); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
175 |
if (_buf != NULL) { |
46443 | 176 |
cl->do_buffer(&_buf[index()], size()); |
177 |
reset(); |
|
1374 | 178 |
} |
179 |
} |
|
180 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
181 |
#ifndef PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
182 |
// Helpful for debugging |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
183 |
|
46443 | 184 |
static void print_satb_buffer(const char* name, |
185 |
void** buf, |
|
186 |
size_t index, |
|
187 |
size_t capacity) { |
|
188 |
tty->print_cr(" SATB BUFFER [%s] buf: " PTR_FORMAT " index: " SIZE_FORMAT |
|
189 |
" capacity: " SIZE_FORMAT, |
|
190 |
name, p2i(buf), index, capacity); |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
191 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
192 |
|
46443 | 193 |
void SATBMarkQueue::print(const char* name) { |
194 |
print_satb_buffer(name, _buf, index(), capacity()); |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
195 |
} |
46443 | 196 |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
197 |
#endif // PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
198 |
|
1374 | 199 |
SATBMarkQueueSet::SATBMarkQueueSet() : |
30268
d28a9aa10804
8078021: SATB apply_closure_to_completed_buffer should have closure argument
kbarrett
parents:
30255
diff
changeset
|
200 |
PtrQueueSet(), |
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
33105
diff
changeset
|
201 |
_shared_satb_queue(this, true /* permanent */) { } |
1374 | 202 |
|
203 |
void SATBMarkQueueSet::initialize(Monitor* cbl_mon, Mutex* fl_lock, |
|
4481 | 204 |
int process_completed_threshold, |
1374 | 205 |
Mutex* lock) { |
4481 | 206 |
PtrQueueSet::initialize(cbl_mon, fl_lock, process_completed_threshold, -1); |
1374 | 207 |
_shared_satb_queue.set_lock(lock); |
208 |
} |
|
209 |
||
210 |
void SATBMarkQueueSet::handle_zero_index_for_thread(JavaThread* t) { |
|
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
211 |
G1ThreadLocalData::satb_mark_queue(t).handle_zero_index(); |
1374 | 212 |
} |
213 |
||
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
214 |
#ifdef ASSERT |
22497 | 215 |
void SATBMarkQueueSet::dump_active_states(bool expected_active) { |
36090
cffc1dd98258
8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents:
35061
diff
changeset
|
216 |
log_error(gc, verify)("Expected SATB active state: %s", expected_active ? "ACTIVE" : "INACTIVE"); |
cffc1dd98258
8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents:
35061
diff
changeset
|
217 |
log_error(gc, verify)("Actual SATB active states:"); |
cffc1dd98258
8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents:
35061
diff
changeset
|
218 |
log_error(gc, verify)(" Queue set: %s", is_active() ? "ACTIVE" : "INACTIVE"); |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
219 |
for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) { |
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
220 |
log_error(gc, verify)(" Thread \"%s\" queue: %s", t->name(), G1ThreadLocalData::satb_mark_queue(t).is_active() ? "ACTIVE" : "INACTIVE"); |
22497 | 221 |
} |
36090
cffc1dd98258
8149541: Use log_error() instead of log_info() when verification reports a problem
brutisso
parents:
35061
diff
changeset
|
222 |
log_error(gc, verify)(" Shared queue: %s", shared_satb_queue()->is_active() ? "ACTIVE" : "INACTIVE"); |
22497 | 223 |
} |
224 |
||
225 |
void SATBMarkQueueSet::verify_active_states(bool expected_active) { |
|
226 |
// Verify queue set state |
|
227 |
if (is_active() != expected_active) { |
|
228 |
dump_active_states(expected_active); |
|
229 |
guarantee(false, "SATB queue set has an unexpected active state"); |
|
230 |
} |
|
231 |
||
232 |
// Verify thread queue states |
|
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
233 |
for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) { |
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
234 |
if (G1ThreadLocalData::satb_mark_queue(t).is_active() != expected_active) { |
22497 | 235 |
dump_active_states(expected_active); |
236 |
guarantee(false, "Thread SATB queue has an unexpected active state"); |
|
237 |
} |
|
238 |
} |
|
239 |
||
240 |
// Verify shared queue state |
|
241 |
if (shared_satb_queue()->is_active() != expected_active) { |
|
242 |
dump_active_states(expected_active); |
|
243 |
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
|
244 |
} |
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
245 |
} |
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
246 |
#endif // ASSERT |
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
247 |
|
22497 | 248 |
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
|
249 |
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
|
250 |
#ifdef ASSERT |
22497 | 251 |
verify_active_states(expected_active); |
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
4481
diff
changeset
|
252 |
#endif // ASSERT |
22497 | 253 |
_all_active = active; |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
254 |
for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) { |
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
255 |
G1ThreadLocalData::satb_mark_queue(t).set_active(active); |
1374 | 256 |
} |
22497 | 257 |
shared_satb_queue()->set_active(active); |
1374 | 258 |
} |
259 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
260 |
void SATBMarkQueueSet::filter_thread_buffers() { |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
261 |
for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) { |
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
262 |
G1ThreadLocalData::satb_mark_queue(t).filter(); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
263 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
264 |
shared_satb_queue()->filter(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
265 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
266 |
|
30577
de9fa7ccc1bc
8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents:
30279
diff
changeset
|
267 |
bool SATBMarkQueueSet::apply_closure_to_completed_buffer(SATBBufferClosure* cl) { |
4481 | 268 |
BufferNode* nd = NULL; |
1374 | 269 |
{ |
270 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
271 |
if (_completed_buffers_head != NULL) { |
|
272 |
nd = _completed_buffers_head; |
|
4481 | 273 |
_completed_buffers_head = nd->next(); |
1374 | 274 |
if (_completed_buffers_head == NULL) _completed_buffers_tail = NULL; |
275 |
_n_completed_buffers--; |
|
276 |
if (_n_completed_buffers == 0) _process_completed = false; |
|
277 |
} |
|
278 |
} |
|
279 |
if (nd != NULL) { |
|
4481 | 280 |
void **buf = BufferNode::make_buffer_from_node(nd); |
46443 | 281 |
size_t index = nd->index(); |
282 |
size_t size = buffer_size(); |
|
37065 | 283 |
assert(index <= size, "invariant"); |
284 |
cl->do_buffer(buf + index, size - index); |
|
285 |
deallocate_buffer(nd); |
|
1374 | 286 |
return true; |
287 |
} else { |
|
288 |
return false; |
|
289 |
} |
|
290 |
} |
|
291 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
292 |
#ifndef PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
293 |
// Helpful for debugging |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
294 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
295 |
#define SATB_PRINTER_BUFFER_SIZE 256 |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
296 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
297 |
void SATBMarkQueueSet::print_all(const char* msg) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
298 |
char buffer[SATB_PRINTER_BUFFER_SIZE]; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
299 |
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
|
300 |
|
35061 | 301 |
tty->cr(); |
302 |
tty->print_cr("SATB BUFFERS [%s]", msg); |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
303 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
304 |
BufferNode* nd = _completed_buffers_head; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
305 |
int i = 0; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
306 |
while (nd != NULL) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
307 |
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
|
308 |
jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Enqueued: %d", i); |
46443 | 309 |
print_satb_buffer(buffer, buf, nd->index(), buffer_size()); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
310 |
nd = nd->next(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
311 |
i += 1; |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
312 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
313 |
|
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
314 |
for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) { |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
315 |
jio_snprintf(buffer, SATB_PRINTER_BUFFER_SIZE, "Thread: %s", t->name()); |
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
316 |
G1ThreadLocalData::satb_mark_queue(t).print(buffer); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
317 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
318 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
319 |
shared_satb_queue()->print("Shared"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
320 |
|
35061 | 321 |
tty->cr(); |
11455
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 |
#endif // PRODUCT |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
10670
diff
changeset
|
324 |
|
1374 | 325 |
void SATBMarkQueueSet::abandon_partial_marking() { |
4481 | 326 |
BufferNode* buffers_to_delete = NULL; |
1374 | 327 |
{ |
328 |
MutexLockerEx x(_cbl_mon, Mutex::_no_safepoint_check_flag); |
|
329 |
while (_completed_buffers_head != NULL) { |
|
4481 | 330 |
BufferNode* nd = _completed_buffers_head; |
331 |
_completed_buffers_head = nd->next(); |
|
332 |
nd->set_next(buffers_to_delete); |
|
1374 | 333 |
buffers_to_delete = nd; |
334 |
} |
|
335 |
_completed_buffers_tail = NULL; |
|
336 |
_n_completed_buffers = 0; |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
337 |
DEBUG_ONLY(assert_completed_buffer_list_len_correct_locked()); |
1374 | 338 |
} |
339 |
while (buffers_to_delete != NULL) { |
|
4481 | 340 |
BufferNode* nd = buffers_to_delete; |
341 |
buffers_to_delete = nd->next(); |
|
37065 | 342 |
deallocate_buffer(nd); |
1374 | 343 |
} |
344 |
assert(SafepointSynchronize::is_at_safepoint(), "Must be at safepoint."); |
|
345 |
// So we can safely manipulate these queues. |
|
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
346 |
for (JavaThreadIteratorWithHandle jtiwh; JavaThread *t = jtiwh.next(); ) { |
49752
93d84f667d12
8201318: Introduce GCThreadLocalData to abstract GC-specific data belonging to a thread
pliden
parents:
49719
diff
changeset
|
347 |
G1ThreadLocalData::satb_mark_queue(t).reset(); |
1374 | 348 |
} |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47765
diff
changeset
|
349 |
shared_satb_queue()->reset(); |
1374 | 350 |
} |