annotate src/share/vm/memory/cardTableModRefBS.cpp @ 3317:063382f9b575

7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...) Summary: We should only undirty cards after we decide that they are not on a young region, not before. The fix also includes improvements to the verify_dirty_region() method which print out which cards were not found dirty. Reviewed-by: johnc, brutisso
author tonyp
date Fri, 29 Apr 2011 14:59:04 -0400
parents c48ad6ab8bdf
children fc2b798ab316
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
3256
c69b1043dfb1 7036482: clear argument is redundant and unused in cardtable methods
ysr
parents: 1972
diff changeset
2 * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1091
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1091
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: 1091
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
26 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
27 #include "memory/cardTableModRefBS.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
28 #include "memory/cardTableRS.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
29 #include "memory/sharedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
30 #include "memory/space.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
31 #include "memory/space.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
32 #include "memory/universe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
33 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
34 #include "runtime/mutexLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
35 #include "runtime/virtualspace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
36 #ifdef COMPILER1
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
37 #include "c1/c1_LIR.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
38 #include "c1/c1_LIRGenerator.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
39 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1612
diff changeset
40
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // This kind of "BarrierSet" allows a "CollectedHeap" to detect and
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // enumerate ref fields that have been modified (since the last
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // enumeration.)
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 size_t CardTableModRefBS::cards_required(size_t covered_words)
a61af66fc99e Initial load
duke
parents:
diff changeset
46 {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Add one for a guard card, used to detect errors.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 const size_t words = align_size_up(covered_words, card_size_in_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 return words / card_size_in_words + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 size_t CardTableModRefBS::compute_byte_map_size()
a61af66fc99e Initial load
duke
parents:
diff changeset
53 {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 assert(_guard_index == cards_required(_whole_heap.word_size()) - 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
55 "unitialized, check declaration order");
a61af66fc99e Initial load
duke
parents:
diff changeset
56 assert(_page_size != 0, "unitialized, check declaration order");
a61af66fc99e Initial load
duke
parents:
diff changeset
57 const size_t granularity = os::vm_allocation_granularity();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 return align_size_up(_guard_index + 1, MAX2(_page_size, granularity));
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 CardTableModRefBS::CardTableModRefBS(MemRegion whole_heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int max_covered_regions):
a61af66fc99e Initial load
duke
parents:
diff changeset
63 ModRefBarrierSet(max_covered_regions),
a61af66fc99e Initial load
duke
parents:
diff changeset
64 _whole_heap(whole_heap),
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _guard_index(cards_required(whole_heap.word_size()) - 1),
a61af66fc99e Initial load
duke
parents:
diff changeset
66 _last_valid_index(_guard_index - 1),
21
b611e572fc5b 6635560: segv in reference processor on t1000
jcoomes
parents: 0
diff changeset
67 _page_size(os::vm_page_size()),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _byte_map_size(compute_byte_map_size())
a61af66fc99e Initial load
duke
parents:
diff changeset
69 {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 _kind = BarrierSet::CardTableModRef;
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 HeapWord* low_bound = _whole_heap.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
73 HeapWord* high_bound = _whole_heap.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
74 assert((uintptr_t(low_bound) & (card_size - 1)) == 0, "heap must start at card boundary");
a61af66fc99e Initial load
duke
parents:
diff changeset
75 assert((uintptr_t(high_bound) & (card_size - 1)) == 0, "heap must end at card boundary");
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 assert(card_size <= 512, "card_size must be less than 512"); // why?
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 _covered = new MemRegion[max_covered_regions];
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _committed = new MemRegion[max_covered_regions];
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (_covered == NULL || _committed == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
82 vm_exit_during_initialization("couldn't alloc card table covered region set.");
a61af66fc99e Initial load
duke
parents:
diff changeset
83 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 for (i = 0; i < max_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 _covered[i].set_word_size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 _committed[i].set_word_size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 _cur_covered_regions = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 const size_t rs_align = _page_size == (size_t) os::vm_page_size() ? 0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
91 MAX2(_page_size, (size_t) os::vm_allocation_granularity());
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ReservedSpace heap_rs(_byte_map_size, rs_align, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 os::trace_page_sizes("card table", _guard_index + 1, _guard_index + 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _page_size, heap_rs.base(), heap_rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
95 if (!heap_rs.is_reserved()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 vm_exit_during_initialization("Could not reserve enough space for the "
a61af66fc99e Initial load
duke
parents:
diff changeset
97 "card marking array");
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // The assember store_check code will do an unsigned shift of the oop,
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // then add it to byte_map_base, i.e.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 //
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // _byte_map = byte_map_base + (uintptr_t(low_bound) >> card_shift)
a61af66fc99e Initial load
duke
parents:
diff changeset
104 _byte_map = (jbyte*) heap_rs.base();
a61af66fc99e Initial load
duke
parents:
diff changeset
105 byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
a61af66fc99e Initial load
duke
parents:
diff changeset
107 assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 jbyte* guard_card = &_byte_map[_guard_index];
a61af66fc99e Initial load
duke
parents:
diff changeset
110 uintptr_t guard_page = align_size_down((uintptr_t)guard_card, _page_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 _guard_region = MemRegion((HeapWord*)guard_page, _page_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 if (!os::commit_memory((char*)guard_page, _page_size, _page_size)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Do better than this for Merlin
a61af66fc99e Initial load
duke
parents:
diff changeset
114 vm_exit_out_of_memory(_page_size, "card table last card");
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 *guard_card = last_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 _lowest_non_clean =
a61af66fc99e Initial load
duke
parents:
diff changeset
119 NEW_C_HEAP_ARRAY(CardArr, max_covered_regions);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _lowest_non_clean_chunk_size =
a61af66fc99e Initial load
duke
parents:
diff changeset
121 NEW_C_HEAP_ARRAY(size_t, max_covered_regions);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 _lowest_non_clean_base_chunk_index =
a61af66fc99e Initial load
duke
parents:
diff changeset
123 NEW_C_HEAP_ARRAY(uintptr_t, max_covered_regions);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 _last_LNC_resizing_collection =
a61af66fc99e Initial load
duke
parents:
diff changeset
125 NEW_C_HEAP_ARRAY(int, max_covered_regions);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 if (_lowest_non_clean == NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
127 || _lowest_non_clean_chunk_size == NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
128 || _lowest_non_clean_base_chunk_index == NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
129 || _last_LNC_resizing_collection == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
130 vm_exit_during_initialization("couldn't allocate an LNC array.");
a61af66fc99e Initial load
duke
parents:
diff changeset
131 for (i = 0; i < max_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 _lowest_non_clean[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 _lowest_non_clean_chunk_size[i] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 _last_LNC_resizing_collection[i] = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 if (TraceCardTableModRefBS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 gclog_or_tty->print_cr("CardTableModRefBS::CardTableModRefBS: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
139 gclog_or_tty->print_cr(" "
a61af66fc99e Initial load
duke
parents:
diff changeset
140 " &_byte_map[0]: " INTPTR_FORMAT
a61af66fc99e Initial load
duke
parents:
diff changeset
141 " &_byte_map[_last_valid_index]: " INTPTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
142 &_byte_map[0],
a61af66fc99e Initial load
duke
parents:
diff changeset
143 &_byte_map[_last_valid_index]);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 gclog_or_tty->print_cr(" "
a61af66fc99e Initial load
duke
parents:
diff changeset
145 " byte_map_base: " INTPTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
146 byte_map_base);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 int CardTableModRefBS::find_covering_region_by_base(HeapWord* base) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 for (i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 if (_covered[i].start() == base) return i;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 if (_covered[i].start() > base) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // If we didn't find it, create a new one.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 assert(_cur_covered_regions < _max_covered_regions,
a61af66fc99e Initial load
duke
parents:
diff changeset
158 "too many covered regions");
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // Move the ones above up, to maintain sorted order.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 for (int j = _cur_covered_regions; j > i; j--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 _covered[j] = _covered[j-1];
a61af66fc99e Initial load
duke
parents:
diff changeset
162 _committed[j] = _committed[j-1];
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 int res = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 _cur_covered_regions++;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 _covered[res].set_start(base);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 _covered[res].set_word_size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 jbyte* ct_start = byte_for(base);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 uintptr_t ct_start_aligned = align_size_down((uintptr_t)ct_start, _page_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 _committed[res].set_start((HeapWord*)ct_start_aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _committed[res].set_word_size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 int CardTableModRefBS::find_covering_region_containing(HeapWord* addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 for (int i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (_covered[i].contains(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 return i;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 assert(0, "address outside of heap?");
a61af66fc99e Initial load
duke
parents:
diff changeset
182 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 HeapWord* CardTableModRefBS::largest_prev_committed_end(int ind) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 HeapWord* max_end = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 for (int j = 0; j < ind; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 HeapWord* this_end = _committed[j].end();
a61af66fc99e Initial load
duke
parents:
diff changeset
189 if (this_end > max_end) max_end = this_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return max_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 MemRegion CardTableModRefBS::committed_unique_to_self(int self,
a61af66fc99e Initial load
duke
parents:
diff changeset
195 MemRegion mr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 MemRegion result = mr;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 for (int r = 0; r < _cur_covered_regions; r += 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (r != self) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 result = result.minus(_committed[r]);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // Never include the guard page.
a61af66fc99e Initial load
duke
parents:
diff changeset
203 result = result.minus(_guard_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void CardTableModRefBS::resize_covered_region(MemRegion new_region) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // We don't change the start of a region, only the end.
a61af66fc99e Initial load
duke
parents:
diff changeset
209 assert(_whole_heap.contains(new_region),
a61af66fc99e Initial load
duke
parents:
diff changeset
210 "attempt to cover area not in reserved area");
a61af66fc99e Initial load
duke
parents:
diff changeset
211 debug_only(verify_guard();)
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
212 // collided is true if the expansion would push into another committed region
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
213 debug_only(bool collided = false;)
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
214 int const ind = find_covering_region_by_base(new_region.start());
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
215 MemRegion const old_region = _covered[ind];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 assert(old_region.start() == new_region.start(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
217 if (new_region.word_size() != old_region.word_size()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // Commit new or uncommit old pages, if necessary.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 MemRegion cur_committed = _committed[ind];
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // Extend the end of this _commited region
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // to cover the end of any lower _committed regions.
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // This forms overlapping regions, but never interior regions.
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
223 HeapWord* const max_prev_end = largest_prev_committed_end(ind);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 if (max_prev_end > cur_committed.end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 cur_committed.set_end(max_prev_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // Align the end up to a page size (starts are already aligned).
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
228 jbyte* const new_end = byte_after(new_region.last());
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
229 HeapWord* new_end_aligned =
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
230 (HeapWord*) align_size_up((uintptr_t)new_end, _page_size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
231 assert(new_end_aligned >= (HeapWord*) new_end,
a61af66fc99e Initial load
duke
parents:
diff changeset
232 "align up, but less");
581
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
233 // Check the other regions (excludes "ind") to ensure that
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
234 // the new_end_aligned does not intrude onto the committed
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
235 // space of another region.
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
236 int ri = 0;
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
237 for (ri = 0; ri < _cur_covered_regions; ri++) {
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
238 if (ri != ind) {
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
239 if (_committed[ri].contains(new_end_aligned)) {
581
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
240 // The prior check included in the assert
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
241 // (new_end_aligned >= _committed[ri].start())
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
242 // is redundant with the "contains" test.
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
243 // Any region containing the new end
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
244 // should start at or beyond the region found (ind)
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
245 // for the new end (committed regions are not expected to
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
246 // be proper subsets of other committed regions).
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
247 assert(_committed[ri].start() >= _committed[ind].start(),
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
248 "New end of committed region is inconsistent");
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
249 new_end_aligned = _committed[ri].start();
581
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
250 // new_end_aligned can be equal to the start of its
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
251 // committed region (i.e., of "ind") if a second
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
252 // region following "ind" also start at the same location
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
253 // as "ind".
9e5a6ed08fc9 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 489
diff changeset
254 assert(new_end_aligned >= _committed[ind].start(),
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
255 "New end of committed region is before start");
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
256 debug_only(collided = true;)
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
257 // Should only collide with 1 region
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
258 break;
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
259 }
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
260 }
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
261 }
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
262 #ifdef ASSERT
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
263 for (++ri; ri < _cur_covered_regions; ri++) {
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
264 assert(!_committed[ri].contains(new_end_aligned),
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
265 "New end of committed region is in a second committed region");
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
266 }
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
267 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // The guard page is always committed and should not be committed over.
887
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
269 // "guarded" is used for assertion checking below and recalls the fact
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
270 // that the would-be end of the new committed region would have
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
271 // penetrated the guard page.
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
272 HeapWord* new_end_for_commit = new_end_aligned;
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
273
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
274 DEBUG_ONLY(bool guarded = false;)
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
275 if (new_end_for_commit > _guard_region.start()) {
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
276 new_end_for_commit = _guard_region.start();
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
277 DEBUG_ONLY(guarded = true;)
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
278 }
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
279
0
a61af66fc99e Initial load
duke
parents:
diff changeset
280 if (new_end_for_commit > cur_committed.end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // Must commit new pages.
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
282 MemRegion const new_committed =
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 MemRegion(cur_committed.end(), new_end_for_commit);
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 assert(!new_committed.is_empty(), "Region should not be empty here");
a61af66fc99e Initial load
duke
parents:
diff changeset
286 if (!os::commit_memory((char*)new_committed.start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
287 new_committed.byte_size(), _page_size)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Do better than this for Merlin
a61af66fc99e Initial load
duke
parents:
diff changeset
289 vm_exit_out_of_memory(new_committed.byte_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
290 "card table expansion");
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // Use new_end_aligned (as opposed to new_end_for_commit) because
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // the cur_committed region may include the guard region.
a61af66fc99e Initial load
duke
parents:
diff changeset
294 } else if (new_end_aligned < cur_committed.end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // Must uncommit pages.
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
296 MemRegion const uncommit_region =
0
a61af66fc99e Initial load
duke
parents:
diff changeset
297 committed_unique_to_self(ind, MemRegion(new_end_aligned,
a61af66fc99e Initial load
duke
parents:
diff changeset
298 cur_committed.end()));
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if (!uncommit_region.is_empty()) {
1612
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
300 // It is not safe to uncommit cards if the boundary between
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
301 // the generations is moving. A shrink can uncommit cards
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
302 // owned by generation A but being used by generation B.
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
303 if (!UseAdaptiveGCBoundary) {
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
304 if (!os::uncommit_memory((char*)uncommit_region.start(),
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
305 uncommit_region.byte_size())) {
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
306 assert(false, "Card table contraction failed");
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
307 // The call failed so don't change the end of the
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
308 // committed region. This is better than taking the
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
309 // VM down.
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
310 new_end_aligned = _committed[ind].end();
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
311 }
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
312 } else {
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
313 new_end_aligned = _committed[ind].end();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // In any case, we can reset the end of the current committed entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
318 _committed[ind].set_end(new_end_aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
319
1612
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
320 #ifdef ASSERT
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
321 // Check that the last card in the new region is committed according
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
322 // to the tables.
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
323 bool covered = false;
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
324 for (int cr = 0; cr < _cur_covered_regions; cr++) {
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
325 if (_committed[cr].contains(new_end - 1)) {
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
326 covered = true;
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
327 break;
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
328 }
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
329 }
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
330 assert(covered, "Card for end of new region not committed");
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
331 #endif
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
332
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // The default of 0 is not necessarily clean cards.
a61af66fc99e Initial load
duke
parents:
diff changeset
334 jbyte* entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
335 if (old_region.last() < _whole_heap.start()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
336 entry = byte_for(_whole_heap.start());
a61af66fc99e Initial load
duke
parents:
diff changeset
337 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 entry = byte_after(old_region.last());
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
489
2494ab195856 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 356
diff changeset
340 assert(index_for(new_region.last()) < _guard_index,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
341 "The guard card will be overwritten");
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
342 // This line commented out cleans the newly expanded region and
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
343 // not the aligned up expanded region.
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
344 // jbyte* const end = byte_after(new_region.last());
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
345 jbyte* const end = (jbyte*) new_end_for_commit;
887
ff004bcd2596 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 628
diff changeset
346 assert((end >= byte_after(new_region.last())) || collided || guarded,
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
347 "Expect to be beyond new region unless impacting another region");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // do nothing if we resized downward.
208
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
349 #ifdef ASSERT
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
350 for (int ri = 0; ri < _cur_covered_regions; ri++) {
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
351 if (ri != ind) {
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
352 // The end of the new committed region should not
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
353 // be in any existing region unless it matches
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
354 // the start of the next region.
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
355 assert(!_committed[ri].contains(end) ||
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
356 (_committed[ri].start() == (HeapWord*) end),
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
357 "Overlapping committed regions");
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
358 }
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
359 }
35ca13d63fe8 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 113
diff changeset
360 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
361 if (entry < end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
362 memset(entry, clean_card, pointer_delta(end, entry, sizeof(jbyte)));
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364 }
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // In any case, the covered size changes.
a61af66fc99e Initial load
duke
parents:
diff changeset
366 _covered[ind].set_word_size(new_region.word_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
367 if (TraceCardTableModRefBS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
368 gclog_or_tty->print_cr("CardTableModRefBS::resize_covered_region: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
369 gclog_or_tty->print_cr(" "
a61af66fc99e Initial load
duke
parents:
diff changeset
370 " _covered[%d].start(): " INTPTR_FORMAT
a61af66fc99e Initial load
duke
parents:
diff changeset
371 " _covered[%d].last(): " INTPTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
372 ind, _covered[ind].start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
373 ind, _covered[ind].last());
a61af66fc99e Initial load
duke
parents:
diff changeset
374 gclog_or_tty->print_cr(" "
a61af66fc99e Initial load
duke
parents:
diff changeset
375 " _committed[%d].start(): " INTPTR_FORMAT
a61af66fc99e Initial load
duke
parents:
diff changeset
376 " _committed[%d].last(): " INTPTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
377 ind, _committed[ind].start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
378 ind, _committed[ind].last());
a61af66fc99e Initial load
duke
parents:
diff changeset
379 gclog_or_tty->print_cr(" "
a61af66fc99e Initial load
duke
parents:
diff changeset
380 " byte_for(start): " INTPTR_FORMAT
a61af66fc99e Initial load
duke
parents:
diff changeset
381 " byte_for(last): " INTPTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
382 byte_for(_covered[ind].start()),
a61af66fc99e Initial load
duke
parents:
diff changeset
383 byte_for(_covered[ind].last()));
a61af66fc99e Initial load
duke
parents:
diff changeset
384 gclog_or_tty->print_cr(" "
a61af66fc99e Initial load
duke
parents:
diff changeset
385 " addr_for(start): " INTPTR_FORMAT
a61af66fc99e Initial load
duke
parents:
diff changeset
386 " addr_for(last): " INTPTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
387 addr_for((jbyte*) _committed[ind].start()),
a61af66fc99e Initial load
duke
parents:
diff changeset
388 addr_for((jbyte*) _committed[ind].last()));
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
1612
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
390 // Touch the last card of the covered region to show that it
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
391 // is committed (or SEGV).
fdde661c8e06 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 1552
diff changeset
392 debug_only(*byte_for(_covered[ind].last());)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
393 debug_only(verify_guard();)
a61af66fc99e Initial load
duke
parents:
diff changeset
394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // Note that these versions are precise! The scanning code has to handle the
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // fact that the write barrier may be either precise or imprecise.
a61af66fc99e Initial load
duke
parents:
diff changeset
398
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 46
diff changeset
399 void CardTableModRefBS::write_ref_field_work(void* field, oop newVal) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
400 inline_write_ref_field(field, newVal);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402
616
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
403 /*
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
404 Claimed and deferred bits are used together in G1 during the evacuation
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
405 pause. These bits can have the following state transitions:
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
406 1. The claimed bit can be put over any other card state. Except that
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
407 the "dirty -> dirty and claimed" transition is checked for in
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
408 G1 code and is not used.
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
409 2. Deferred bit can be set only if the previous state of the card
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
410 was either clean or claimed. mark_card_deferred() is wait-free.
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
411 We do not care if the operation is be successful because if
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
412 it does not it will only result in duplicate entry in the update
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
413 buffer because of the "cache-miss". So it's not worth spinning.
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
414 */
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
415
0
a61af66fc99e Initial load
duke
parents:
diff changeset
416
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
417 bool CardTableModRefBS::claim_card(size_t card_index) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
418 jbyte val = _byte_map[card_index];
616
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
419 assert(val != dirty_card_val(), "Shouldn't claim a dirty card");
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
420 while (val == clean_card_val() ||
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
421 (val & (clean_card_mask_val() | claimed_card_val())) != claimed_card_val()) {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
422 jbyte new_val = val;
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
423 if (val == clean_card_val()) {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
424 new_val = (jbyte)claimed_card_val();
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
425 } else {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
426 new_val = val | (jbyte)claimed_card_val();
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
427 }
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
428 jbyte res = Atomic::cmpxchg(new_val, &_byte_map[card_index], val);
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
429 if (res == val) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
430 return true;
616
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
431 }
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
432 val = res;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
433 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
434 return false;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
435 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
436
616
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
437 bool CardTableModRefBS::mark_card_deferred(size_t card_index) {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
438 jbyte val = _byte_map[card_index];
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
439 // It's already processed
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
440 if ((val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val()) {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
441 return false;
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
442 }
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
443 // Cached bit can be installed either on a clean card or on a claimed card.
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
444 jbyte new_val = val;
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
445 if (val == clean_card_val()) {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
446 new_val = (jbyte)deferred_card_val();
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
447 } else {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
448 if (val & claimed_card_val()) {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
449 new_val = val | (jbyte)deferred_card_val();
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
450 }
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
451 }
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
452 if (new_val != val) {
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
453 Atomic::cmpxchg(new_val, &_byte_map[card_index], val);
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
454 }
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
455 return true;
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
456 }
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
457
4f360ec815ba 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 581
diff changeset
458
3287
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
459 void CardTableModRefBS::non_clean_card_iterate_possibly_parallel(Space* sp,
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
460 MemRegion mr,
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
461 DirtyCardToOopClosure* dcto_cl,
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
462 ClearNoncleanCardWrapper* cl) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
463 if (!mr.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 int n_threads = SharedHeap::heap()->n_par_threads();
a61af66fc99e Initial load
duke
parents:
diff changeset
465 if (n_threads > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 #ifndef SERIALGC
3287
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
467 non_clean_card_iterate_parallel_work(sp, mr, dcto_cl, cl, n_threads);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
468 #else // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
469 fatal("Parallel gc not supported here.");
a61af66fc99e Initial load
duke
parents:
diff changeset
470 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
471 } else {
3287
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
472 // We do not call the non_clean_card_iterate_serial() version below because
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
473 // we want to clear the cards (which non_clean_card_iterate_serial() does not
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
474 // do for us), and the ClearNoncleanCardWrapper closure itself does the work
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
475 // of finding contiguous dirty ranges of cards to process (and clear).
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
476 cl->do_MemRegion(mr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480
3287
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
481 // The iterator itself is not MT-aware, but
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
482 // MT-aware callers and closures can use this to
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
483 // accomplish dirty card iteration in parallel. The
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
484 // iterator itself does not clear the dirty cards, or
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
485 // change their values in any manner.
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
486 void CardTableModRefBS::non_clean_card_iterate_serial(MemRegion mr,
c48ad6ab8bdf 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 3256
diff changeset
487 MemRegionClosure* cl) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
488 for (int i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 MemRegion mri = mr.intersection(_covered[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
490 if (mri.word_size() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
491 jbyte* cur_entry = byte_for(mri.last());
a61af66fc99e Initial load
duke
parents:
diff changeset
492 jbyte* limit = byte_for(mri.start());
a61af66fc99e Initial load
duke
parents:
diff changeset
493 while (cur_entry >= limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 jbyte* next_entry = cur_entry - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
495 if (*cur_entry != clean_card) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 size_t non_clean_cards = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // Should the next card be included in this range of dirty cards.
a61af66fc99e Initial load
duke
parents:
diff changeset
498 while (next_entry >= limit && *next_entry != clean_card) {
a61af66fc99e Initial load
duke
parents:
diff changeset
499 non_clean_cards++;
a61af66fc99e Initial load
duke
parents:
diff changeset
500 cur_entry = next_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
501 next_entry--;
a61af66fc99e Initial load
duke
parents:
diff changeset
502 }
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // The memory region may not be on a card boundary. So that
a61af66fc99e Initial load
duke
parents:
diff changeset
504 // objects beyond the end of the region are not processed, make
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // cur_cards precise with regard to the end of the memory region.
a61af66fc99e Initial load
duke
parents:
diff changeset
506 MemRegion cur_cards(addr_for(cur_entry),
a61af66fc99e Initial load
duke
parents:
diff changeset
507 non_clean_cards * card_size_in_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 MemRegion dirty_region = cur_cards.intersection(mri);
a61af66fc99e Initial load
duke
parents:
diff changeset
509 cl->do_MemRegion(dirty_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
511 cur_entry = next_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 void CardTableModRefBS::dirty_MemRegion(MemRegion mr) {
1091
6aa7255741f3 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 940
diff changeset
518 assert((HeapWord*)align_size_down((uintptr_t)mr.start(), HeapWordSize) == mr.start(), "Unaligned start");
6aa7255741f3 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 940
diff changeset
519 assert((HeapWord*)align_size_up ((uintptr_t)mr.end(), HeapWordSize) == mr.end(), "Unaligned end" );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
520 jbyte* cur = byte_for(mr.start());
a61af66fc99e Initial load
duke
parents:
diff changeset
521 jbyte* last = byte_after(mr.last());
a61af66fc99e Initial load
duke
parents:
diff changeset
522 while (cur < last) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 *cur = dirty_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
524 cur++;
a61af66fc99e Initial load
duke
parents:
diff changeset
525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
526 }
a61af66fc99e Initial load
duke
parents:
diff changeset
527
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
528 void CardTableModRefBS::invalidate(MemRegion mr, bool whole_heap) {
1091
6aa7255741f3 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 940
diff changeset
529 assert((HeapWord*)align_size_down((uintptr_t)mr.start(), HeapWordSize) == mr.start(), "Unaligned start");
6aa7255741f3 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 940
diff changeset
530 assert((HeapWord*)align_size_up ((uintptr_t)mr.end(), HeapWordSize) == mr.end(), "Unaligned end" );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
531 for (int i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
532 MemRegion mri = mr.intersection(_covered[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
533 if (!mri.is_empty()) dirty_MemRegion(mri);
a61af66fc99e Initial load
duke
parents:
diff changeset
534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536
a61af66fc99e Initial load
duke
parents:
diff changeset
537 void CardTableModRefBS::clear_MemRegion(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // Be conservative: only clean cards entirely contained within the
a61af66fc99e Initial load
duke
parents:
diff changeset
539 // region.
a61af66fc99e Initial load
duke
parents:
diff changeset
540 jbyte* cur;
a61af66fc99e Initial load
duke
parents:
diff changeset
541 if (mr.start() == _whole_heap.start()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
542 cur = byte_for(mr.start());
a61af66fc99e Initial load
duke
parents:
diff changeset
543 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
544 assert(mr.start() > _whole_heap.start(), "mr is not covered.");
a61af66fc99e Initial load
duke
parents:
diff changeset
545 cur = byte_after(mr.start() - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
546 }
a61af66fc99e Initial load
duke
parents:
diff changeset
547 jbyte* last = byte_after(mr.last());
a61af66fc99e Initial load
duke
parents:
diff changeset
548 memset(cur, clean_card, pointer_delta(last, cur, sizeof(jbyte)));
a61af66fc99e Initial load
duke
parents:
diff changeset
549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 void CardTableModRefBS::clear(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 for (int i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 MemRegion mri = mr.intersection(_covered[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
554 if (!mri.is_empty()) clear_MemRegion(mri);
a61af66fc99e Initial load
duke
parents:
diff changeset
555 }
a61af66fc99e Initial load
duke
parents:
diff changeset
556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
557
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
558 void CardTableModRefBS::dirty(MemRegion mr) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
559 jbyte* first = byte_for(mr.start());
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
560 jbyte* last = byte_after(mr.last());
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
561 memset(first, dirty_card, last-first);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
562 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
563
3256
c69b1043dfb1 7036482: clear argument is redundant and unused in cardtable methods
ysr
parents: 1972
diff changeset
564 // Unlike several other card table methods, dirty_card_iterate()
c69b1043dfb1 7036482: clear argument is redundant and unused in cardtable methods
ysr
parents: 1972
diff changeset
565 // iterates over dirty cards ranges in increasing address order.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
566 void CardTableModRefBS::dirty_card_iterate(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
567 MemRegionClosure* cl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 for (int i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
569 MemRegion mri = mr.intersection(_covered[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
570 if (!mri.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
571 jbyte *cur_entry, *next_entry, *limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
572 for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
a61af66fc99e Initial load
duke
parents:
diff changeset
573 cur_entry <= limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
574 cur_entry = next_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 next_entry = cur_entry + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
576 if (*cur_entry == dirty_card) {
a61af66fc99e Initial load
duke
parents:
diff changeset
577 size_t dirty_cards;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 // Accumulate maximal dirty card range, starting at cur_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
579 for (dirty_cards = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
580 next_entry <= limit && *next_entry == dirty_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
581 dirty_cards++, next_entry++);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 MemRegion cur_cards(addr_for(cur_entry),
a61af66fc99e Initial load
duke
parents:
diff changeset
583 dirty_cards*card_size_in_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
584 cl->do_MemRegion(cur_cards);
a61af66fc99e Initial load
duke
parents:
diff changeset
585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
586 }
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
591 MemRegion CardTableModRefBS::dirty_card_range_after_reset(MemRegion mr,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
592 bool reset,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
593 int reset_val) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
594 for (int i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
595 MemRegion mri = mr.intersection(_covered[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
596 if (!mri.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
597 jbyte* cur_entry, *next_entry, *limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
598 for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
a61af66fc99e Initial load
duke
parents:
diff changeset
599 cur_entry <= limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
600 cur_entry = next_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
601 next_entry = cur_entry + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
602 if (*cur_entry == dirty_card) {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 size_t dirty_cards;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 // Accumulate maximal dirty card range, starting at cur_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
605 for (dirty_cards = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 next_entry <= limit && *next_entry == dirty_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
607 dirty_cards++, next_entry++);
a61af66fc99e Initial load
duke
parents:
diff changeset
608 MemRegion cur_cards(addr_for(cur_entry),
a61af66fc99e Initial load
duke
parents:
diff changeset
609 dirty_cards*card_size_in_words);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
610 if (reset) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
611 for (size_t i = 0; i < dirty_cards; i++) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
612 cur_entry[i] = reset_val;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
613 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615 return cur_cards;
a61af66fc99e Initial load
duke
parents:
diff changeset
616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
617 }
a61af66fc99e Initial load
duke
parents:
diff changeset
618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
620 return MemRegion(mr.end(), mr.end());
a61af66fc99e Initial load
duke
parents:
diff changeset
621 }
a61af66fc99e Initial load
duke
parents:
diff changeset
622
a61af66fc99e Initial load
duke
parents:
diff changeset
623 // Set all the dirty cards in the given region to "precleaned" state.
a61af66fc99e Initial load
duke
parents:
diff changeset
624 void CardTableModRefBS::preclean_dirty_cards(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
625 for (int i = 0; i < _cur_covered_regions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 MemRegion mri = mr.intersection(_covered[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 if (!mri.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 jbyte *cur_entry, *limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
629 for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
a61af66fc99e Initial load
duke
parents:
diff changeset
630 cur_entry <= limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
631 cur_entry++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
632 if (*cur_entry == dirty_card) {
a61af66fc99e Initial load
duke
parents:
diff changeset
633 *cur_entry = precleaned_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636 }
a61af66fc99e Initial load
duke
parents:
diff changeset
637 }
a61af66fc99e Initial load
duke
parents:
diff changeset
638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
639
a61af66fc99e Initial load
duke
parents:
diff changeset
640 uintx CardTableModRefBS::ct_max_alignment_constraint() {
a61af66fc99e Initial load
duke
parents:
diff changeset
641 return card_size * os::vm_page_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 void CardTableModRefBS::verify_guard() {
a61af66fc99e Initial load
duke
parents:
diff changeset
645 // For product build verification
a61af66fc99e Initial load
duke
parents:
diff changeset
646 guarantee(_byte_map[_guard_index] == last_card,
a61af66fc99e Initial load
duke
parents:
diff changeset
647 "card table guard has been modified");
a61af66fc99e Initial load
duke
parents:
diff changeset
648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
649
a61af66fc99e Initial load
duke
parents:
diff changeset
650 void CardTableModRefBS::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
651 verify_guard();
a61af66fc99e Initial load
duke
parents:
diff changeset
652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 #ifndef PRODUCT
3317
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
655 void CardTableModRefBS::verify_region(MemRegion mr,
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
656 jbyte val, bool val_equals) {
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
657 jbyte* start = byte_for(mr.start());
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
658 jbyte* end = byte_for(mr.last());
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
659 bool failures = false;
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
660 for (jbyte* curr = start; curr <= end; ++curr) {
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
661 jbyte curr_val = *curr;
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
662 bool failed = (val_equals) ? (curr_val != val) : (curr_val == val);
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
663 if (failed) {
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
664 if (!failures) {
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
665 tty->cr();
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
666 tty->print_cr("== CT verification failed: ["PTR_FORMAT","PTR_FORMAT"]");
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
667 tty->print_cr("== %sexpecting value: %d",
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
668 (val_equals) ? "" : "not ", val);
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
669 failures = true;
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
670 }
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
671 tty->print_cr("== card "PTR_FORMAT" ["PTR_FORMAT","PTR_FORMAT"], "
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
672 "val: %d", curr, addr_for(curr),
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
673 (HeapWord*) (((size_t) addr_for(curr)) + card_size),
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
674 (int) curr_val);
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
675 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
676 }
3317
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
677 guarantee(!failures, "there should not have been any failures");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
940
8624da129f0b 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 887
diff changeset
679
3317
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
680 void CardTableModRefBS::verify_not_dirty_region(MemRegion mr) {
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
681 verify_region(mr, dirty_card, false /* val_equals */);
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
682 }
940
8624da129f0b 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 887
diff changeset
683
8624da129f0b 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 887
diff changeset
684 void CardTableModRefBS::verify_dirty_region(MemRegion mr) {
3317
063382f9b575 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 3287
diff changeset
685 verify_region(mr, dirty_card, true /* val_equals */);
940
8624da129f0b 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 887
diff changeset
686 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
687 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
688
a61af66fc99e Initial load
duke
parents:
diff changeset
689 bool CardTableModRefBSForCTRS::card_will_be_scanned(jbyte cv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
690 return
a61af66fc99e Initial load
duke
parents:
diff changeset
691 CardTableModRefBS::card_will_be_scanned(cv) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
692 _rs->is_prev_nonclean_card_val(cv);
a61af66fc99e Initial load
duke
parents:
diff changeset
693 };
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 bool CardTableModRefBSForCTRS::card_may_have_been_dirty(jbyte cv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
696 return
a61af66fc99e Initial load
duke
parents:
diff changeset
697 cv != clean_card &&
a61af66fc99e Initial load
duke
parents:
diff changeset
698 (CardTableModRefBS::card_may_have_been_dirty(cv) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
699 CardTableRS::youngergen_may_have_been_dirty(cv));
a61af66fc99e Initial load
duke
parents:
diff changeset
700 };