hotspot/src/share/vm/memory/cardTableModRefBS.hpp
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
child 1374 4c24294029a9
permissions -rw-r--r--
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// This kind of "BarrierSet" allows a "CollectedHeap" to detect and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// enumerate ref fields that have been modified (since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// enumeration.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// As it currently stands, this barrier is *imprecise*: when a ref field in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// an object "o" is modified, the card table entry for the card containing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// the head of "o" is dirtied, not necessarily the card containing the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// modified field itself.  For object arrays, however, the barrier *is*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// precise; only the card containing the modified element is dirtied.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Any MemRegionClosures used to scan dirty cards should take these
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// considerations into account.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class Generation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class OopsInGenClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class DirtyCardToOopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class CardTableModRefBS: public ModRefBarrierSet {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // Some classes get to look at some private stuff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  friend class BytecodeInterpreter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  friend class CardTableRS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  friend class CheckForUnmarkedOops; // Needs access to raw card bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // For debugging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  friend class GuaranteeNotModClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  enum CardValues {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    clean_card                  = -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    dirty_card                  =  0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    precleaned_card             =  1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    last_card                   =  4,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    CT_MR_BS_last_reserved      = 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // dirty and precleaned are equivalent wrt younger_refs_iter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static bool card_is_dirty_wrt_gen_iter(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    return cv == dirty_card || cv == precleaned_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Returns "true" iff the value "cv" will cause the card containing it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // to be scanned in the current traversal.  May be overridden by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // subtypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  virtual bool card_will_be_scanned(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    return CardTableModRefBS::card_is_dirty_wrt_gen_iter(cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Returns "true" iff the value "cv" may have represented a dirty card at
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // some point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  virtual bool card_may_have_been_dirty(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    return card_is_dirty_wrt_gen_iter(cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // The declaration order of these const fields is important; see the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // constructor before changing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  const MemRegion _whole_heap;       // the region covered by the card table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  const size_t    _guard_index;      // index of very last element in the card
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                                     // table; it is set to a guard value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                     // (last_card) and should never be modified
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  const size_t    _last_valid_index; // index of the last valid element
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  const size_t    _page_size;        // page size used when mapping _byte_map
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  const size_t    _byte_map_size;    // in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  jbyte*          _byte_map;         // the card marking array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  int _cur_covered_regions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // The covered regions should be in address order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  MemRegion* _covered;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // The committed regions correspond one-to-one to the covered regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // They represent the card-table memory that has been committed to service
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // the corresponding covered region.  It may be that committed region for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // one covered region corresponds to a larger region because of page-size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // roundings.  Thus, a committed region for one covered region may
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // actually extend onto the card-table space for the next covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  MemRegion* _committed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // The last card is a guard card, and we commit the page for it so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // we can use the card for verification purposes. We make sure we never
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // uncommit the MemRegion for that page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  MemRegion _guard_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Initialization utilities; covered_words is the size of the covered region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // in, um, words.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  inline size_t cards_required(size_t covered_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  inline size_t compute_byte_map_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Finds and return the index of the region, if any, to which the given
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // region would be contiguous.  If none exists, assign a new region and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // returns its index.  Requires that no more than the maximum number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // covered regions defined in the constructor are ever in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  int find_covering_region_by_base(HeapWord* base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Same as above, but finds the region containing the given address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // instead of starting at a given base address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  int find_covering_region_containing(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Resize one of the regions covered by the remembered set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  void resize_covered_region(MemRegion new_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Returns the leftmost end of a committed region corresponding to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // covered region before covered region "ind", or else "NULL" if "ind" is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // the first covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  HeapWord* largest_prev_committed_end(int ind) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Returns the part of the region mr that doesn't intersect with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // any committed region other than self.  Used to prevent uncommitting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // regions that are also committed by other regions.  Also protects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // against uncommitting the guard region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  MemRegion committed_unique_to_self(int self, MemRegion mr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Mapping from address to card marking array entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  jbyte* byte_for(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    assert(_whole_heap.contains(p),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
           "out of bounds access to card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    assert(result >= _byte_map && result < _byte_map + _byte_map_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
           "out of bounds accessor for card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // The card table byte one after the card marking array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // entry for argument address. Typically used for higher bounds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // for loops iterating through the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  jbyte* byte_after(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    return byte_for(p) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Mapping from card marking array entry to address of first word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  HeapWord* addr_for(const jbyte* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    assert(p >= _byte_map && p < _byte_map + _byte_map_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
           "out of bounds access to card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    size_t delta = pointer_delta(p, byte_map_base, sizeof(jbyte));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    HeapWord* result = (HeapWord*) (delta << card_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    assert(_whole_heap.contains(result),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
           "out of bounds accessor from card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Iterate over the portion of the card-table which covers the given
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // region mr in the given space and apply cl to any dirty sub-regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // of mr. cl and dcto_cl must either be the same closure or cl must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // wrap dcto_cl. Both are required - neither may be NULL. Also, dcto_cl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // may be modified. Note that this function will operate in a parallel
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // mode if worker threads are available.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  void non_clean_card_iterate(Space* sp, MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                              DirtyCardToOopClosure* dcto_cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
                              MemRegionClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
                              bool clear);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Utility function used to implement the other versions below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void non_clean_card_iterate_work(MemRegion mr, MemRegionClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                                   bool clear);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  void par_non_clean_card_iterate_work(Space* sp, MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
                                       DirtyCardToOopClosure* dcto_cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
                                       MemRegionClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
                                       bool clear,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                                       int n_threads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // Dirty the bytes corresponding to "mr" (not all of which must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // covered.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void dirty_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // Clear (to clean_card) the bytes entirely contained within "mr" (not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // all of which must be covered.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  void clear_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // *** Support for parallel card scanning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  enum SomeConstantsForParallelism {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    StridesPerThread    = 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    CardsPerStrideChunk = 256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // This is an array, one element per covered region of the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Each entry is itself an array, with one element per chunk in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // covered region.  Each entry of these arrays is the lowest non-clean
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // card of the corresponding chunk containing part of an object from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // previous chunk, or else NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  typedef jbyte*  CardPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  typedef CardPtr* CardArr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  CardArr* _lowest_non_clean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  size_t*  _lowest_non_clean_chunk_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  uintptr_t* _lowest_non_clean_base_chunk_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  int* _last_LNC_resizing_collection;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Initializes "lowest_non_clean" to point to the array for the region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // covering "sp", and "lowest_non_clean_base_chunk_index" to the chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // index of the corresponding to the first element of that array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Ensures that these arrays are of sufficient size, allocating if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // May be called by several threads concurrently.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void get_LNC_array_for_space(Space* sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
                               jbyte**& lowest_non_clean,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
                               uintptr_t& lowest_non_clean_base_chunk_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                               size_t& lowest_non_clean_chunk_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // Returns the number of chunks necessary to cover "mr".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  size_t chunks_to_cover(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    return (size_t)(addr_to_chunk_index(mr.last()) -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
                    addr_to_chunk_index(mr.start()) + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Returns the index of the chunk in a stride which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // covers the given address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  uintptr_t addr_to_chunk_index(const void* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    uintptr_t card = (uintptr_t) byte_for(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    return card / CardsPerStrideChunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // Apply cl, which must either itself apply dcto_cl or be dcto_cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // to the cards in the stride (of n_strides) within the given space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  void process_stride(Space* sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                      MemRegion used,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                      jint stride, int n_strides,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                      DirtyCardToOopClosure* dcto_cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
                      MemRegionClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
                      bool clear,
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // For RTTI simulation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  BarrierSet::Name kind() { return BarrierSet::CardTableModRef; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  bool is_a(BarrierSet::Name bsn) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    return bsn == BarrierSet::CardTableModRef || bsn == BarrierSet::ModRef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  CardTableModRefBS(MemRegion whole_heap, int max_covered_regions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // *** Barrier set functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   276
  inline bool write_ref_needs_barrier(void* field, oop new_val) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    // Note that this assumes the perm gen is the highest generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    // in the address space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    return new_val != NULL && !new_val->is_perm();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // Record a reference update. Note that these versions are precise!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // The scanning code has to handle the fact that the write barrier may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // either precise or imprecise. We make non-virtual inline variants of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // these functions here for performance.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  void write_ref_field_work(oop obj, size_t offset, oop newVal);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   288
  void write_ref_field_work(void* field, oop newVal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  bool has_write_ref_array_opt() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  bool has_write_region_opt() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  inline void inline_write_region(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    dirty_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  void write_region_work(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    inline_write_region(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  inline void inline_write_ref_array(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    dirty_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  void write_ref_array_work(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    inline_write_ref_array(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  bool is_aligned(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    return is_card_aligned(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // *** Card-table-barrier-specific things.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   318
  inline void inline_write_ref_field(void* field, oop newVal) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    jbyte* byte = byte_for(field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    *byte = dirty_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // Card marking array base (adjusted for heap low boundary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // This would be the 0th element of _byte_map, if the heap started at 0x0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // But since the heap starts at some higher address, this points to somewhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // before the beginning of the actual _byte_map.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  jbyte* byte_map_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // Return true if "p" is at the start of a card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  bool is_card_aligned(HeapWord* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    jbyte* pcard = byte_for(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    return (addr_for(pcard) == p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // The kinds of precision a CardTableModRefBS may offer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  enum PrecisionStyle {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    Precise,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    ObjHeadPreciseArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // Tells what style of precision this card table offers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  PrecisionStyle precision() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    return ObjHeadPreciseArray; // Only one supported for now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // ModRefBS functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  void invalidate(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  void clear(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  void mod_oop_in_space_iterate(Space* sp, OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
                                bool clear = false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
                                bool before_save_marks = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // *** Card-table-RemSet-specific things.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // Invoke "cl.do_MemRegion" on a set of MemRegions that collectively
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // includes all the modified cards (expressing each card as a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // MemRegion).  Thus, several modified cards may be lumped into one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // region.  The regions are non-overlapping, and are visited in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // *decreasing* address order.  (This order aids with imprecise card
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // marking, where a dirty card may cause scanning, and summarization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // marking, of objects that extend onto subsequent cards.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // If "clear" is true, the card is (conceptually) marked unmodified before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // applying the closure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  void mod_card_iterate(MemRegionClosure* cl, bool clear = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    non_clean_card_iterate_work(_whole_heap, cl, clear);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // Like the "mod_cards_iterate" above, except only invokes the closure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // for cards within the MemRegion "mr" (which is required to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // card-aligned and sized.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  void mod_card_iterate(MemRegion mr, MemRegionClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
                        bool clear = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    non_clean_card_iterate_work(mr, cl, clear);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  static uintx ct_max_alignment_constraint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // Apply closure cl to the dirty cards lying completely
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // within MemRegion mr, setting the cards to precleaned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  void      dirty_card_iterate(MemRegion mr, MemRegionClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // Return the MemRegion corresponding to the first maximal run
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // of dirty cards lying completely within MemRegion mr, after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // marking those cards precleaned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  MemRegion dirty_card_range_after_preclean(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // Set all the dirty cards in the given region to precleaned state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void preclean_dirty_cards(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // Mapping from address to card marking array index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  int index_for(void* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    assert(_whole_heap.contains(p),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
           "out of bounds access to card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    return byte_for(p) - _byte_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  void verify_guard();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  void verify_clean_region(MemRegion mr) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  static size_t par_chunk_heapword_alignment() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    return CardsPerStrideChunk * card_size_in_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
class CardTableRS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// A specialization for the CardTableRS gen rem set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
class CardTableModRefBSForCTRS: public CardTableModRefBS {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  CardTableRS* _rs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  bool card_will_be_scanned(jbyte cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  bool card_may_have_been_dirty(jbyte cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  CardTableModRefBSForCTRS(MemRegion whole_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
                           int max_covered_regions) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    CardTableModRefBS(whole_heap, max_covered_regions) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  void set_CTRS(CardTableRS* rs) { _rs = rs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
};