author | ihse |
Tue, 13 Feb 2018 10:37:33 +0100 | |
branch | ihse-remove-mapfiles-branch |
changeset 56106 | 40e61db323c2 |
parent 48102 | 08be4c1e540e |
child 48961 | 120b61d50f85 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
42598
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. |
1374 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5082
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5082
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5082
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
30764 | 26 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35061
diff
changeset
|
27 |
#include "gc/g1/g1SATBCardTableModRefBS.inline.hpp" |
30764 | 28 |
#include "gc/g1/heapRegion.hpp" |
33792 | 29 |
#include "gc/g1/satbMarkQueue.hpp" |
32598
70b490faa49f
8131330: G1CollectedHeap::verify_dirty_young_list fails with assert
kbarrett
parents:
30764
diff
changeset
|
30 |
#include "gc/shared/memset_with_concurrent_readers.hpp" |
35061 | 31 |
#include "logging/log.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28830
diff
changeset
|
32 |
#include "oops/oop.inline.hpp" |
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
35862
diff
changeset
|
33 |
#include "runtime/atomic.hpp" |
7397 | 34 |
#include "runtime/mutexLocker.hpp" |
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22859
diff
changeset
|
35 |
#include "runtime/orderAccess.inline.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
10565
diff
changeset
|
36 |
#include "runtime/thread.inline.hpp" |
1374 | 37 |
|
29325 | 38 |
G1SATBCardTableModRefBS::G1SATBCardTableModRefBS( |
39 |
MemRegion whole_heap, |
|
40 |
const BarrierSet::FakeRtti& fake_rtti) : |
|
41 |
CardTableModRefBS(whole_heap, fake_rtti.add_tag(BarrierSet::G1SATBCT)) |
|
42 |
{ } |
|
1374 | 43 |
|
44 |
void G1SATBCardTableModRefBS::enqueue(oop pre_val) { |
|
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
7397
diff
changeset
|
45 |
// Nulls should have been already filtered. |
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
42598
diff
changeset
|
46 |
assert(oopDesc::is_oop(pre_val, true), "Error"); |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
7397
diff
changeset
|
47 |
|
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
3262
diff
changeset
|
48 |
if (!JavaThread::satb_mark_queue_set().is_active()) return; |
1374 | 49 |
Thread* thr = Thread::current(); |
50 |
if (thr->is_Java_thread()) { |
|
51 |
JavaThread* jt = (JavaThread*)thr; |
|
52 |
jt->satb_mark_queue().enqueue(pre_val); |
|
53 |
} else { |
|
18495
65a0d2ae4b22
8014022: G1: Non Java threads should lock the shared SATB queue lock without safepoint checks.
brutisso
parents:
14583
diff
changeset
|
54 |
MutexLockerEx x(Shared_SATB_Q_lock, Mutex::_no_safepoint_check_flag); |
1374 | 55 |
JavaThread::satb_mark_queue_set().shared_satb_queue()->enqueue(pre_val); |
56 |
} |
|
57 |
} |
|
58 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
59 |
template <class T> void |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
60 |
G1SATBCardTableModRefBS::write_ref_array_pre_work(T* dst, int count) { |
5082
19e725a3d2eb
6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents:
3262
diff
changeset
|
61 |
if (!JavaThread::satb_mark_queue_set().is_active()) return; |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
62 |
T* elem_ptr = dst; |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
63 |
for (int i = 0; i < count; i++, elem_ptr++) { |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
64 |
T heap_oop = oopDesc::load_heap_oop(elem_ptr); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
65 |
if (!oopDesc::is_null(heap_oop)) { |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
66 |
enqueue(oopDesc::decode_heap_oop_not_null(heap_oop)); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1374
diff
changeset
|
67 |
} |
1374 | 68 |
} |
69 |
} |
|
70 |
||
25480
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
71 |
void G1SATBCardTableModRefBS::write_ref_array_pre(oop* dst, int count, bool dest_uninitialized) { |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
72 |
if (!dest_uninitialized) { |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
73 |
write_ref_array_pre_work(dst, count); |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
74 |
} |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
75 |
} |
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47794
diff
changeset
|
76 |
|
25480
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
77 |
void G1SATBCardTableModRefBS::write_ref_array_pre(narrowOop* dst, int count, bool dest_uninitialized) { |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
78 |
if (!dest_uninitialized) { |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
79 |
write_ref_array_pre_work(dst, count); |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
80 |
} |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
81 |
} |
190facf4e732
8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents:
25351
diff
changeset
|
82 |
|
20309 | 83 |
bool G1SATBCardTableModRefBS::mark_card_deferred(size_t card_index) { |
84 |
jbyte val = _byte_map[card_index]; |
|
85 |
// It's already processed |
|
86 |
if ((val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val()) { |
|
87 |
return false; |
|
88 |
} |
|
20403
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
89 |
|
20309 | 90 |
// Cached bit can be installed either on a clean card or on a claimed card. |
91 |
jbyte new_val = val; |
|
92 |
if (val == clean_card_val()) { |
|
93 |
new_val = (jbyte)deferred_card_val(); |
|
94 |
} else { |
|
95 |
if (val & claimed_card_val()) { |
|
96 |
new_val = val | (jbyte)deferred_card_val(); |
|
97 |
} |
|
98 |
} |
|
99 |
if (new_val != val) { |
|
100 |
Atomic::cmpxchg(new_val, &_byte_map[card_index], val); |
|
101 |
} |
|
102 |
return true; |
|
103 |
} |
|
104 |
||
20403
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
105 |
void G1SATBCardTableModRefBS::g1_mark_as_young(const MemRegion& mr) { |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
106 |
jbyte *const first = byte_for(mr.start()); |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
107 |
jbyte *const last = byte_after(mr.last()); |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
108 |
|
32598
70b490faa49f
8131330: G1CollectedHeap::verify_dirty_young_list fails with assert
kbarrett
parents:
30764
diff
changeset
|
109 |
memset_with_concurrent_readers(first, g1_young_gen, last - first); |
20403
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
110 |
} |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
111 |
|
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
112 |
#ifndef PRODUCT |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
113 |
void G1SATBCardTableModRefBS::verify_g1_young_region(MemRegion mr) { |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
114 |
verify_region(mr, g1_young_gen, true); |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
115 |
} |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
116 |
#endif |
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
117 |
|
27149 | 118 |
void G1SATBCardTableLoggingModRefBSChangedListener::on_commit(uint start_idx, size_t num_regions, bool zero_filled) { |
119 |
// Default value for a clean card on the card table is -1. So we cannot take advantage of the zero_filled parameter. |
|
26160 | 120 |
MemRegion mr(G1CollectedHeap::heap()->bottom_addr_for_region(start_idx), num_regions * HeapRegion::GrainWords); |
121 |
_card_table->clear(mr); |
|
122 |
} |
|
123 |
||
1374 | 124 |
G1SATBCardTableLoggingModRefBS:: |
27687
3a6367d7110b
8064721: The card tables only ever need two covering regions
ehelin
parents:
27149
diff
changeset
|
125 |
G1SATBCardTableLoggingModRefBS(MemRegion whole_heap) : |
29325 | 126 |
G1SATBCardTableModRefBS(whole_heap, BarrierSet::FakeRtti(G1SATBCTLogging)), |
26160 | 127 |
_dcqs(JavaThread::dirty_card_queue_set()), |
128 |
_listener() |
|
1374 | 129 |
{ |
26160 | 130 |
_listener.set_card_table(this); |
131 |
} |
|
132 |
||
133 |
void G1SATBCardTableLoggingModRefBS::initialize(G1RegionToSpaceMapper* mapper) { |
|
134 |
mapper->set_mapping_changed_listener(&_listener); |
|
135 |
||
136 |
_byte_map_size = mapper->reserved().byte_size(); |
|
137 |
||
138 |
_guard_index = cards_required(_whole_heap.word_size()) - 1; |
|
139 |
_last_valid_index = _guard_index - 1; |
|
140 |
||
141 |
HeapWord* low_bound = _whole_heap.start(); |
|
142 |
HeapWord* high_bound = _whole_heap.end(); |
|
143 |
||
144 |
_cur_covered_regions = 1; |
|
145 |
_covered[0] = _whole_heap; |
|
146 |
||
147 |
_byte_map = (jbyte*) mapper->reserved().start(); |
|
148 |
byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift); |
|
149 |
assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map"); |
|
150 |
assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map"); |
|
151 |
||
35061 | 152 |
log_trace(gc, barrier)("G1SATBCardTableModRefBS::G1SATBCardTableModRefBS: "); |
153 |
log_trace(gc, barrier)(" &_byte_map[0]: " INTPTR_FORMAT " &_byte_map[_last_valid_index]: " INTPTR_FORMAT, |
|
154 |
p2i(&_byte_map[0]), p2i(&_byte_map[_last_valid_index])); |
|
155 |
log_trace(gc, barrier)(" byte_map_base: " INTPTR_FORMAT, p2i(byte_map_base)); |
|
1374 | 156 |
} |
157 |
||
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47794
diff
changeset
|
158 |
void G1SATBCardTableLoggingModRefBS::write_ref_field_post_slow(volatile jbyte* byte) { |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47794
diff
changeset
|
159 |
// In the slow path, we know a card is not young |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47794
diff
changeset
|
160 |
assert(*byte != g1_young_gen, "slow path invoked without filtering"); |
20403
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
161 |
OrderAccess::storeload(); |
1374 | 162 |
if (*byte != dirty_card) { |
163 |
*byte = dirty_card; |
|
164 |
Thread* thr = Thread::current(); |
|
165 |
if (thr->is_Java_thread()) { |
|
166 |
JavaThread* jt = (JavaThread*)thr; |
|
167 |
jt->dirty_card_queue().enqueue(byte); |
|
168 |
} else { |
|
169 |
MutexLockerEx x(Shared_DirtyCardQ_lock, |
|
170 |
Mutex::_no_safepoint_check_flag); |
|
171 |
_dcqs.shared_dirty_card_queue()->enqueue(byte); |
|
172 |
} |
|
173 |
} |
|
174 |
} |
|
175 |
||
176 |
void |
|
42598
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
177 |
G1SATBCardTableLoggingModRefBS::invalidate(MemRegion mr) { |
48102
08be4c1e540e
8182050: assert(_whole_heap.contains(p)) failed: Attempt to access p out of bounds of card marking array's _whole_heap
tschatzl
parents:
47998
diff
changeset
|
178 |
if (mr.is_empty()) { |
08be4c1e540e
8182050: assert(_whole_heap.contains(p)) failed: Attempt to access p out of bounds of card marking array's _whole_heap
tschatzl
parents:
47998
diff
changeset
|
179 |
return; |
08be4c1e540e
8182050: assert(_whole_heap.contains(p)) failed: Attempt to access p out of bounds of card marking array's _whole_heap
tschatzl
parents:
47998
diff
changeset
|
180 |
} |
20403
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
181 |
volatile jbyte* byte = byte_for(mr.start()); |
1374 | 182 |
jbyte* last_byte = byte_for(mr.last()); |
183 |
Thread* thr = Thread::current(); |
|
20403
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
184 |
// skip all consecutive young cards |
42598
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
185 |
for (; byte <= last_byte && *byte == g1_young_gen; byte++); |
20403
45a89fbcd8f7
8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents:
20309
diff
changeset
|
186 |
|
42598
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
187 |
if (byte <= last_byte) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
188 |
OrderAccess::storeload(); |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
189 |
// Enqueue if necessary. |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
190 |
if (thr->is_Java_thread()) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
191 |
JavaThread* jt = (JavaThread*)thr; |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
192 |
for (; byte <= last_byte; byte++) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
193 |
if (*byte == g1_young_gen) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
194 |
continue; |
1374 | 195 |
} |
42598
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
196 |
if (*byte != dirty_card) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
197 |
*byte = dirty_card; |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
198 |
jt->dirty_card_queue().enqueue(byte); |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
199 |
} |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
200 |
} |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
201 |
} else { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
202 |
MutexLockerEx x(Shared_DirtyCardQ_lock, |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
203 |
Mutex::_no_safepoint_check_flag); |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
204 |
for (; byte <= last_byte; byte++) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
205 |
if (*byte == g1_young_gen) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
206 |
continue; |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
207 |
} |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
208 |
if (*byte != dirty_card) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
209 |
*byte = dirty_card; |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
40655
diff
changeset
|
210 |
_dcqs.shared_dirty_card_queue()->enqueue(byte); |
1374 | 211 |
} |
212 |
} |
|
213 |
} |
|
214 |
} |
|
215 |
} |