hotspot/src/share/vm/gc/shared/cardTableModRefBS.hpp
author pliden
Wed, 13 May 2015 15:16:06 +0200
changeset 30764 fec48bf5a827
parent 29805 hotspot/src/share/vm/memory/cardTableModRefBS.hpp@398335f2abed
child 30870 3050fdcdc60b
permissions -rw-r--r--
8079792: GC directory structure cleanup Reviewed-by: brutisso, stefank, david
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
     2
 * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4902
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4902
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4902
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29805
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29805
diff changeset
    26
#define SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29805
diff changeset
    28
#include "gc/shared/modRefBarrierSet.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    29
#include "oops/oop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// This kind of "BarrierSet" allows a "CollectedHeap" to detect and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// enumerate ref fields that have been modified (since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// enumeration.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// As it currently stands, this barrier is *imprecise*: when a ref field in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// an object "o" is modified, the card table entry for the card containing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// the head of "o" is dirtied, not necessarily the card containing the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// modified field itself.  For object arrays, however, the barrier *is*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// precise; only the card containing the modified element is dirtied.
29805
398335f2abed 8076241: Remove unused methods mod_card_iterate() and non_clean_card_iterate_serial()
brutisso
parents: 29325
diff changeset
    40
// Closures used to scan dirty cards should take these
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// considerations into account.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class Generation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class OopsInGenClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class DirtyCardToOopClosure;
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
    46
class ClearNoncleanCardWrapper;
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28830
diff changeset
    47
class CardTableRS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class CardTableModRefBS: public ModRefBarrierSet {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Some classes get to look at some private stuff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  friend class BytecodeInterpreter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  friend class CardTableRS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  friend class CheckForUnmarkedOops; // Needs access to raw card bytes.
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    55
  friend class SharkBuilder;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // For debugging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  friend class GuaranteeNotModClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  enum CardValues {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    clean_card                  = -1,
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    64
    // The mask contains zeros in places for all other values.
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    65
    clean_card_mask             = clean_card - 31,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    66
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    dirty_card                  =  0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    precleaned_card             =  1,
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    69
    claimed_card                =  2,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    70
    deferred_card               =  4,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    71
    last_card                   =  8,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    72
    CT_MR_BS_last_reserved      = 16
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
12118
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 11177
diff changeset
    75
  // a word's worth (row) of clean card values
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 11177
diff changeset
    76
  static const intptr_t clean_card_row = (intptr_t)(-1);
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 11177
diff changeset
    77
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // dirty and precleaned are equivalent wrt younger_refs_iter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static bool card_is_dirty_wrt_gen_iter(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    return cv == dirty_card || cv == precleaned_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Returns "true" iff the value "cv" will cause the card containing it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // to be scanned in the current traversal.  May be overridden by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // subtypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  virtual bool card_will_be_scanned(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    return CardTableModRefBS::card_is_dirty_wrt_gen_iter(cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Returns "true" iff the value "cv" may have represented a dirty card at
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // some point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  virtual bool card_may_have_been_dirty(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    return card_is_dirty_wrt_gen_iter(cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // The declaration order of these const fields is important; see the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // constructor before changing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  const MemRegion _whole_heap;       // the region covered by the card table
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
    99
  size_t          _guard_index;      // index of very last element in the card
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                                     // table; it is set to a guard value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                                     // (last_card) and should never be modified
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   102
  size_t          _last_valid_index; // index of the last valid element
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  const size_t    _page_size;        // page size used when mapping _byte_map
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   104
  size_t          _byte_map_size;    // in bytes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  jbyte*          _byte_map;         // the card marking array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  int _cur_covered_regions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // The covered regions should be in address order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  MemRegion* _covered;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // The committed regions correspond one-to-one to the covered regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // They represent the card-table memory that has been committed to service
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // the corresponding covered region.  It may be that committed region for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // one covered region corresponds to a larger region because of page-size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // roundings.  Thus, a committed region for one covered region may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // actually extend onto the card-table space for the next covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  MemRegion* _committed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // The last card is a guard card, and we commit the page for it so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // we can use the card for verification purposes. We make sure we never
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // uncommit the MemRegion for that page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  MemRegion _guard_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Initialization utilities; covered_words is the size of the covered region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // in, um, words.
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   126
  inline size_t cards_required(size_t covered_words) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   127
    // Add one for a guard card, used to detect errors.
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   128
    const size_t words = align_size_up(covered_words, card_size_in_words);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   129
    return words / card_size_in_words + 1;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   130
  }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   131
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  inline size_t compute_byte_map_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // Finds and return the index of the region, if any, to which the given
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // region would be contiguous.  If none exists, assign a new region and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // returns its index.  Requires that no more than the maximum number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // covered regions defined in the constructor are ever in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  int find_covering_region_by_base(HeapWord* base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Same as above, but finds the region containing the given address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // instead of starting at a given base address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  int find_covering_region_containing(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Resize one of the regions covered by the remembered set.
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   145
  virtual void resize_covered_region(MemRegion new_region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Returns the leftmost end of a committed region corresponding to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // covered region before covered region "ind", or else "NULL" if "ind" is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // the first covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  HeapWord* largest_prev_committed_end(int ind) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Returns the part of the region mr that doesn't intersect with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // any committed region other than self.  Used to prevent uncommitting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // regions that are also committed by other regions.  Also protects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // against uncommitting the guard region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  MemRegion committed_unique_to_self(int self, MemRegion mr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Mapping from address to card marking array entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  jbyte* byte_for(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    assert(_whole_heap.contains(p),
9626
f3e12dc58265 7043891: CMS: assert(_whole_heap.contains(p)) failed: out of bounds access to card marking array
ysr
parents: 9624
diff changeset
   161
           err_msg("Attempt to access p = "PTR_FORMAT" out of bounds of "
f3e12dc58265 7043891: CMS: assert(_whole_heap.contains(p)) failed: out of bounds access to card marking array
ysr
parents: 9624
diff changeset
   162
                   " card marking array's _whole_heap = ["PTR_FORMAT","PTR_FORMAT")",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22859
diff changeset
   163
                   p2i(p), p2i(_whole_heap.start()), p2i(_whole_heap.end())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    assert(result >= _byte_map && result < _byte_map + _byte_map_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
           "out of bounds accessor for card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // The card table byte one after the card marking array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // entry for argument address. Typically used for higher bounds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // for loops iterating through the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  jbyte* byte_after(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    return byte_for(p) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // Iterate over the portion of the card-table which covers the given
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // region mr in the given space and apply cl to any dirty sub-regions
29805
398335f2abed 8076241: Remove unused methods mod_card_iterate() and non_clean_card_iterate_serial()
brutisso
parents: 29325
diff changeset
   179
  // of mr. Clears the dirty cards as they are processed.
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   180
  void non_clean_card_iterate_possibly_parallel(Space* sp, MemRegion mr,
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   181
                                                OopsInGenClosure* cl, CardTableRS* ct);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   183
 private:
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   184
  // Work method used to implement non_clean_card_iterate_possibly_parallel()
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   185
  // above in the parallel case.
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   186
  void non_clean_card_iterate_parallel_work(Space* sp, MemRegion mr,
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   187
                                            OopsInGenClosure* cl, CardTableRS* ct,
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   188
                                            int n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   190
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // Dirty the bytes corresponding to "mr" (not all of which must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // covered.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void dirty_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Clear (to clean_card) the bytes entirely contained within "mr" (not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // all of which must be covered.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void clear_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // *** Support for parallel card scanning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // This is an array, one element per covered region of the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // Each entry is itself an array, with one element per chunk in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // covered region.  Each entry of these arrays is the lowest non-clean
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // card of the corresponding chunk containing part of an object from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // previous chunk, or else NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  typedef jbyte*  CardPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  typedef CardPtr* CardArr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  CardArr* _lowest_non_clean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  size_t*  _lowest_non_clean_chunk_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  uintptr_t* _lowest_non_clean_base_chunk_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  int* _last_LNC_resizing_collection;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // Initializes "lowest_non_clean" to point to the array for the region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // covering "sp", and "lowest_non_clean_base_chunk_index" to the chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // index of the corresponding to the first element of that array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // Ensures that these arrays are of sufficient size, allocating if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // May be called by several threads concurrently.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void get_LNC_array_for_space(Space* sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
                               jbyte**& lowest_non_clean,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                               uintptr_t& lowest_non_clean_base_chunk_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                               size_t& lowest_non_clean_chunk_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Returns the number of chunks necessary to cover "mr".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  size_t chunks_to_cover(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return (size_t)(addr_to_chunk_index(mr.last()) -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
                    addr_to_chunk_index(mr.start()) + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // Returns the index of the chunk in a stride which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // covers the given address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  uintptr_t addr_to_chunk_index(const void* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    uintptr_t card = (uintptr_t) byte_for(addr);
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   233
    return card / ParGCCardsPerStrideChunk;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // Apply cl, which must either itself apply dcto_cl or be dcto_cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // to the cards in the stride (of n_strides) within the given space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void process_stride(Space* sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                      MemRegion used,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                      jint stride, int n_strides,
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   241
                      OopsInGenClosure* cl,
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   242
                      CardTableRS* ct,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
                      jbyte** lowest_non_clean,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
                      uintptr_t lowest_non_clean_base_chunk_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
                      size_t lowest_non_clean_chunk_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // Makes sure that chunk boundaries are handled appropriately, by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // adjusting the min_done of dcto_cl, and by using a special card-table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  // value to indicate how min_done should be set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  void process_chunk_boundaries(Space* sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
                                DirtyCardToOopClosure* dcto_cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                                MemRegion chunk_mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
                                MemRegion used,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
                                jbyte** lowest_non_clean,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                                uintptr_t lowest_non_clean_base_chunk_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                                size_t    lowest_non_clean_chunk_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // Constants
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  enum SomePublicConstants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    card_shift                  = 9,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    card_size                   = 1 << card_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    card_size_in_words          = card_size / sizeof(HeapWord)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   266
  static int clean_card_val()      { return clean_card; }
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   267
  static int clean_card_mask_val() { return clean_card_mask; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   268
  static int dirty_card_val()      { return dirty_card; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   269
  static int claimed_card_val()    { return claimed_card; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   270
  static int precleaned_card_val() { return precleaned_card; }
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   271
  static int deferred_card_val()   { return deferred_card; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   272
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   273
  virtual void initialize();
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   274
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // *** Barrier set functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   277
  bool has_write_ref_pre_barrier() { return false; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   278
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
   279
protected:
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
   280
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   281
  CardTableModRefBS(MemRegion whole_heap, const BarrierSet::FakeRtti& fake_rtti);
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
   282
  ~CardTableModRefBS();
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
   283
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // Record a reference update. Note that these versions are precise!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // The scanning code has to handle the fact that the write barrier may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // either precise or imprecise. We make non-virtual inline variants of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // these functions here for performance.
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
   288
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  void write_ref_field_work(oop obj, size_t offset, oop newVal);
22859
7b88983393b7 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 20309
diff changeset
   290
  virtual void write_ref_field_work(void* field, oop newVal, bool release = false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  bool has_write_ref_array_opt() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  bool has_write_region_opt() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  inline void inline_write_region(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    dirty_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void write_region_work(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    inline_write_region(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  inline void inline_write_ref_array(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    dirty_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  void write_ref_array_work(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    inline_write_ref_array(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  bool is_aligned(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    return is_card_aligned(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // *** Card-table-barrier-specific things.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2154
diff changeset
   320
  template <class T> inline void inline_write_ref_field_pre(T* field, oop newVal) {}
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   321
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28830
diff changeset
   322
  template <class T> inline void inline_write_ref_field(T* field, oop newVal, bool release);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   324
  // These are used by G1, when it uses the card table as a temporary data
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   325
  // structure for card claiming.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   326
  bool is_card_dirty(size_t card_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   327
    return _byte_map[card_index] == dirty_card_val();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   328
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   329
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   330
  void mark_card_dirty(size_t card_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   331
    _byte_map[card_index] = dirty_card_val();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   332
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   333
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   334
  bool is_card_clean(size_t card_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   335
    return _byte_map[card_index] == clean_card_val();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   336
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   337
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // Card marking array base (adjusted for heap low boundary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // This would be the 0th element of _byte_map, if the heap started at 0x0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // But since the heap starts at some higher address, this points to somewhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // before the beginning of the actual _byte_map.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  jbyte* byte_map_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // Return true if "p" is at the start of a card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  bool is_card_aligned(HeapWord* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    jbyte* pcard = byte_for(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    return (addr_for(pcard) == p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   350
  HeapWord* align_to_card_boundary(HeapWord* p) {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   351
    jbyte* pcard = byte_for(p + card_size_in_words - 1);
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   352
    return addr_for(pcard);
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   353
  }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   354
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // The kinds of precision a CardTableModRefBS may offer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  enum PrecisionStyle {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    Precise,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    ObjHeadPreciseArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // Tells what style of precision this card table offers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  PrecisionStyle precision() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    return ObjHeadPreciseArray; // Only one supported for now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // ModRefBS functions.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   367
  virtual void invalidate(MemRegion mr, bool whole_heap = false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  void clear(MemRegion mr);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   369
  void dirty(MemRegion mr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // *** Card-table-RemSet-specific things.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  static uintx ct_max_alignment_constraint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   375
  // Apply closure "cl" to the dirty cards containing some part of
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   376
  // MemRegion "mr".
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   377
  void dirty_card_iterate(MemRegion mr, MemRegionClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // Return the MemRegion corresponding to the first maximal run
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   380
  // of dirty cards lying completely within MemRegion mr.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   381
  // If reset is "true", then sets those card table entries to the given
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   382
  // value.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   383
  MemRegion dirty_card_range_after_reset(MemRegion mr, bool reset,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   384
                                         int reset_val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   386
  // Provide read-only access to the card table array.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   387
  const jbyte* byte_for_const(const void* p) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   388
    return byte_for(p);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   389
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   390
  const jbyte* byte_after_const(const void* p) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   391
    return byte_after(p);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   392
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   393
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   394
  // Mapping from card marking array entry to address of first word
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   395
  HeapWord* addr_for(const jbyte* p) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   396
    assert(p >= _byte_map && p < _byte_map + _byte_map_size,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   397
           "out of bounds access to card marking array");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   398
    size_t delta = pointer_delta(p, byte_map_base, sizeof(jbyte));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   399
    HeapWord* result = (HeapWord*) (delta << card_shift);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   400
    assert(_whole_heap.contains(result),
9626
f3e12dc58265 7043891: CMS: assert(_whole_heap.contains(p)) failed: out of bounds access to card marking array
ysr
parents: 9624
diff changeset
   401
           err_msg("Returning result = "PTR_FORMAT" out of bounds of "
f3e12dc58265 7043891: CMS: assert(_whole_heap.contains(p)) failed: out of bounds access to card marking array
ysr
parents: 9624
diff changeset
   402
                   " card marking array's _whole_heap = ["PTR_FORMAT","PTR_FORMAT")",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22859
diff changeset
   403
                   p2i(result), p2i(_whole_heap.start()), p2i(_whole_heap.end())));
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   404
    return result;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   405
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   406
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // Mapping from address to card marking array index.
1676
d80e69372634 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 1388
diff changeset
   408
  size_t index_for(void* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    assert(_whole_heap.contains(p),
9626
f3e12dc58265 7043891: CMS: assert(_whole_heap.contains(p)) failed: out of bounds access to card marking array
ysr
parents: 9624
diff changeset
   410
           err_msg("Attempt to access p = "PTR_FORMAT" out of bounds of "
f3e12dc58265 7043891: CMS: assert(_whole_heap.contains(p)) failed: out of bounds access to card marking array
ysr
parents: 9624
diff changeset
   411
                   " card marking array's _whole_heap = ["PTR_FORMAT","PTR_FORMAT")",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22859
diff changeset
   412
                   p2i(p), p2i(_whole_heap.start()), p2i(_whole_heap.end())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    return byte_for(p) - _byte_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   416
  const jbyte* byte_for_index(const size_t card_index) const {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   417
    return _byte_map + card_index;
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   418
  }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   419
12268
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 12118
diff changeset
   420
  // Print a description of the memory for the barrier set
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 12118
diff changeset
   421
  virtual void print_on(outputStream* st) const;
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 12118
diff changeset
   422
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  void verify_guard();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   426
  // val_equals -> it will check that all cards covered by mr equal val
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   427
  // !val_equals -> it will check that all cards covered by mr do not equal val
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   428
  void verify_region(MemRegion mr, jbyte val, bool val_equals) PRODUCT_RETURN;
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   429
  void verify_not_dirty_region(MemRegion mr) PRODUCT_RETURN;
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3262
diff changeset
   430
  void verify_dirty_region(MemRegion mr) PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   433
template<>
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   434
struct BarrierSet::GetName<CardTableModRefBS> {
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   435
  static const BarrierSet::Name value = BarrierSet::CardTableModRef;
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   436
};
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   437
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
class CardTableRS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
// A specialization for the CardTableRS gen rem set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
class CardTableModRefBSForCTRS: public CardTableModRefBS {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  CardTableRS* _rs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  bool card_will_be_scanned(jbyte cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  bool card_may_have_been_dirty(jbyte cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
public:
27687
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 26160
diff changeset
   447
  CardTableModRefBSForCTRS(MemRegion whole_heap) :
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   448
    CardTableModRefBS(
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   449
      whole_heap,
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   450
      // Concrete tag should be BarrierSet::CardTableForRS.
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   451
      // That will presently break things in a bunch of places though.
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   452
      // The concrete tag is used as a dispatch key in many places, and
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   453
      // CardTableForRS does not correctly dispatch in some of those
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   454
      // uses. This will be addressed as part of a reorganization of the
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   455
      // BarrierSet hierarchy.
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   456
      BarrierSet::FakeRtti(BarrierSet::CardTableModRef, 0).add_tag(BarrierSet::CardTableForRS))
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   457
    {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  void set_CTRS(CardTableRS* rs) { _rs = rs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   461
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   462
template<>
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   463
struct BarrierSet::GetName<CardTableModRefBSForCTRS> {
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   464
  static const BarrierSet::Name value = BarrierSet::CardTableForRS;
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   465
};
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   466
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   467
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29805
diff changeset
   468
#endif // SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_HPP