src/share/vm/memory/cardTableRS.cpp

Sun, 01 Apr 2012 17:04:26 -0400

author
acorn
date
Sun, 01 Apr 2012 17:04:26 -0400
changeset 3686
749b1464aa81
parent 3642
c7a555a9449a
child 4037
da91efe96a93
permissions
-rw-r--r--

Merge

duke@435 1 /*
brutisso@3642 2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "memory/allocation.inline.hpp"
stefank@2314 27 #include "memory/cardTableRS.hpp"
stefank@2314 28 #include "memory/genCollectedHeap.hpp"
stefank@2314 29 #include "memory/generation.hpp"
stefank@2314 30 #include "memory/space.hpp"
stefank@2314 31 #include "oops/oop.inline.hpp"
stefank@2314 32 #include "runtime/java.hpp"
stefank@2314 33 #include "runtime/os.hpp"
stefank@2314 34 #ifndef SERIALGC
stefank@2314 35 #include "gc_implementation/g1/concurrentMark.hpp"
stefank@2314 36 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
stefank@2314 37 #endif
duke@435 38
duke@435 39 CardTableRS::CardTableRS(MemRegion whole_heap,
duke@435 40 int max_covered_regions) :
ysr@777 41 GenRemSet(),
ysr@777 42 _cur_youngergen_card_val(youngergenP1_card),
ysr@777 43 _regions_to_iterate(max_covered_regions - 1)
duke@435 44 {
ysr@777 45 #ifndef SERIALGC
ysr@777 46 if (UseG1GC) {
ysr@777 47 _ct_bs = new G1SATBCardTableLoggingModRefBS(whole_heap,
ysr@777 48 max_covered_regions);
ysr@777 49 } else {
ysr@777 50 _ct_bs = new CardTableModRefBSForCTRS(whole_heap, max_covered_regions);
ysr@777 51 }
ysr@777 52 #else
ysr@777 53 _ct_bs = new CardTableModRefBSForCTRS(whole_heap, max_covered_regions);
ysr@777 54 #endif
ysr@777 55 set_bs(_ct_bs);
duke@435 56 _last_cur_val_in_gen = new jbyte[GenCollectedHeap::max_gens + 1];
duke@435 57 if (_last_cur_val_in_gen == NULL) {
duke@435 58 vm_exit_during_initialization("Could not last_cur_val_in_gen array.");
duke@435 59 }
duke@435 60 for (int i = 0; i < GenCollectedHeap::max_gens + 1; i++) {
duke@435 61 _last_cur_val_in_gen[i] = clean_card_val();
duke@435 62 }
ysr@777 63 _ct_bs->set_CTRS(this);
duke@435 64 }
duke@435 65
duke@435 66 void CardTableRS::resize_covered_region(MemRegion new_region) {
ysr@777 67 _ct_bs->resize_covered_region(new_region);
duke@435 68 }
duke@435 69
duke@435 70 jbyte CardTableRS::find_unused_youngergenP_card_value() {
duke@435 71 for (jbyte v = youngergenP1_card;
duke@435 72 v < cur_youngergen_and_prev_nonclean_card;
duke@435 73 v++) {
duke@435 74 bool seen = false;
ysr@777 75 for (int g = 0; g < _regions_to_iterate; g++) {
duke@435 76 if (_last_cur_val_in_gen[g] == v) {
duke@435 77 seen = true;
duke@435 78 break;
duke@435 79 }
duke@435 80 }
duke@435 81 if (!seen) return v;
duke@435 82 }
duke@435 83 ShouldNotReachHere();
duke@435 84 return 0;
duke@435 85 }
duke@435 86
duke@435 87 void CardTableRS::prepare_for_younger_refs_iterate(bool parallel) {
duke@435 88 // Parallel or sequential, we must always set the prev to equal the
duke@435 89 // last one written.
duke@435 90 if (parallel) {
duke@435 91 // Find a parallel value to be used next.
duke@435 92 jbyte next_val = find_unused_youngergenP_card_value();
duke@435 93 set_cur_youngergen_card_val(next_val);
duke@435 94
duke@435 95 } else {
duke@435 96 // In an sequential traversal we will always write youngergen, so that
duke@435 97 // the inline barrier is correct.
duke@435 98 set_cur_youngergen_card_val(youngergen_card);
duke@435 99 }
duke@435 100 }
duke@435 101
duke@435 102 void CardTableRS::younger_refs_iterate(Generation* g,
duke@435 103 OopsInGenClosure* blk) {
duke@435 104 _last_cur_val_in_gen[g->level()+1] = cur_youngergen_card_val();
duke@435 105 g->younger_refs_iterate(blk);
duke@435 106 }
duke@435 107
ysr@2819 108 inline bool ClearNoncleanCardWrapper::clear_card(jbyte* entry) {
ysr@2819 109 if (_is_par) {
ysr@2819 110 return clear_card_parallel(entry);
ysr@2819 111 } else {
ysr@2819 112 return clear_card_serial(entry);
ysr@2819 113 }
ysr@2819 114 }
ysr@2819 115
ysr@2819 116 inline bool ClearNoncleanCardWrapper::clear_card_parallel(jbyte* entry) {
ysr@2819 117 while (true) {
ysr@2819 118 // In the parallel case, we may have to do this several times.
ysr@2819 119 jbyte entry_val = *entry;
ysr@2819 120 assert(entry_val != CardTableRS::clean_card_val(),
ysr@2819 121 "We shouldn't be looking at clean cards, and this should "
ysr@2819 122 "be the only place they get cleaned.");
ysr@2819 123 if (CardTableRS::card_is_dirty_wrt_gen_iter(entry_val)
ysr@2819 124 || _ct->is_prev_youngergen_card_val(entry_val)) {
ysr@2819 125 jbyte res =
ysr@2819 126 Atomic::cmpxchg(CardTableRS::clean_card_val(), entry, entry_val);
ysr@2819 127 if (res == entry_val) {
ysr@2819 128 break;
ysr@2819 129 } else {
ysr@2819 130 assert(res == CardTableRS::cur_youngergen_and_prev_nonclean_card,
ysr@2819 131 "The CAS above should only fail if another thread did "
ysr@2819 132 "a GC write barrier.");
duke@435 133 }
ysr@2819 134 } else if (entry_val ==
ysr@2819 135 CardTableRS::cur_youngergen_and_prev_nonclean_card) {
ysr@2819 136 // Parallelism shouldn't matter in this case. Only the thread
ysr@2819 137 // assigned to scan the card should change this value.
ysr@2819 138 *entry = _ct->cur_youngergen_card_val();
ysr@2819 139 break;
duke@435 140 } else {
ysr@2819 141 assert(entry_val == _ct->cur_youngergen_card_val(),
ysr@2819 142 "Should be the only possibility.");
ysr@2819 143 // In this case, the card was clean before, and become
ysr@2819 144 // cur_youngergen only because of processing of a promoted object.
ysr@2819 145 // We don't have to look at the card.
ysr@2819 146 return false;
duke@435 147 }
duke@435 148 }
ysr@2819 149 return true;
ysr@2819 150 }
duke@435 151
ysr@2819 152
ysr@2819 153 inline bool ClearNoncleanCardWrapper::clear_card_serial(jbyte* entry) {
ysr@2819 154 jbyte entry_val = *entry;
ysr@2819 155 assert(entry_val != CardTableRS::clean_card_val(),
ysr@2819 156 "We shouldn't be looking at clean cards, and this should "
ysr@2819 157 "be the only place they get cleaned.");
ysr@2819 158 assert(entry_val != CardTableRS::cur_youngergen_and_prev_nonclean_card,
ysr@2819 159 "This should be possible in the sequential case.");
ysr@2819 160 *entry = CardTableRS::clean_card_val();
ysr@2819 161 return true;
ysr@2819 162 }
ysr@2819 163
ysr@2819 164 ClearNoncleanCardWrapper::ClearNoncleanCardWrapper(
ysr@2889 165 DirtyCardToOopClosure* dirty_card_closure, CardTableRS* ct) :
duke@435 166 _dirty_card_closure(dirty_card_closure), _ct(ct) {
jmasa@3294 167 // Cannot yet substitute active_workers for n_par_threads
jmasa@3294 168 // in the case where parallelism is being turned off by
jmasa@3294 169 // setting n_par_threads to 0.
duke@435 170 _is_par = (SharedHeap::heap()->n_par_threads() > 0);
jmasa@3294 171 assert(!_is_par ||
jmasa@3294 172 (SharedHeap::heap()->n_par_threads() ==
jmasa@3294 173 SharedHeap::heap()->workers()->active_workers()), "Mismatch");
ysr@2819 174 }
ysr@2819 175
brutisso@3642 176 bool ClearNoncleanCardWrapper::is_word_aligned(jbyte* entry) {
brutisso@3642 177 return (((intptr_t)entry) & (BytesPerWord-1)) == 0;
brutisso@3642 178 }
brutisso@3642 179
ysr@2819 180 void ClearNoncleanCardWrapper::do_MemRegion(MemRegion mr) {
ysr@2819 181 assert(mr.word_size() > 0, "Error");
ysr@2819 182 assert(_ct->is_aligned(mr.start()), "mr.start() should be card aligned");
ysr@2819 183 // mr.end() may not necessarily be card aligned.
ysr@2819 184 jbyte* cur_entry = _ct->byte_for(mr.last());
ysr@2819 185 const jbyte* limit = _ct->byte_for(mr.start());
ysr@2819 186 HeapWord* end_of_non_clean = mr.end();
ysr@2819 187 HeapWord* start_of_non_clean = end_of_non_clean;
ysr@2819 188 while (cur_entry >= limit) {
ysr@2819 189 HeapWord* cur_hw = _ct->addr_for(cur_entry);
ysr@2819 190 if ((*cur_entry != CardTableRS::clean_card_val()) && clear_card(cur_entry)) {
ysr@2819 191 // Continue the dirty range by opening the
ysr@2819 192 // dirty window one card to the left.
ysr@2819 193 start_of_non_clean = cur_hw;
ysr@2819 194 } else {
ysr@2819 195 // We hit a "clean" card; process any non-empty
ysr@2819 196 // "dirty" range accumulated so far.
ysr@2819 197 if (start_of_non_clean < end_of_non_clean) {
ysr@2819 198 const MemRegion mrd(start_of_non_clean, end_of_non_clean);
ysr@2819 199 _dirty_card_closure->do_MemRegion(mrd);
ysr@2819 200 }
brutisso@3642 201
brutisso@3642 202 // fast forward through potential continuous whole-word range of clean cards beginning at a word-boundary
brutisso@3642 203 if (is_word_aligned(cur_entry)) {
brutisso@3642 204 jbyte* cur_row = cur_entry - BytesPerWord;
brutisso@3642 205 while (cur_row >= limit && *((intptr_t*)cur_row) == CardTableRS::clean_card_row()) {
brutisso@3642 206 cur_row -= BytesPerWord;
brutisso@3642 207 }
brutisso@3642 208 cur_entry = cur_row + BytesPerWord;
brutisso@3642 209 cur_hw = _ct->addr_for(cur_entry);
brutisso@3642 210 }
brutisso@3642 211
ysr@2819 212 // Reset the dirty window, while continuing to look
ysr@2819 213 // for the next dirty card that will start a
ysr@2819 214 // new dirty window.
ysr@2819 215 end_of_non_clean = cur_hw;
ysr@2819 216 start_of_non_clean = cur_hw;
ysr@2819 217 }
ysr@2819 218 // Note that "cur_entry" leads "start_of_non_clean" in
ysr@2819 219 // its leftward excursion after this point
ysr@2819 220 // in the loop and, when we hit the left end of "mr",
ysr@2819 221 // will point off of the left end of the card-table
ysr@2819 222 // for "mr".
ysr@2819 223 cur_entry--;
duke@435 224 }
ysr@2819 225 // If the first card of "mr" was dirty, we will have
ysr@2819 226 // been left with a dirty window, co-initial with "mr",
ysr@2819 227 // which we now process.
ysr@2819 228 if (start_of_non_clean < end_of_non_clean) {
ysr@2819 229 const MemRegion mrd(start_of_non_clean, end_of_non_clean);
ysr@2819 230 _dirty_card_closure->do_MemRegion(mrd);
duke@435 231 }
ysr@2819 232 }
ysr@2819 233
duke@435 234 // clean (by dirty->clean before) ==> cur_younger_gen
duke@435 235 // dirty ==> cur_youngergen_and_prev_nonclean_card
duke@435 236 // precleaned ==> cur_youngergen_and_prev_nonclean_card
duke@435 237 // prev-younger-gen ==> cur_youngergen_and_prev_nonclean_card
duke@435 238 // cur-younger-gen ==> cur_younger_gen
duke@435 239 // cur_youngergen_and_prev_nonclean_card ==> no change.
coleenp@548 240 void CardTableRS::write_ref_field_gc_par(void* field, oop new_val) {
duke@435 241 jbyte* entry = ct_bs()->byte_for(field);
duke@435 242 do {
duke@435 243 jbyte entry_val = *entry;
duke@435 244 // We put this first because it's probably the most common case.
duke@435 245 if (entry_val == clean_card_val()) {
duke@435 246 // No threat of contention with cleaning threads.
duke@435 247 *entry = cur_youngergen_card_val();
duke@435 248 return;
duke@435 249 } else if (card_is_dirty_wrt_gen_iter(entry_val)
duke@435 250 || is_prev_youngergen_card_val(entry_val)) {
duke@435 251 // Mark it as both cur and prev youngergen; card cleaning thread will
duke@435 252 // eventually remove the previous stuff.
duke@435 253 jbyte new_val = cur_youngergen_and_prev_nonclean_card;
duke@435 254 jbyte res = Atomic::cmpxchg(new_val, entry, entry_val);
duke@435 255 // Did the CAS succeed?
duke@435 256 if (res == entry_val) return;
duke@435 257 // Otherwise, retry, to see the new value.
duke@435 258 continue;
duke@435 259 } else {
duke@435 260 assert(entry_val == cur_youngergen_and_prev_nonclean_card
duke@435 261 || entry_val == cur_youngergen_card_val(),
duke@435 262 "should be only possibilities.");
duke@435 263 return;
duke@435 264 }
duke@435 265 } while (true);
duke@435 266 }
duke@435 267
duke@435 268 void CardTableRS::younger_refs_in_space_iterate(Space* sp,
duke@435 269 OopsInGenClosure* cl) {
ysr@2825 270 const MemRegion urasm = sp->used_region_at_save_marks();
ysr@2825 271 #ifdef ASSERT
ysr@2825 272 // Convert the assertion check to a warning if we are running
ysr@2825 273 // CMS+ParNew until related bug is fixed.
ysr@2825 274 MemRegion ur = sp->used_region();
ysr@2825 275 assert(ur.contains(urasm) || (UseConcMarkSweepGC && UseParNewGC),
ysr@2825 276 err_msg("Did you forget to call save_marks()? "
ysr@2825 277 "[" PTR_FORMAT ", " PTR_FORMAT ") is not contained in "
ysr@2825 278 "[" PTR_FORMAT ", " PTR_FORMAT ")",
ysr@2825 279 urasm.start(), urasm.end(), ur.start(), ur.end()));
ysr@2825 280 // In the case of CMS+ParNew, issue a warning
ysr@2825 281 if (!ur.contains(urasm)) {
ysr@2825 282 assert(UseConcMarkSweepGC && UseParNewGC, "Tautology: see assert above");
ysr@2825 283 warning("CMS+ParNew: Did you forget to call save_marks()? "
ysr@2825 284 "[" PTR_FORMAT ", " PTR_FORMAT ") is not contained in "
ysr@2825 285 "[" PTR_FORMAT ", " PTR_FORMAT ")",
ysr@2825 286 urasm.start(), urasm.end(), ur.start(), ur.end());
ysr@2825 287 MemRegion ur2 = sp->used_region();
ysr@2825 288 MemRegion urasm2 = sp->used_region_at_save_marks();
ysr@2825 289 if (!ur.equals(ur2)) {
ysr@2825 290 warning("CMS+ParNew: Flickering used_region()!!");
ysr@2825 291 }
ysr@2825 292 if (!urasm.equals(urasm2)) {
ysr@2825 293 warning("CMS+ParNew: Flickering used_region_at_save_marks()!!");
ysr@2825 294 }
ysr@2889 295 ShouldNotReachHere();
ysr@2825 296 }
ysr@2825 297 #endif
ysr@2889 298 _ct_bs->non_clean_card_iterate_possibly_parallel(sp, urasm, cl, this);
duke@435 299 }
duke@435 300
duke@435 301 void CardTableRS::clear_into_younger(Generation* gen, bool clear_perm) {
duke@435 302 GenCollectedHeap* gch = GenCollectedHeap::heap();
duke@435 303 // Generations younger than gen have been evacuated. We can clear
duke@435 304 // card table entries for gen (we know that it has no pointers
duke@435 305 // to younger gens) and for those below. The card tables for
duke@435 306 // the youngest gen need never be cleared, and those for perm gen
duke@435 307 // will be cleared based on the parameter clear_perm.
duke@435 308 // There's a bit of subtlety in the clear() and invalidate()
duke@435 309 // methods that we exploit here and in invalidate_or_clear()
duke@435 310 // below to avoid missing cards at the fringes. If clear() or
duke@435 311 // invalidate() are changed in the future, this code should
duke@435 312 // be revisited. 20040107.ysr
duke@435 313 Generation* g = gen;
duke@435 314 for(Generation* prev_gen = gch->prev_gen(g);
duke@435 315 prev_gen != NULL;
duke@435 316 g = prev_gen, prev_gen = gch->prev_gen(g)) {
duke@435 317 MemRegion to_be_cleared_mr = g->prev_used_region();
duke@435 318 clear(to_be_cleared_mr);
duke@435 319 }
duke@435 320 // Clear perm gen cards if asked to do so.
duke@435 321 if (clear_perm) {
duke@435 322 MemRegion to_be_cleared_mr = gch->perm_gen()->prev_used_region();
duke@435 323 clear(to_be_cleared_mr);
duke@435 324 }
duke@435 325 }
duke@435 326
duke@435 327 void CardTableRS::invalidate_or_clear(Generation* gen, bool younger,
duke@435 328 bool perm) {
duke@435 329 GenCollectedHeap* gch = GenCollectedHeap::heap();
duke@435 330 // For each generation gen (and younger and/or perm)
duke@435 331 // invalidate the cards for the currently occupied part
duke@435 332 // of that generation and clear the cards for the
duke@435 333 // unoccupied part of the generation (if any, making use
duke@435 334 // of that generation's prev_used_region to determine that
duke@435 335 // region). No need to do anything for the youngest
duke@435 336 // generation. Also see note#20040107.ysr above.
duke@435 337 Generation* g = gen;
duke@435 338 for(Generation* prev_gen = gch->prev_gen(g); prev_gen != NULL;
duke@435 339 g = prev_gen, prev_gen = gch->prev_gen(g)) {
duke@435 340 MemRegion used_mr = g->used_region();
duke@435 341 MemRegion to_be_cleared_mr = g->prev_used_region().minus(used_mr);
duke@435 342 if (!to_be_cleared_mr.is_empty()) {
duke@435 343 clear(to_be_cleared_mr);
duke@435 344 }
duke@435 345 invalidate(used_mr);
duke@435 346 if (!younger) break;
duke@435 347 }
duke@435 348 // Clear perm gen cards if asked to do so.
duke@435 349 if (perm) {
duke@435 350 g = gch->perm_gen();
duke@435 351 MemRegion used_mr = g->used_region();
duke@435 352 MemRegion to_be_cleared_mr = g->prev_used_region().minus(used_mr);
duke@435 353 if (!to_be_cleared_mr.is_empty()) {
duke@435 354 clear(to_be_cleared_mr);
duke@435 355 }
duke@435 356 invalidate(used_mr);
duke@435 357 }
duke@435 358 }
duke@435 359
duke@435 360
duke@435 361 class VerifyCleanCardClosure: public OopClosure {
coleenp@548 362 private:
coleenp@548 363 HeapWord* _boundary;
coleenp@548 364 HeapWord* _begin;
coleenp@548 365 HeapWord* _end;
coleenp@548 366 protected:
coleenp@548 367 template <class T> void do_oop_work(T* p) {
duke@435 368 HeapWord* jp = (HeapWord*)p;
ysr@2710 369 assert(jp >= _begin && jp < _end,
ysr@2710 370 err_msg("Error: jp " PTR_FORMAT " should be within "
ysr@2710 371 "[_begin, _end) = [" PTR_FORMAT "," PTR_FORMAT ")",
ysr@2710 372 _begin, _end));
ysr@2710 373 oop obj = oopDesc::load_decode_heap_oop(p);
ysr@2710 374 guarantee(obj == NULL || (HeapWord*)obj >= _boundary,
ysr@2710 375 err_msg("pointer " PTR_FORMAT " at " PTR_FORMAT " on "
ysr@2710 376 "clean card crosses boundary" PTR_FORMAT,
ysr@2710 377 (HeapWord*)obj, jp, _boundary));
duke@435 378 }
ysr@2710 379
coleenp@548 380 public:
coleenp@548 381 VerifyCleanCardClosure(HeapWord* b, HeapWord* begin, HeapWord* end) :
ysr@2710 382 _boundary(b), _begin(begin), _end(end) {
ysr@2710 383 assert(b <= begin,
ysr@2710 384 err_msg("Error: boundary " PTR_FORMAT " should be at or below begin " PTR_FORMAT,
ysr@2710 385 b, begin));
ysr@2710 386 assert(begin <= end,
ysr@2710 387 err_msg("Error: begin " PTR_FORMAT " should be strictly below end " PTR_FORMAT,
ysr@2710 388 begin, end));
ysr@2710 389 }
ysr@2710 390
coleenp@548 391 virtual void do_oop(oop* p) { VerifyCleanCardClosure::do_oop_work(p); }
coleenp@548 392 virtual void do_oop(narrowOop* p) { VerifyCleanCardClosure::do_oop_work(p); }
duke@435 393 };
duke@435 394
duke@435 395 class VerifyCTSpaceClosure: public SpaceClosure {
coleenp@548 396 private:
duke@435 397 CardTableRS* _ct;
duke@435 398 HeapWord* _boundary;
duke@435 399 public:
duke@435 400 VerifyCTSpaceClosure(CardTableRS* ct, HeapWord* boundary) :
duke@435 401 _ct(ct), _boundary(boundary) {}
coleenp@548 402 virtual void do_space(Space* s) { _ct->verify_space(s, _boundary); }
duke@435 403 };
duke@435 404
duke@435 405 class VerifyCTGenClosure: public GenCollectedHeap::GenClosure {
duke@435 406 CardTableRS* _ct;
duke@435 407 public:
duke@435 408 VerifyCTGenClosure(CardTableRS* ct) : _ct(ct) {}
duke@435 409 void do_generation(Generation* gen) {
duke@435 410 // Skip the youngest generation.
duke@435 411 if (gen->level() == 0) return;
duke@435 412 // Normally, we're interested in pointers to younger generations.
duke@435 413 VerifyCTSpaceClosure blk(_ct, gen->reserved().start());
duke@435 414 gen->space_iterate(&blk, true);
duke@435 415 }
duke@435 416 };
duke@435 417
duke@435 418 void CardTableRS::verify_space(Space* s, HeapWord* gen_boundary) {
duke@435 419 // We don't need to do young-gen spaces.
duke@435 420 if (s->end() <= gen_boundary) return;
duke@435 421 MemRegion used = s->used_region();
duke@435 422
duke@435 423 jbyte* cur_entry = byte_for(used.start());
duke@435 424 jbyte* limit = byte_after(used.last());
duke@435 425 while (cur_entry < limit) {
duke@435 426 if (*cur_entry == CardTableModRefBS::clean_card) {
duke@435 427 jbyte* first_dirty = cur_entry+1;
duke@435 428 while (first_dirty < limit &&
duke@435 429 *first_dirty == CardTableModRefBS::clean_card) {
duke@435 430 first_dirty++;
duke@435 431 }
duke@435 432 // If the first object is a regular object, and it has a
duke@435 433 // young-to-old field, that would mark the previous card.
duke@435 434 HeapWord* boundary = addr_for(cur_entry);
duke@435 435 HeapWord* end = (first_dirty >= limit) ? used.end() : addr_for(first_dirty);
duke@435 436 HeapWord* boundary_block = s->block_start(boundary);
duke@435 437 HeapWord* begin = boundary; // Until proven otherwise.
duke@435 438 HeapWord* start_block = boundary_block; // Until proven otherwise.
duke@435 439 if (boundary_block < boundary) {
duke@435 440 if (s->block_is_obj(boundary_block) && s->obj_is_alive(boundary_block)) {
duke@435 441 oop boundary_obj = oop(boundary_block);
duke@435 442 if (!boundary_obj->is_objArray() &&
duke@435 443 !boundary_obj->is_typeArray()) {
duke@435 444 guarantee(cur_entry > byte_for(used.start()),
duke@435 445 "else boundary would be boundary_block");
duke@435 446 if (*byte_for(boundary_block) != CardTableModRefBS::clean_card) {
duke@435 447 begin = boundary_block + s->block_size(boundary_block);
duke@435 448 start_block = begin;
duke@435 449 }
duke@435 450 }
duke@435 451 }
duke@435 452 }
duke@435 453 // Now traverse objects until end.
ysr@2710 454 if (begin < end) {
ysr@2710 455 MemRegion mr(begin, end);
ysr@2710 456 VerifyCleanCardClosure verify_blk(gen_boundary, begin, end);
ysr@2710 457 for (HeapWord* cur = start_block; cur < end; cur += s->block_size(cur)) {
ysr@2710 458 if (s->block_is_obj(cur) && s->obj_is_alive(cur)) {
ysr@2710 459 oop(cur)->oop_iterate(&verify_blk, mr);
ysr@2710 460 }
duke@435 461 }
duke@435 462 }
duke@435 463 cur_entry = first_dirty;
duke@435 464 } else {
duke@435 465 // We'd normally expect that cur_youngergen_and_prev_nonclean_card
duke@435 466 // is a transient value, that cannot be in the card table
duke@435 467 // except during GC, and thus assert that:
duke@435 468 // guarantee(*cur_entry != cur_youngergen_and_prev_nonclean_card,
duke@435 469 // "Illegal CT value");
duke@435 470 // That however, need not hold, as will become clear in the
duke@435 471 // following...
duke@435 472
duke@435 473 // We'd normally expect that if we are in the parallel case,
duke@435 474 // we can't have left a prev value (which would be different
duke@435 475 // from the current value) in the card table, and so we'd like to
duke@435 476 // assert that:
duke@435 477 // guarantee(cur_youngergen_card_val() == youngergen_card
duke@435 478 // || !is_prev_youngergen_card_val(*cur_entry),
duke@435 479 // "Illegal CT value");
duke@435 480 // That, however, may not hold occasionally, because of
duke@435 481 // CMS or MSC in the old gen. To wit, consider the
duke@435 482 // following two simple illustrative scenarios:
duke@435 483 // (a) CMS: Consider the case where a large object L
duke@435 484 // spanning several cards is allocated in the old
duke@435 485 // gen, and has a young gen reference stored in it, dirtying
duke@435 486 // some interior cards. A young collection scans the card,
duke@435 487 // finds a young ref and installs a youngergenP_n value.
duke@435 488 // L then goes dead. Now a CMS collection starts,
duke@435 489 // finds L dead and sweeps it up. Assume that L is
duke@435 490 // abutting _unallocated_blk, so _unallocated_blk is
duke@435 491 // adjusted down to (below) L. Assume further that
duke@435 492 // no young collection intervenes during this CMS cycle.
duke@435 493 // The next young gen cycle will not get to look at this
duke@435 494 // youngergenP_n card since it lies in the unoccupied
duke@435 495 // part of the space.
duke@435 496 // Some young collections later the blocks on this
duke@435 497 // card can be re-allocated either due to direct allocation
duke@435 498 // or due to absorbing promotions. At this time, the
duke@435 499 // before-gc verification will fail the above assert.
duke@435 500 // (b) MSC: In this case, an object L with a young reference
duke@435 501 // is on a card that (therefore) holds a youngergen_n value.
duke@435 502 // Suppose also that L lies towards the end of the used
duke@435 503 // the used space before GC. An MSC collection
duke@435 504 // occurs that compacts to such an extent that this
duke@435 505 // card is no longer in the occupied part of the space.
duke@435 506 // Since current code in MSC does not always clear cards
duke@435 507 // in the unused part of old gen, this stale youngergen_n
duke@435 508 // value is left behind and can later be covered by
duke@435 509 // an object when promotion or direct allocation
duke@435 510 // re-allocates that part of the heap.
duke@435 511 //
duke@435 512 // Fortunately, the presence of such stale card values is
duke@435 513 // "only" a minor annoyance in that subsequent young collections
duke@435 514 // might needlessly scan such cards, but would still never corrupt
duke@435 515 // the heap as a result. However, it's likely not to be a significant
duke@435 516 // performance inhibitor in practice. For instance,
duke@435 517 // some recent measurements with unoccupied cards eagerly cleared
duke@435 518 // out to maintain this invariant, showed next to no
duke@435 519 // change in young collection times; of course one can construct
duke@435 520 // degenerate examples where the cost can be significant.)
duke@435 521 // Note, in particular, that if the "stale" card is modified
duke@435 522 // after re-allocation, it would be dirty, not "stale". Thus,
duke@435 523 // we can never have a younger ref in such a card and it is
duke@435 524 // safe not to scan that card in any collection. [As we see
duke@435 525 // below, we do some unnecessary scanning
duke@435 526 // in some cases in the current parallel scanning algorithm.]
duke@435 527 //
duke@435 528 // The main point below is that the parallel card scanning code
duke@435 529 // deals correctly with these stale card values. There are two main
duke@435 530 // cases to consider where we have a stale "younger gen" value and a
duke@435 531 // "derivative" case to consider, where we have a stale
duke@435 532 // "cur_younger_gen_and_prev_non_clean" value, as will become
duke@435 533 // apparent in the case analysis below.
duke@435 534 // o Case 1. If the stale value corresponds to a younger_gen_n
duke@435 535 // value other than the cur_younger_gen value then the code
duke@435 536 // treats this as being tantamount to a prev_younger_gen
duke@435 537 // card. This means that the card may be unnecessarily scanned.
duke@435 538 // There are two sub-cases to consider:
duke@435 539 // o Case 1a. Let us say that the card is in the occupied part
duke@435 540 // of the generation at the time the collection begins. In
duke@435 541 // that case the card will be either cleared when it is scanned
duke@435 542 // for young pointers, or will be set to cur_younger_gen as a
duke@435 543 // result of promotion. (We have elided the normal case where
duke@435 544 // the scanning thread and the promoting thread interleave
duke@435 545 // possibly resulting in a transient
duke@435 546 // cur_younger_gen_and_prev_non_clean value before settling
duke@435 547 // to cur_younger_gen. [End Case 1a.]
duke@435 548 // o Case 1b. Consider now the case when the card is in the unoccupied
duke@435 549 // part of the space which becomes occupied because of promotions
duke@435 550 // into it during the current young GC. In this case the card
duke@435 551 // will never be scanned for young references. The current
duke@435 552 // code will set the card value to either
duke@435 553 // cur_younger_gen_and_prev_non_clean or leave
duke@435 554 // it with its stale value -- because the promotions didn't
duke@435 555 // result in any younger refs on that card. Of these two
duke@435 556 // cases, the latter will be covered in Case 1a during
duke@435 557 // a subsequent scan. To deal with the former case, we need
duke@435 558 // to further consider how we deal with a stale value of
duke@435 559 // cur_younger_gen_and_prev_non_clean in our case analysis
duke@435 560 // below. This we do in Case 3 below. [End Case 1b]
duke@435 561 // [End Case 1]
duke@435 562 // o Case 2. If the stale value corresponds to cur_younger_gen being
duke@435 563 // a value not necessarily written by a current promotion, the
duke@435 564 // card will not be scanned by the younger refs scanning code.
duke@435 565 // (This is OK since as we argued above such cards cannot contain
duke@435 566 // any younger refs.) The result is that this value will be
duke@435 567 // treated as a prev_younger_gen value in a subsequent collection,
duke@435 568 // which is addressed in Case 1 above. [End Case 2]
duke@435 569 // o Case 3. We here consider the "derivative" case from Case 1b. above
duke@435 570 // because of which we may find a stale
duke@435 571 // cur_younger_gen_and_prev_non_clean card value in the table.
duke@435 572 // Once again, as in Case 1, we consider two subcases, depending
duke@435 573 // on whether the card lies in the occupied or unoccupied part
duke@435 574 // of the space at the start of the young collection.
duke@435 575 // o Case 3a. Let us say the card is in the occupied part of
duke@435 576 // the old gen at the start of the young collection. In that
duke@435 577 // case, the card will be scanned by the younger refs scanning
duke@435 578 // code which will set it to cur_younger_gen. In a subsequent
duke@435 579 // scan, the card will be considered again and get its final
duke@435 580 // correct value. [End Case 3a]
duke@435 581 // o Case 3b. Now consider the case where the card is in the
duke@435 582 // unoccupied part of the old gen, and is occupied as a result
duke@435 583 // of promotions during thus young gc. In that case,
duke@435 584 // the card will not be scanned for younger refs. The presence
duke@435 585 // of newly promoted objects on the card will then result in
duke@435 586 // its keeping the value cur_younger_gen_and_prev_non_clean
duke@435 587 // value, which we have dealt with in Case 3 here. [End Case 3b]
duke@435 588 // [End Case 3]
duke@435 589 //
duke@435 590 // (Please refer to the code in the helper class
duke@435 591 // ClearNonCleanCardWrapper and in CardTableModRefBS for details.)
duke@435 592 //
duke@435 593 // The informal arguments above can be tightened into a formal
duke@435 594 // correctness proof and it behooves us to write up such a proof,
duke@435 595 // or to use model checking to prove that there are no lingering
duke@435 596 // concerns.
duke@435 597 //
duke@435 598 // Clearly because of Case 3b one cannot bound the time for
duke@435 599 // which a card will retain what we have called a "stale" value.
duke@435 600 // However, one can obtain a Loose upper bound on the redundant
duke@435 601 // work as a result of such stale values. Note first that any
duke@435 602 // time a stale card lies in the occupied part of the space at
duke@435 603 // the start of the collection, it is scanned by younger refs
duke@435 604 // code and we can define a rank function on card values that
duke@435 605 // declines when this is so. Note also that when a card does not
duke@435 606 // lie in the occupied part of the space at the beginning of a
duke@435 607 // young collection, its rank can either decline or stay unchanged.
duke@435 608 // In this case, no extra work is done in terms of redundant
duke@435 609 // younger refs scanning of that card.
duke@435 610 // Then, the case analysis above reveals that, in the worst case,
duke@435 611 // any such stale card will be scanned unnecessarily at most twice.
duke@435 612 //
duke@435 613 // It is nonethelss advisable to try and get rid of some of this
duke@435 614 // redundant work in a subsequent (low priority) re-design of
duke@435 615 // the card-scanning code, if only to simplify the underlying
duke@435 616 // state machine analysis/proof. ysr 1/28/2002. XXX
duke@435 617 cur_entry++;
duke@435 618 }
duke@435 619 }
duke@435 620 }
duke@435 621
duke@435 622 void CardTableRS::verify() {
duke@435 623 // At present, we only know how to verify the card table RS for
duke@435 624 // generational heaps.
duke@435 625 VerifyCTGenClosure blk(this);
duke@435 626 CollectedHeap* ch = Universe::heap();
duke@435 627 // We will do the perm-gen portion of the card table, too.
duke@435 628 Generation* pg = SharedHeap::heap()->perm_gen();
duke@435 629 HeapWord* pg_boundary = pg->reserved().start();
duke@435 630
duke@435 631 if (ch->kind() == CollectedHeap::GenCollectedHeap) {
duke@435 632 GenCollectedHeap::heap()->generation_iterate(&blk, false);
ysr@777 633 _ct_bs->verify();
duke@435 634
duke@435 635 // If the old gen collections also collect perm, then we are only
duke@435 636 // interested in perm-to-young pointers, not perm-to-old pointers.
duke@435 637 GenCollectedHeap* gch = GenCollectedHeap::heap();
duke@435 638 CollectorPolicy* cp = gch->collector_policy();
duke@435 639 if (cp->is_mark_sweep_policy() || cp->is_concurrent_mark_sweep_policy()) {
duke@435 640 pg_boundary = gch->get_gen(1)->reserved().start();
duke@435 641 }
duke@435 642 }
duke@435 643 VerifyCTSpaceClosure perm_space_blk(this, pg_boundary);
duke@435 644 SharedHeap::heap()->perm_gen()->space_iterate(&perm_space_blk, true);
duke@435 645 }
duke@435 646
duke@435 647
jmasa@441 648 void CardTableRS::verify_aligned_region_empty(MemRegion mr) {
duke@435 649 if (!mr.is_empty()) {
duke@435 650 jbyte* cur_entry = byte_for(mr.start());
duke@435 651 jbyte* limit = byte_after(mr.last());
jmasa@441 652 // The region mr may not start on a card boundary so
jmasa@441 653 // the first card may reflect a write to the space
jmasa@441 654 // just prior to mr.
jmasa@441 655 if (!is_aligned(mr.start())) {
jmasa@441 656 cur_entry++;
jmasa@441 657 }
duke@435 658 for (;cur_entry < limit; cur_entry++) {
duke@435 659 guarantee(*cur_entry == CardTableModRefBS::clean_card,
duke@435 660 "Unexpected dirty card found");
duke@435 661 }
duke@435 662 }
duke@435 663 }

mercurial