src/share/vm/memory/cardTableModRefBS.hpp

Fri, 20 Sep 2013 10:53:28 +0200

author
stefank
date
Fri, 20 Sep 2013 10:53:28 +0200
changeset 5769
2c022e432e10
parent 5103
f9be75d21404
child 5811
d55c004e1d4d
permissions
-rw-r--r--

8024974: Incorrect use of GC_locker::is_active()
Summary: SymbolTable and StringTable can make calls to GC_locker::is_active() outside a safepoint. This isn't safe because the GC_locker active state (lock count) is only updated at a safepoint and only remains valid as long as _needs_gc is true. However, outside a safepoint_needs_gc can change to false at any time, which makes it impossible to do a correct call to is_active() in that context. In this case these calls can just be removed since the input argument to basic_add() should never be on the heap and so there's no need to check the GC_locker state. This change also adjusts the assert() in is_active() to makes sure all calls to this function are always done under a safepoint.
Reviewed-by: brutisso, dcubed
Contributed-by: per.liden@oracle.com

duke@435 1 /*
minqi@5103 2 * Copyright (c) 2000, 2013, 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 #ifndef SHARE_VM_MEMORY_CARDTABLEMODREFBS_HPP
stefank@2314 26 #define SHARE_VM_MEMORY_CARDTABLEMODREFBS_HPP
stefank@2314 27
stefank@2314 28 #include "memory/modRefBarrierSet.hpp"
stefank@2314 29 #include "oops/oop.hpp"
stefank@2314 30 #include "oops/oop.inline2.hpp"
stefank@2314 31
duke@435 32 // This kind of "BarrierSet" allows a "CollectedHeap" to detect and
duke@435 33 // enumerate ref fields that have been modified (since the last
duke@435 34 // enumeration.)
duke@435 35
duke@435 36 // As it currently stands, this barrier is *imprecise*: when a ref field in
duke@435 37 // an object "o" is modified, the card table entry for the card containing
duke@435 38 // the head of "o" is dirtied, not necessarily the card containing the
duke@435 39 // modified field itself. For object arrays, however, the barrier *is*
duke@435 40 // precise; only the card containing the modified element is dirtied.
duke@435 41 // Any MemRegionClosures used to scan dirty cards should take these
duke@435 42 // considerations into account.
duke@435 43
duke@435 44 class Generation;
duke@435 45 class OopsInGenClosure;
duke@435 46 class DirtyCardToOopClosure;
ysr@2819 47 class ClearNoncleanCardWrapper;
duke@435 48
duke@435 49 class CardTableModRefBS: public ModRefBarrierSet {
duke@435 50 // Some classes get to look at some private stuff.
duke@435 51 friend class BytecodeInterpreter;
duke@435 52 friend class VMStructs;
duke@435 53 friend class CardTableRS;
duke@435 54 friend class CheckForUnmarkedOops; // Needs access to raw card bytes.
twisti@2047 55 friend class SharkBuilder;
duke@435 56 #ifndef PRODUCT
duke@435 57 // For debugging.
duke@435 58 friend class GuaranteeNotModClosure;
duke@435 59 #endif
duke@435 60 protected:
duke@435 61
duke@435 62 enum CardValues {
duke@435 63 clean_card = -1,
iveresov@1051 64 // The mask contains zeros in places for all other values.
iveresov@1051 65 clean_card_mask = clean_card - 31,
iveresov@1051 66
duke@435 67 dirty_card = 0,
duke@435 68 precleaned_card = 1,
iveresov@1051 69 claimed_card = 2,
iveresov@1051 70 deferred_card = 4,
iveresov@1051 71 last_card = 8,
iveresov@1051 72 CT_MR_BS_last_reserved = 16
duke@435 73 };
duke@435 74
brutisso@3642 75 // a word's worth (row) of clean card values
brutisso@3642 76 static const intptr_t clean_card_row = (intptr_t)(-1);
brutisso@3642 77
duke@435 78 // dirty and precleaned are equivalent wrt younger_refs_iter.
duke@435 79 static bool card_is_dirty_wrt_gen_iter(jbyte cv) {
duke@435 80 return cv == dirty_card || cv == precleaned_card;
duke@435 81 }
duke@435 82
duke@435 83 // Returns "true" iff the value "cv" will cause the card containing it
duke@435 84 // to be scanned in the current traversal. May be overridden by
duke@435 85 // subtypes.
duke@435 86 virtual bool card_will_be_scanned(jbyte cv) {
duke@435 87 return CardTableModRefBS::card_is_dirty_wrt_gen_iter(cv);
duke@435 88 }
duke@435 89
duke@435 90 // Returns "true" iff the value "cv" may have represented a dirty card at
duke@435 91 // some point.
duke@435 92 virtual bool card_may_have_been_dirty(jbyte cv) {
duke@435 93 return card_is_dirty_wrt_gen_iter(cv);
duke@435 94 }
duke@435 95
duke@435 96 // The declaration order of these const fields is important; see the
duke@435 97 // constructor before changing.
duke@435 98 const MemRegion _whole_heap; // the region covered by the card table
duke@435 99 const size_t _guard_index; // index of very last element in the card
duke@435 100 // table; it is set to a guard value
duke@435 101 // (last_card) and should never be modified
duke@435 102 const size_t _last_valid_index; // index of the last valid element
duke@435 103 const size_t _page_size; // page size used when mapping _byte_map
duke@435 104 const size_t _byte_map_size; // in bytes
duke@435 105 jbyte* _byte_map; // the card marking array
duke@435 106
duke@435 107 int _cur_covered_regions;
duke@435 108 // The covered regions should be in address order.
duke@435 109 MemRegion* _covered;
duke@435 110 // The committed regions correspond one-to-one to the covered regions.
duke@435 111 // They represent the card-table memory that has been committed to service
duke@435 112 // the corresponding covered region. It may be that committed region for
duke@435 113 // one covered region corresponds to a larger region because of page-size
duke@435 114 // roundings. Thus, a committed region for one covered region may
duke@435 115 // actually extend onto the card-table space for the next covered region.
duke@435 116 MemRegion* _committed;
duke@435 117
duke@435 118 // The last card is a guard card, and we commit the page for it so
duke@435 119 // we can use the card for verification purposes. We make sure we never
duke@435 120 // uncommit the MemRegion for that page.
duke@435 121 MemRegion _guard_region;
duke@435 122
duke@435 123 protected:
duke@435 124 // Initialization utilities; covered_words is the size of the covered region
duke@435 125 // in, um, words.
duke@435 126 inline size_t cards_required(size_t covered_words);
duke@435 127 inline size_t compute_byte_map_size();
duke@435 128
duke@435 129 // Finds and return the index of the region, if any, to which the given
duke@435 130 // region would be contiguous. If none exists, assign a new region and
duke@435 131 // returns its index. Requires that no more than the maximum number of
duke@435 132 // covered regions defined in the constructor are ever in use.
duke@435 133 int find_covering_region_by_base(HeapWord* base);
duke@435 134
duke@435 135 // Same as above, but finds the region containing the given address
duke@435 136 // instead of starting at a given base address.
duke@435 137 int find_covering_region_containing(HeapWord* addr);
duke@435 138
duke@435 139 // Resize one of the regions covered by the remembered set.
duke@435 140 void resize_covered_region(MemRegion new_region);
duke@435 141
duke@435 142 // Returns the leftmost end of a committed region corresponding to a
duke@435 143 // covered region before covered region "ind", or else "NULL" if "ind" is
duke@435 144 // the first covered region.
duke@435 145 HeapWord* largest_prev_committed_end(int ind) const;
duke@435 146
duke@435 147 // Returns the part of the region mr that doesn't intersect with
duke@435 148 // any committed region other than self. Used to prevent uncommitting
duke@435 149 // regions that are also committed by other regions. Also protects
duke@435 150 // against uncommitting the guard region.
duke@435 151 MemRegion committed_unique_to_self(int self, MemRegion mr) const;
duke@435 152
duke@435 153 // Mapping from address to card marking array entry
duke@435 154 jbyte* byte_for(const void* p) const {
duke@435 155 assert(_whole_heap.contains(p),
ysr@2891 156 err_msg("Attempt to access p = "PTR_FORMAT" out of bounds of "
ysr@2891 157 " card marking array's _whole_heap = ["PTR_FORMAT","PTR_FORMAT")",
ysr@2891 158 p, _whole_heap.start(), _whole_heap.end()));
duke@435 159 jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
duke@435 160 assert(result >= _byte_map && result < _byte_map + _byte_map_size,
duke@435 161 "out of bounds accessor for card marking array");
duke@435 162 return result;
duke@435 163 }
duke@435 164
duke@435 165 // The card table byte one after the card marking array
duke@435 166 // entry for argument address. Typically used for higher bounds
duke@435 167 // for loops iterating through the card table.
duke@435 168 jbyte* byte_after(const void* p) const {
duke@435 169 return byte_for(p) + 1;
duke@435 170 }
duke@435 171
duke@435 172 // Iterate over the portion of the card-table which covers the given
duke@435 173 // region mr in the given space and apply cl to any dirty sub-regions
ysr@2819 174 // of mr. Dirty cards are _not_ cleared by the iterator method itself,
ysr@2819 175 // but closures may arrange to do so on their own should they so wish.
ysr@2819 176 void non_clean_card_iterate_serial(MemRegion mr, MemRegionClosure* cl);
duke@435 177
ysr@2819 178 // A variant of the above that will operate in a parallel mode if
ysr@2819 179 // worker threads are available, and clear the dirty cards as it
ysr@2819 180 // processes them.
ysr@2889 181 // XXX ??? MemRegionClosure above vs OopsInGenClosure below XXX
ysr@2889 182 // XXX some new_dcto_cl's take OopClosure's, plus as above there are
ysr@2889 183 // some MemRegionClosures. Clean this up everywhere. XXX
ysr@2819 184 void non_clean_card_iterate_possibly_parallel(Space* sp, MemRegion mr,
ysr@2889 185 OopsInGenClosure* cl, CardTableRS* ct);
duke@435 186
ysr@2819 187 private:
ysr@2819 188 // Work method used to implement non_clean_card_iterate_possibly_parallel()
ysr@2819 189 // above in the parallel case.
ysr@2819 190 void non_clean_card_iterate_parallel_work(Space* sp, MemRegion mr,
ysr@2889 191 OopsInGenClosure* cl, CardTableRS* ct,
ysr@2819 192 int n_threads);
duke@435 193
ysr@2819 194 protected:
duke@435 195 // Dirty the bytes corresponding to "mr" (not all of which must be
duke@435 196 // covered.)
duke@435 197 void dirty_MemRegion(MemRegion mr);
duke@435 198
duke@435 199 // Clear (to clean_card) the bytes entirely contained within "mr" (not
duke@435 200 // all of which must be covered.)
duke@435 201 void clear_MemRegion(MemRegion mr);
duke@435 202
duke@435 203 // *** Support for parallel card scanning.
duke@435 204
duke@435 205 // This is an array, one element per covered region of the card table.
duke@435 206 // Each entry is itself an array, with one element per chunk in the
duke@435 207 // covered region. Each entry of these arrays is the lowest non-clean
duke@435 208 // card of the corresponding chunk containing part of an object from the
duke@435 209 // previous chunk, or else NULL.
duke@435 210 typedef jbyte* CardPtr;
duke@435 211 typedef CardPtr* CardArr;
duke@435 212 CardArr* _lowest_non_clean;
duke@435 213 size_t* _lowest_non_clean_chunk_size;
duke@435 214 uintptr_t* _lowest_non_clean_base_chunk_index;
duke@435 215 int* _last_LNC_resizing_collection;
duke@435 216
duke@435 217 // Initializes "lowest_non_clean" to point to the array for the region
duke@435 218 // covering "sp", and "lowest_non_clean_base_chunk_index" to the chunk
duke@435 219 // index of the corresponding to the first element of that array.
duke@435 220 // Ensures that these arrays are of sufficient size, allocating if necessary.
duke@435 221 // May be called by several threads concurrently.
duke@435 222 void get_LNC_array_for_space(Space* sp,
duke@435 223 jbyte**& lowest_non_clean,
duke@435 224 uintptr_t& lowest_non_clean_base_chunk_index,
duke@435 225 size_t& lowest_non_clean_chunk_size);
duke@435 226
duke@435 227 // Returns the number of chunks necessary to cover "mr".
duke@435 228 size_t chunks_to_cover(MemRegion mr) {
duke@435 229 return (size_t)(addr_to_chunk_index(mr.last()) -
duke@435 230 addr_to_chunk_index(mr.start()) + 1);
duke@435 231 }
duke@435 232
duke@435 233 // Returns the index of the chunk in a stride which
duke@435 234 // covers the given address.
duke@435 235 uintptr_t addr_to_chunk_index(const void* addr) {
duke@435 236 uintptr_t card = (uintptr_t) byte_for(addr);
ysr@2889 237 return card / ParGCCardsPerStrideChunk;
duke@435 238 }
duke@435 239
duke@435 240 // Apply cl, which must either itself apply dcto_cl or be dcto_cl,
duke@435 241 // to the cards in the stride (of n_strides) within the given space.
duke@435 242 void process_stride(Space* sp,
duke@435 243 MemRegion used,
duke@435 244 jint stride, int n_strides,
ysr@2889 245 OopsInGenClosure* cl,
ysr@2889 246 CardTableRS* ct,
duke@435 247 jbyte** lowest_non_clean,
duke@435 248 uintptr_t lowest_non_clean_base_chunk_index,
duke@435 249 size_t lowest_non_clean_chunk_size);
duke@435 250
duke@435 251 // Makes sure that chunk boundaries are handled appropriately, by
duke@435 252 // adjusting the min_done of dcto_cl, and by using a special card-table
duke@435 253 // value to indicate how min_done should be set.
duke@435 254 void process_chunk_boundaries(Space* sp,
duke@435 255 DirtyCardToOopClosure* dcto_cl,
duke@435 256 MemRegion chunk_mr,
duke@435 257 MemRegion used,
duke@435 258 jbyte** lowest_non_clean,
duke@435 259 uintptr_t lowest_non_clean_base_chunk_index,
duke@435 260 size_t lowest_non_clean_chunk_size);
duke@435 261
duke@435 262 public:
duke@435 263 // Constants
duke@435 264 enum SomePublicConstants {
duke@435 265 card_shift = 9,
duke@435 266 card_size = 1 << card_shift,
duke@435 267 card_size_in_words = card_size / sizeof(HeapWord)
duke@435 268 };
duke@435 269
ysr@777 270 static int clean_card_val() { return clean_card; }
iveresov@1051 271 static int clean_card_mask_val() { return clean_card_mask; }
ysr@777 272 static int dirty_card_val() { return dirty_card; }
ysr@777 273 static int claimed_card_val() { return claimed_card; }
ysr@777 274 static int precleaned_card_val() { return precleaned_card; }
iveresov@1051 275 static int deferred_card_val() { return deferred_card; }
ysr@777 276
duke@435 277 // For RTTI simulation.
duke@435 278 bool is_a(BarrierSet::Name bsn) {
ysr@777 279 return bsn == BarrierSet::CardTableModRef || ModRefBarrierSet::is_a(bsn);
duke@435 280 }
duke@435 281
duke@435 282 CardTableModRefBS(MemRegion whole_heap, int max_covered_regions);
minqi@5103 283 ~CardTableModRefBS();
duke@435 284
duke@435 285 // *** Barrier set functions.
duke@435 286
ysr@777 287 bool has_write_ref_pre_barrier() { return false; }
ysr@777 288
duke@435 289 // Record a reference update. Note that these versions are precise!
duke@435 290 // The scanning code has to handle the fact that the write barrier may be
duke@435 291 // either precise or imprecise. We make non-virtual inline variants of
duke@435 292 // these functions here for performance.
duke@435 293 protected:
duke@435 294 void write_ref_field_work(oop obj, size_t offset, oop newVal);
ysr@1280 295 virtual void write_ref_field_work(void* field, oop newVal);
duke@435 296 public:
duke@435 297
duke@435 298 bool has_write_ref_array_opt() { return true; }
duke@435 299 bool has_write_region_opt() { return true; }
duke@435 300
duke@435 301 inline void inline_write_region(MemRegion mr) {
duke@435 302 dirty_MemRegion(mr);
duke@435 303 }
duke@435 304 protected:
duke@435 305 void write_region_work(MemRegion mr) {
duke@435 306 inline_write_region(mr);
duke@435 307 }
duke@435 308 public:
duke@435 309
duke@435 310 inline void inline_write_ref_array(MemRegion mr) {
duke@435 311 dirty_MemRegion(mr);
duke@435 312 }
duke@435 313 protected:
duke@435 314 void write_ref_array_work(MemRegion mr) {
duke@435 315 inline_write_ref_array(mr);
duke@435 316 }
duke@435 317 public:
duke@435 318
duke@435 319 bool is_aligned(HeapWord* addr) {
duke@435 320 return is_card_aligned(addr);
duke@435 321 }
duke@435 322
duke@435 323 // *** Card-table-barrier-specific things.
duke@435 324
ysr@1280 325 template <class T> inline void inline_write_ref_field_pre(T* field, oop newVal) {}
ysr@777 326
ysr@1280 327 template <class T> inline void inline_write_ref_field(T* field, oop newVal) {
ysr@1280 328 jbyte* byte = byte_for((void*)field);
duke@435 329 *byte = dirty_card;
duke@435 330 }
duke@435 331
ysr@777 332 // These are used by G1, when it uses the card table as a temporary data
ysr@777 333 // structure for card claiming.
ysr@777 334 bool is_card_dirty(size_t card_index) {
ysr@777 335 return _byte_map[card_index] == dirty_card_val();
ysr@777 336 }
ysr@777 337
ysr@777 338 void mark_card_dirty(size_t card_index) {
ysr@777 339 _byte_map[card_index] = dirty_card_val();
ysr@777 340 }
ysr@777 341
ysr@777 342 bool is_card_claimed(size_t card_index) {
iveresov@1051 343 jbyte val = _byte_map[card_index];
iveresov@1051 344 return (val & (clean_card_mask_val() | claimed_card_val())) == claimed_card_val();
ysr@777 345 }
ysr@777 346
iveresov@1696 347 void set_card_claimed(size_t card_index) {
iveresov@1696 348 jbyte val = _byte_map[card_index];
iveresov@1696 349 if (val == clean_card_val()) {
iveresov@1696 350 val = (jbyte)claimed_card_val();
iveresov@1696 351 } else {
iveresov@1696 352 val |= (jbyte)claimed_card_val();
iveresov@1696 353 }
iveresov@1696 354 _byte_map[card_index] = val;
iveresov@1696 355 }
iveresov@1696 356
ysr@777 357 bool claim_card(size_t card_index);
ysr@777 358
ysr@777 359 bool is_card_clean(size_t card_index) {
ysr@777 360 return _byte_map[card_index] == clean_card_val();
ysr@777 361 }
ysr@777 362
iveresov@1051 363 bool is_card_deferred(size_t card_index) {
iveresov@1051 364 jbyte val = _byte_map[card_index];
iveresov@1051 365 return (val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val();
iveresov@1051 366 }
iveresov@1051 367
iveresov@1051 368 bool mark_card_deferred(size_t card_index);
iveresov@1051 369
duke@435 370 // Card marking array base (adjusted for heap low boundary)
duke@435 371 // This would be the 0th element of _byte_map, if the heap started at 0x0.
duke@435 372 // But since the heap starts at some higher address, this points to somewhere
duke@435 373 // before the beginning of the actual _byte_map.
duke@435 374 jbyte* byte_map_base;
duke@435 375
duke@435 376 // Return true if "p" is at the start of a card.
duke@435 377 bool is_card_aligned(HeapWord* p) {
duke@435 378 jbyte* pcard = byte_for(p);
duke@435 379 return (addr_for(pcard) == p);
duke@435 380 }
duke@435 381
tonyp@2715 382 HeapWord* align_to_card_boundary(HeapWord* p) {
tonyp@2715 383 jbyte* pcard = byte_for(p + card_size_in_words - 1);
tonyp@2715 384 return addr_for(pcard);
tonyp@2715 385 }
tonyp@2715 386
duke@435 387 // The kinds of precision a CardTableModRefBS may offer.
duke@435 388 enum PrecisionStyle {
duke@435 389 Precise,
duke@435 390 ObjHeadPreciseArray
duke@435 391 };
duke@435 392
duke@435 393 // Tells what style of precision this card table offers.
duke@435 394 PrecisionStyle precision() {
duke@435 395 return ObjHeadPreciseArray; // Only one supported for now.
duke@435 396 }
duke@435 397
duke@435 398 // ModRefBS functions.
ysr@777 399 virtual void invalidate(MemRegion mr, bool whole_heap = false);
duke@435 400 void clear(MemRegion mr);
ysr@777 401 void dirty(MemRegion mr);
duke@435 402
duke@435 403 // *** Card-table-RemSet-specific things.
duke@435 404
duke@435 405 // Invoke "cl.do_MemRegion" on a set of MemRegions that collectively
duke@435 406 // includes all the modified cards (expressing each card as a
duke@435 407 // MemRegion). Thus, several modified cards may be lumped into one
duke@435 408 // region. The regions are non-overlapping, and are visited in
duke@435 409 // *decreasing* address order. (This order aids with imprecise card
duke@435 410 // marking, where a dirty card may cause scanning, and summarization
duke@435 411 // marking, of objects that extend onto subsequent cards.)
ysr@2788 412 void mod_card_iterate(MemRegionClosure* cl) {
ysr@2819 413 non_clean_card_iterate_serial(_whole_heap, cl);
duke@435 414 }
duke@435 415
duke@435 416 // Like the "mod_cards_iterate" above, except only invokes the closure
duke@435 417 // for cards within the MemRegion "mr" (which is required to be
duke@435 418 // card-aligned and sized.)
ysr@2788 419 void mod_card_iterate(MemRegion mr, MemRegionClosure* cl) {
ysr@2819 420 non_clean_card_iterate_serial(mr, cl);
duke@435 421 }
duke@435 422
duke@435 423 static uintx ct_max_alignment_constraint();
duke@435 424
ysr@777 425 // Apply closure "cl" to the dirty cards containing some part of
ysr@777 426 // MemRegion "mr".
ysr@777 427 void dirty_card_iterate(MemRegion mr, MemRegionClosure* cl);
duke@435 428
duke@435 429 // Return the MemRegion corresponding to the first maximal run
ysr@777 430 // of dirty cards lying completely within MemRegion mr.
ysr@777 431 // If reset is "true", then sets those card table entries to the given
ysr@777 432 // value.
ysr@777 433 MemRegion dirty_card_range_after_reset(MemRegion mr, bool reset,
ysr@777 434 int reset_val);
duke@435 435
ysr@777 436 // Provide read-only access to the card table array.
ysr@777 437 const jbyte* byte_for_const(const void* p) const {
ysr@777 438 return byte_for(p);
ysr@777 439 }
ysr@777 440 const jbyte* byte_after_const(const void* p) const {
ysr@777 441 return byte_after(p);
ysr@777 442 }
ysr@777 443
ysr@777 444 // Mapping from card marking array entry to address of first word
ysr@777 445 HeapWord* addr_for(const jbyte* p) const {
ysr@777 446 assert(p >= _byte_map && p < _byte_map + _byte_map_size,
ysr@777 447 "out of bounds access to card marking array");
ysr@777 448 size_t delta = pointer_delta(p, byte_map_base, sizeof(jbyte));
ysr@777 449 HeapWord* result = (HeapWord*) (delta << card_shift);
ysr@777 450 assert(_whole_heap.contains(result),
ysr@2891 451 err_msg("Returning result = "PTR_FORMAT" out of bounds of "
ysr@2891 452 " card marking array's _whole_heap = ["PTR_FORMAT","PTR_FORMAT")",
ysr@2891 453 result, _whole_heap.start(), _whole_heap.end()));
ysr@777 454 return result;
ysr@777 455 }
ysr@777 456
duke@435 457 // Mapping from address to card marking array index.
swamyv@924 458 size_t index_for(void* p) {
duke@435 459 assert(_whole_heap.contains(p),
ysr@2891 460 err_msg("Attempt to access p = "PTR_FORMAT" out of bounds of "
ysr@2891 461 " card marking array's _whole_heap = ["PTR_FORMAT","PTR_FORMAT")",
ysr@2891 462 p, _whole_heap.start(), _whole_heap.end()));
duke@435 463 return byte_for(p) - _byte_map;
duke@435 464 }
duke@435 465
iveresov@1051 466 const jbyte* byte_for_index(const size_t card_index) const {
iveresov@1051 467 return _byte_map + card_index;
iveresov@1051 468 }
iveresov@1051 469
never@3687 470 // Print a description of the memory for the barrier set
never@3687 471 virtual void print_on(outputStream* st) const;
never@3687 472
duke@435 473 void verify();
duke@435 474 void verify_guard();
duke@435 475
tonyp@2849 476 // val_equals -> it will check that all cards covered by mr equal val
tonyp@2849 477 // !val_equals -> it will check that all cards covered by mr do not equal val
tonyp@2849 478 void verify_region(MemRegion mr, jbyte val, bool val_equals) PRODUCT_RETURN;
tonyp@2849 479 void verify_not_dirty_region(MemRegion mr) PRODUCT_RETURN;
apetrusenko@1375 480 void verify_dirty_region(MemRegion mr) PRODUCT_RETURN;
duke@435 481
duke@435 482 static size_t par_chunk_heapword_alignment() {
ysr@2889 483 return ParGCCardsPerStrideChunk * card_size_in_words;
duke@435 484 }
ysr@777 485
duke@435 486 };
duke@435 487
duke@435 488 class CardTableRS;
duke@435 489
duke@435 490 // A specialization for the CardTableRS gen rem set.
duke@435 491 class CardTableModRefBSForCTRS: public CardTableModRefBS {
duke@435 492 CardTableRS* _rs;
duke@435 493 protected:
duke@435 494 bool card_will_be_scanned(jbyte cv);
duke@435 495 bool card_may_have_been_dirty(jbyte cv);
duke@435 496 public:
duke@435 497 CardTableModRefBSForCTRS(MemRegion whole_heap,
duke@435 498 int max_covered_regions) :
duke@435 499 CardTableModRefBS(whole_heap, max_covered_regions) {}
duke@435 500
duke@435 501 void set_CTRS(CardTableRS* rs) { _rs = rs; }
duke@435 502 };
stefank@2314 503
ysr@2819 504
stefank@2314 505 #endif // SHARE_VM_MEMORY_CARDTABLEMODREFBS_HPP

mercurial