src/hotspot/share/gc/shared/cardTableModRefBS.hpp
author pliden
Fri, 16 Feb 2018 12:18:09 +0100
changeset 49007 82d9d5744e5f
parent 48961 120b61d50f85
child 49164 7e958a8ebcd3
permissions -rw-r--r--
8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS Reviewed-by: tschatzl, eosterlund
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
     2
 * Copyright (c) 2000, 2018, 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"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    29
#include "utilities/align.hpp"
7397
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 CardTableModRefBS: public ModRefBarrierSet {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Some classes get to look at some private stuff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  enum CardValues {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    clean_card                  = -1,
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    50
    // 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
    51
    clean_card_mask             = clean_card - 31,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    52
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    dirty_card                  =  0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    precleaned_card             =  1,
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    55
    claimed_card                =  2,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    56
    deferred_card               =  4,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    57
    last_card                   =  8,
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
    58
    CT_MR_BS_last_reserved      = 16
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
    61
  // Used in support of ReduceInitialCardMarks; only consulted if COMPILER2
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
    62
  // or INCLUDE_JVMCI is being used
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
    63
  bool _defer_initial_card_mark;
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
    64
12118
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 11177
diff changeset
    65
  // 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
    66
  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
    67
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // The declaration order of these const fields is important; see the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // constructor before changing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  const MemRegion _whole_heap;       // the region covered by the card table
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
    71
  size_t          _guard_index;      // index of very last element in the card
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                     // table; it is set to a guard value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                     // (last_card) and should never be modified
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
    74
  size_t          _last_valid_index; // index of the last valid element
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  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
    76
  size_t          _byte_map_size;    // in bytes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  jbyte*          _byte_map;         // the card marking array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
47658
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    79
  // Some barrier sets create tables whose elements correspond to parts of
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    80
  // the heap; the CardTableModRefBS is an example.  Such barrier sets will
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    81
  // normally reserve space for such tables, and commit parts of the table
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    82
  // "covering" parts of the heap that are committed. At most one covered
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    83
  // region per generation is needed.
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    84
  static const int _max_covered_regions = 2;
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    85
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  int _cur_covered_regions;
47658
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
    87
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // The covered regions should be in address order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  MemRegion* _covered;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // The committed regions correspond one-to-one to the covered regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // They represent the card-table memory that has been committed to service
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // the corresponding covered region.  It may be that committed region for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // one covered region corresponds to a larger region because of page-size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // roundings.  Thus, a committed region for one covered region may
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // actually extend onto the card-table space for the next covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  MemRegion* _committed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // The last card is a guard card, and we commit the page for it so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // we can use the card for verification purposes. We make sure we never
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // uncommit the MemRegion for that page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  MemRegion _guard_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  inline size_t compute_byte_map_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Finds and return the index of the region, if any, to which the given
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // region would be contiguous.  If none exists, assign a new region and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // returns its index.  Requires that no more than the maximum number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // covered regions defined in the constructor are ever in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  int find_covering_region_by_base(HeapWord* base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Same as above, but finds the region containing the given address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // instead of starting at a given base address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  int find_covering_region_containing(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Resize one of the regions covered by the remembered set.
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   116
  virtual void resize_covered_region(MemRegion new_region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Returns the leftmost end of a committed region corresponding to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // covered region before covered region "ind", or else "NULL" if "ind" is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // the first covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  HeapWord* largest_prev_committed_end(int ind) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Returns the part of the region mr that doesn't intersect with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // any committed region other than self.  Used to prevent uncommitting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // regions that are also committed by other regions.  Also protects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // against uncommitting the guard region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  MemRegion committed_unique_to_self(int self, MemRegion mr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Mapping from address to card marking array entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  jbyte* byte_for(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    assert(_whole_heap.contains(p),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   132
           "Attempt to access p = " PTR_FORMAT " out of bounds of "
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   133
           " card marking array's _whole_heap = [" PTR_FORMAT "," PTR_FORMAT ")",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   134
           p2i(p), p2i(_whole_heap.start()), p2i(_whole_heap.end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    assert(result >= _byte_map && result < _byte_map + _byte_map_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
           "out of bounds accessor for card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // The card table byte one after the card marking array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // entry for argument address. Typically used for higher bounds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // for loops iterating through the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  jbyte* byte_after(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    return byte_for(p) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Dirty the bytes corresponding to "mr" (not all of which must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // covered.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void dirty_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Clear (to clean_card) the bytes entirely contained within "mr" (not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // all of which must be covered.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void clear_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
47658
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
   156
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Constants
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  enum SomePublicConstants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    card_shift                  = 9,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    card_size                   = 1 << card_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    card_size_in_words          = card_size / sizeof(HeapWord)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   164
  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
   165
  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
   166
  static int dirty_card_val()      { return dirty_card; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   167
  static int claimed_card_val()    { return claimed_card; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   168
  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
   169
  static int deferred_card_val()   { return deferred_card; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   170
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   171
  virtual void initialize();
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   172
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // *** Barrier set functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
37233
e8e674469545 8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents: 33105
diff changeset
   175
  // Initialization utilities; covered_words is the size of the covered region
e8e674469545 8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents: 33105
diff changeset
   176
  // in, um, words.
e8e674469545 8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents: 33105
diff changeset
   177
  inline size_t cards_required(size_t covered_words) {
e8e674469545 8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents: 33105
diff changeset
   178
    // Add one for a guard card, used to detect errors.
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   179
    const size_t words = align_up(covered_words, card_size_in_words);
37233
e8e674469545 8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents: 33105
diff changeset
   180
    return words / card_size_in_words + 1;
e8e674469545 8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents: 33105
diff changeset
   181
  }
e8e674469545 8152176: Big ParGCCardsPerStrideChunk values can cause overflow for CMS GC
sangheki
parents: 33105
diff changeset
   182
47658
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
   183
 protected:
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   184
  CardTableModRefBS(MemRegion whole_heap, const BarrierSet::FakeRtti& fake_rtti);
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
   185
  ~CardTableModRefBS();
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27899
diff changeset
   186
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   187
 public:
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   188
  void write_region(MemRegion mr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    dirty_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
47658
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
   192
 protected:
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
   193
  void write_ref_array_work(MemRegion mr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    dirty_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
47658
c2b7fb8e5144 8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents: 47216
diff changeset
   197
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  bool is_aligned(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    return is_card_aligned(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // *** Card-table-barrier-specific things.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   204
  // Record a reference update. Note that these versions are precise!
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   205
  // The scanning code has to handle the fact that the write barrier may be
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   206
  // either precise or imprecise. We make non-virtual inline variants of
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   207
  // these functions here for performance.
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   208
  template <DecoratorSet decorators, typename T>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   209
  void write_ref_field_post(T* field, oop newVal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   211
  // 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
   212
  // structure for card claiming.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   213
  bool is_card_dirty(size_t card_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   214
    return _byte_map[card_index] == dirty_card_val();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   215
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   216
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   217
  void mark_card_dirty(size_t card_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   218
    _byte_map[card_index] = dirty_card_val();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   219
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   220
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   221
  bool is_card_clean(size_t card_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   222
    return _byte_map[card_index] == clean_card_val();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   223
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   224
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Card marking array base (adjusted for heap low boundary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // This would be the 0th element of _byte_map, if the heap started at 0x0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // But since the heap starts at some higher address, this points to somewhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // before the beginning of the actual _byte_map.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  jbyte* byte_map_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // Return true if "p" is at the start of a card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  bool is_card_aligned(HeapWord* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    jbyte* pcard = byte_for(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    return (addr_for(pcard) == p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   237
  HeapWord* align_to_card_boundary(HeapWord* p) {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   238
    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
   239
    return addr_for(pcard);
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   240
  }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents: 7397
diff changeset
   241
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // The kinds of precision a CardTableModRefBS may offer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  enum PrecisionStyle {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    Precise,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    ObjHeadPreciseArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // Tells what style of precision this card table offers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  PrecisionStyle precision() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    return ObjHeadPreciseArray; // Only one supported for now.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // ModRefBS functions.
42598
45562c0473fb 8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents: 37233
diff changeset
   254
  virtual void invalidate(MemRegion mr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  void clear(MemRegion mr);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   256
  void dirty(MemRegion mr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // *** Card-table-RemSet-specific things.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  static uintx ct_max_alignment_constraint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   262
  // 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
   263
  // MemRegion "mr".
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   264
  void dirty_card_iterate(MemRegion mr, MemRegionClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Return the MemRegion corresponding to the first maximal run
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   267
  // of dirty cards lying completely within MemRegion mr.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   268
  // 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
   269
  // value.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   270
  MemRegion dirty_card_range_after_reset(MemRegion mr, bool reset,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   271
                                         int reset_val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   273
  // Provide read-only access to the card table array.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   274
  const jbyte* byte_for_const(const void* p) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   275
    return byte_for(p);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   276
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   277
  const jbyte* byte_after_const(const void* p) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   278
    return byte_after(p);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   279
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   280
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   281
  // 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
   282
  HeapWord* addr_for(const jbyte* p) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   283
    assert(p >= _byte_map && p < _byte_map + _byte_map_size,
46618
d503911aa948 8178489: Make align functions more type safe and consistent
stefank
parents: 42598
diff changeset
   284
           "out of bounds access to card marking array. p: " PTR_FORMAT
d503911aa948 8178489: Make align functions more type safe and consistent
stefank
parents: 42598
diff changeset
   285
           " _byte_map: " PTR_FORMAT " _byte_map + _byte_map_size: " PTR_FORMAT,
d503911aa948 8178489: Make align functions more type safe and consistent
stefank
parents: 42598
diff changeset
   286
           p2i(p), p2i(_byte_map), p2i(_byte_map + _byte_map_size));
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   287
    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
   288
    HeapWord* result = (HeapWord*) (delta << card_shift);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   289
    assert(_whole_heap.contains(result),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   290
           "Returning result = " PTR_FORMAT " out of bounds of "
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   291
           " card marking array's _whole_heap = [" PTR_FORMAT "," PTR_FORMAT ")",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   292
           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
   293
    return result;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   294
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   295
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // Mapping from address to card marking array index.
1676
d80e69372634 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 1388
diff changeset
   297
  size_t index_for(void* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    assert(_whole_heap.contains(p),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   299
           "Attempt to access p = " PTR_FORMAT " out of bounds of "
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   300
           " card marking array's _whole_heap = [" PTR_FORMAT "," PTR_FORMAT ")",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32612
diff changeset
   301
           p2i(p), p2i(_whole_heap.start()), p2i(_whole_heap.end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    return byte_for(p) - _byte_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   305
  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
   306
    return _byte_map + card_index;
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   307
  }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 1676
diff changeset
   308
12268
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 12118
diff changeset
   309
  // Print a description of the memory for the barrier set
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 12118
diff changeset
   310
  virtual void print_on(outputStream* st) const;
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 12118
diff changeset
   311
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  void verify_guard();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   315
  // 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
   316
  // !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
   317
  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
   318
  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
   319
  void verify_dirty_region(MemRegion mr) PRODUCT_RETURN;
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   320
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   321
  // ReduceInitialCardMarks
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   322
  void initialize_deferred_card_mark_barriers();
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   323
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   324
  // If the CollectedHeap was asked to defer a store barrier above,
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   325
  // this informs it to flush such a deferred store barrier to the
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   326
  // remembered set.
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   327
  void flush_deferred_card_mark_barrier(JavaThread* thread);
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   328
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   329
  // Can a compiler initialize a new object without store barriers?
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   330
  // This permission only extends from the creation of a new object
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   331
  // via a TLAB up to the first subsequent safepoint. If such permission
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   332
  // is granted for this heap type, the compiler promises to call
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   333
  // defer_store_barrier() below on any slow path allocation of
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   334
  // a new object for which such initializing store barriers will
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   335
  // have been elided. G1, like CMS, allows this, but should be
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   336
  // ready to provide a compensating write barrier as necessary
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   337
  // if that storage came out of a non-young region. The efficiency
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   338
  // of this implementation depends crucially on being able to
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   339
  // answer very efficiently in constant time whether a piece of
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   340
  // storage in the heap comes from a young region or not.
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   341
  // See ReduceInitialCardMarks.
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   342
  virtual bool can_elide_tlab_store_barriers() const {
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   343
    return true;
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   344
  }
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   345
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   346
  // If a compiler is eliding store barriers for TLAB-allocated objects,
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   347
  // we will be informed of a slow-path allocation by a call
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   348
  // to on_slowpath_allocation_exit() below. Such a call precedes the
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   349
  // initialization of the object itself, and no post-store-barriers will
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   350
  // be issued. Some heap types require that the barrier strictly follows
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   351
  // the initializing stores. (This is currently implemented by deferring the
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   352
  // barrier until the next slow-path allocation or gc-related safepoint.)
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   353
  // This interface answers whether a particular barrier type needs the card
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   354
  // mark to be thus strictly sequenced after the stores.
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   355
  virtual bool card_mark_must_follow_store() const = 0;
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   356
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   357
  virtual bool is_in_young(oop obj) const = 0;
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   358
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   359
  virtual void on_slowpath_allocation_exit(JavaThread* thread, oop new_obj);
49007
82d9d5744e5f 8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS
pliden
parents: 48961
diff changeset
   360
  virtual void on_thread_detach(JavaThread* thread);
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   361
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   362
  virtual void make_parsable(JavaThread* thread) { flush_deferred_card_mark_barrier(thread); }
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47998
diff changeset
   363
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   364
  template <DecoratorSet decorators, typename BarrierSetT = CardTableModRefBS>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   365
  class AccessBarrier: public ModRefBarrierSet::AccessBarrier<decorators, BarrierSetT> {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   368
template<>
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   369
struct BarrierSet::GetName<CardTableModRefBS> {
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   370
  static const BarrierSet::Name value = BarrierSet::CardTableModRef;
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   371
};
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   372
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   373
template<>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   374
struct BarrierSet::GetType<BarrierSet::CardTableModRef> {
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   375
  typedef CardTableModRefBS type;
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47658
diff changeset
   376
};
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   377
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29805
diff changeset
   378
#endif // SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_HPP