annotate src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.cpp @ 20445:e5668dcf12e9

8057818: collect allocation context statistics at gc pauses Reviewed-by: mikael, jmasa
author jcoomes
date Wed, 10 Sep 2014 13:01:13 -0700
parents 1f1d373cd044
children e7d0505c8a30
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
1 /*
12316
190899198332 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 11068
diff changeset
2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
4 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
7 * published by the Free Software Foundation.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
8 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
13 * accompanied this code).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
14 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1317
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1317
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1317
diff changeset
21 * questions.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
22 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
23 */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
26 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "gc_implementation/g1/heapRegion.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "gc_implementation/g1/satbQueue.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/mutexLocker.hpp"
20197
ce8f6bb717c9 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 17951
diff changeset
31 #include "runtime/orderAccess.inline.hpp"
7180
f34d701e952e 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 3960
diff changeset
32 #include "runtime/thread.inline.hpp"
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
33
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
34 G1SATBCardTableModRefBS::G1SATBCardTableModRefBS(MemRegion whole_heap,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
35 int max_covered_regions) :
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
36 CardTableModRefBSForCTRS(whole_heap, max_covered_regions)
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
37 {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
38 _kind = G1SATBCT;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
39 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
40
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
41 void G1SATBCardTableModRefBS::enqueue(oop pre_val) {
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 1972
diff changeset
42 // Nulls should have been already filtered.
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 1972
diff changeset
43 assert(pre_val->is_oop(true), "Error");
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 1972
diff changeset
44
1317
d4197f8d516a 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 845
diff changeset
45 if (!JavaThread::satb_mark_queue_set().is_active()) return;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
46 Thread* thr = Thread::current();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
47 if (thr->is_Java_thread()) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
48 JavaThread* jt = (JavaThread*)thr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
49 jt->satb_mark_queue().enqueue(pre_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
50 } else {
11068
b30744960351 8014022: G1: Non Java threads should lock the shared SATB queue lock without safepoint checks.
brutisso
parents: 7180
diff changeset
51 MutexLockerEx x(Shared_SATB_Q_lock, Mutex::_no_safepoint_check_flag);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
52 JavaThread::satb_mark_queue_set().shared_satb_queue()->enqueue(pre_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
53 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
54 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
55
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
56 template <class T> void
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
57 G1SATBCardTableModRefBS::write_ref_array_pre_work(T* dst, int count) {
1317
d4197f8d516a 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 845
diff changeset
58 if (!JavaThread::satb_mark_queue_set().is_active()) return;
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
59 T* elem_ptr = dst;
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
60 for (int i = 0; i < count; i++, elem_ptr++) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
61 T heap_oop = oopDesc::load_heap_oop(elem_ptr);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
62 if (!oopDesc::is_null(heap_oop)) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
63 enqueue(oopDesc::decode_heap_oop_not_null(heap_oop));
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
64 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
65 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
66 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
67
20275
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
68 void G1SATBCardTableModRefBS::write_ref_array_pre(oop* dst, int count, bool dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
69 if (!dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
70 write_ref_array_pre_work(dst, count);
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
71 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
72 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
73 void G1SATBCardTableModRefBS::write_ref_array_pre(narrowOop* dst, int count, bool dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
74 if (!dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
75 write_ref_array_pre_work(dst, count);
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
76 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
77 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
78
12343
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
79 bool G1SATBCardTableModRefBS::mark_card_deferred(size_t card_index) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
80 jbyte val = _byte_map[card_index];
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
81 // It's already processed
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
82 if ((val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val()) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
83 return false;
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
84 }
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
85
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
86 if (val == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
87 // the card is for a young gen region. We don't need to keep track of all pointers into young
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
88 return false;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
89 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
90
12343
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
91 // Cached bit can be installed either on a clean card or on a claimed card.
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
92 jbyte new_val = val;
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
93 if (val == clean_card_val()) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
94 new_val = (jbyte)deferred_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
95 } else {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
96 if (val & claimed_card_val()) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
97 new_val = val | (jbyte)deferred_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
98 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
99 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
100 if (new_val != val) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
101 Atomic::cmpxchg(new_val, &_byte_map[card_index], val);
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
102 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
103 return true;
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
104 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
105
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
106 void G1SATBCardTableModRefBS::g1_mark_as_young(const MemRegion& mr) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
107 jbyte *const first = byte_for(mr.start());
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
108 jbyte *const last = byte_after(mr.last());
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
109
17951
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
110 // Below we may use an explicit loop instead of memset() because on
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
111 // certain platforms memset() can give concurrent readers phantom zeros.
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
112 if (UseMemSetInBOT) {
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
113 memset(first, g1_young_gen, last - first);
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
114 } else {
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
115 for (jbyte* i = first; i < last; i++) {
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
116 *i = g1_young_gen;
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
117 }
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
118 }
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
119 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
120
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
121 #ifndef PRODUCT
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
122 void G1SATBCardTableModRefBS::verify_g1_young_region(MemRegion mr) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
123 verify_region(mr, g1_young_gen, true);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
124 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
125 #endif
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
126
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
127 void G1SATBCardTableLoggingModRefBSChangedListener::on_commit(uint start_idx, size_t num_regions) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
128 MemRegion mr(G1CollectedHeap::heap()->bottom_addr_for_region(start_idx), num_regions * HeapRegion::GrainWords);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
129 _card_table->clear(mr);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
130 }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
131
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
132 G1SATBCardTableLoggingModRefBS::
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
133 G1SATBCardTableLoggingModRefBS(MemRegion whole_heap,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
134 int max_covered_regions) :
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
135 G1SATBCardTableModRefBS(whole_heap, max_covered_regions),
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
136 _dcqs(JavaThread::dirty_card_queue_set()),
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
137 _listener()
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
138 {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
139 _kind = G1SATBCTLogging;
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
140 _listener.set_card_table(this);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
141 }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
142
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
143 void G1SATBCardTableLoggingModRefBS::initialize(G1RegionToSpaceMapper* mapper) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
144 mapper->set_mapping_changed_listener(&_listener);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
145
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
146 _byte_map_size = mapper->reserved().byte_size();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
147
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
148 _guard_index = cards_required(_whole_heap.word_size()) - 1;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
149 _last_valid_index = _guard_index - 1;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
150
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
151 HeapWord* low_bound = _whole_heap.start();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
152 HeapWord* high_bound = _whole_heap.end();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
153
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
154 _cur_covered_regions = 1;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
155 _covered[0] = _whole_heap;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
156
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
157 _byte_map = (jbyte*) mapper->reserved().start();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
158 byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
159 assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
160 assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
161
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
162 if (TraceCardTableModRefBS) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
163 gclog_or_tty->print_cr("G1SATBCardTableModRefBS::G1SATBCardTableModRefBS: ");
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
164 gclog_or_tty->print_cr(" "
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
165 " &_byte_map[0]: " INTPTR_FORMAT
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
166 " &_byte_map[_last_valid_index]: " INTPTR_FORMAT,
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
167 p2i(&_byte_map[0]),
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
168 p2i(&_byte_map[_last_valid_index]));
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
169 gclog_or_tty->print_cr(" "
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
170 " byte_map_base: " INTPTR_FORMAT,
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
171 p2i(byte_map_base));
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
172 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
173 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
174
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
175 void
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
176 G1SATBCardTableLoggingModRefBS::write_ref_field_work(void* field,
14443
3205e78d8193 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 12840
diff changeset
177 oop new_val,
3205e78d8193 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 12840
diff changeset
178 bool release) {
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
179 volatile jbyte* byte = byte_for(field);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
180 if (*byte == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
181 return;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
182 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
183 OrderAccess::storeload();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
184 if (*byte != dirty_card) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
185 *byte = dirty_card;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
186 Thread* thr = Thread::current();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
187 if (thr->is_Java_thread()) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
188 JavaThread* jt = (JavaThread*)thr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
189 jt->dirty_card_queue().enqueue(byte);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
190 } else {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
191 MutexLockerEx x(Shared_DirtyCardQ_lock,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
192 Mutex::_no_safepoint_check_flag);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
193 _dcqs.shared_dirty_card_queue()->enqueue(byte);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
194 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
195 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
196 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
197
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
198 void
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
199 G1SATBCardTableLoggingModRefBS::write_ref_field_static(void* field,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
200 oop new_val) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
201 uintptr_t field_uint = (uintptr_t)field;
12316
190899198332 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 11068
diff changeset
202 uintptr_t new_val_uint = cast_from_oop<uintptr_t>(new_val);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
203 uintptr_t comb = field_uint ^ new_val_uint;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
204 comb = comb >> HeapRegion::LogOfHRGrainBytes;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
205 if (comb == 0) return;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
206 if (new_val == NULL) return;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
207 // Otherwise, log it.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
208 G1SATBCardTableLoggingModRefBS* g1_bs =
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
209 (G1SATBCardTableLoggingModRefBS*)Universe::heap()->barrier_set();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
210 g1_bs->write_ref_field_work(field, new_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
211 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
212
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
213 void
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
214 G1SATBCardTableLoggingModRefBS::invalidate(MemRegion mr, bool whole_heap) {
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
215 volatile jbyte* byte = byte_for(mr.start());
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
216 jbyte* last_byte = byte_for(mr.last());
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
217 Thread* thr = Thread::current();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
218 if (whole_heap) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
219 while (byte <= last_byte) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
220 *byte = dirty_card;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
221 byte++;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
222 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
223 } else {
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
224 // skip all consecutive young cards
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
225 for (; byte <= last_byte && *byte == g1_young_gen; byte++);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
226
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
227 if (byte <= last_byte) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
228 OrderAccess::storeload();
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
229 // Enqueue if necessary.
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
230 if (thr->is_Java_thread()) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
231 JavaThread* jt = (JavaThread*)thr;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
232 for (; byte <= last_byte; byte++) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
233 if (*byte == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
234 continue;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
235 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
236 if (*byte != dirty_card) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
237 *byte = dirty_card;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
238 jt->dirty_card_queue().enqueue(byte);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
239 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
240 }
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
241 } else {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
242 MutexLockerEx x(Shared_DirtyCardQ_lock,
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
243 Mutex::_no_safepoint_check_flag);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
244 for (; byte <= last_byte; byte++) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
245 if (*byte == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
246 continue;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
247 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
248 if (*byte != dirty_card) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
249 *byte = dirty_card;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
250 _dcqs.shared_dirty_card_queue()->enqueue(byte);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
251 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
252 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
253 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
254 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
255 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
256 }