hotspot/src/share/vm/gc/shared/cardTableRS.hpp
author jwilhelm
Wed, 17 Jun 2015 14:44:54 +0200
changeset 31358 693058672cc6
parent 30870 3050fdcdc60b
child 31964 d34ad1715d96
permissions -rw-r--r--
8077842: Remove the level parameter passed around in GenCollectedHeap Reviewed-by: kbarrett, mgerdin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27898
diff changeset
     2
 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1388
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1388
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: 1388
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: 27898
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_CARDTABLERS_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27898
diff changeset
    26
#define SHARE_VM_GC_SHARED_CARDTABLERS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27898
diff changeset
    28
#include "gc/shared/cardTableModRefBS.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27898
diff changeset
    29
#include "gc/shared/genRemSet.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/memRegion.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class Space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class OopsInGenClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// This kind of "GenRemSet" uses a card table both as shared data structure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// for a mod ref barrier set and for the rem set information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class CardTableRS: public GenRemSet {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // Below are private classes used in impl.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class VerifyCTSpaceClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class ClearNoncleanCardWrapper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  static jbyte clean_card_val() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    return CardTableModRefBS::clean_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
12118
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 9624
diff changeset
    48
  static intptr_t clean_card_row() {
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 9624
diff changeset
    49
    return CardTableModRefBS::clean_card_row;
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 9624
diff changeset
    50
  }
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 9624
diff changeset
    51
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  card_is_dirty_wrt_gen_iter(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    return CardTableModRefBS::card_is_dirty_wrt_gen_iter(cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    57
  CardTableModRefBSForCTRS* _ct_bs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
30870
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
    59
  virtual void younger_refs_in_space_iterate(Space* sp, OopsInGenClosure* cl, uint n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  void verify_space(Space* s, HeapWord* gen_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  enum ExtendedCardValue {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    youngergen_card   = CardTableModRefBS::CT_MR_BS_last_reserved + 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    // These are for parallel collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    // There are three P (parallel) youngergen card values.  In general, this
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    // needs to be more than the number of generations (including the perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    // gen) that might have younger_refs_do invoked on them separately.  So
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    // if we add more gens, we have to add more values.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    youngergenP1_card  = CardTableModRefBS::CT_MR_BS_last_reserved + 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    youngergenP2_card  = CardTableModRefBS::CT_MR_BS_last_reserved + 3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    youngergenP3_card  = CardTableModRefBS::CT_MR_BS_last_reserved + 4,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    cur_youngergen_and_prev_nonclean_card =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      CardTableModRefBS::CT_MR_BS_last_reserved + 5
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // An array that contains, for each generation, the card table value last
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // used as the current value for a younger_refs_do iteration of that
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30870
diff changeset
    79
  // portion of the table. The perm gen is index 0. The young gen is index 1,
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30870
diff changeset
    80
  // but will always have the value "clean_card". The old gen is index 2.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  jbyte* _last_cur_val_in_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  jbyte _cur_youngergen_card_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
27687
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22548
diff changeset
    85
  // Number of generations, plus one for lingering PermGen issues in CardTableRS.
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22548
diff changeset
    86
  static const int _regions_to_iterate = 3;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    87
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  jbyte cur_youngergen_card_val() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    return _cur_youngergen_card_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  void set_cur_youngergen_card_val(jbyte v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _cur_youngergen_card_val = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  bool is_prev_youngergen_card_val(jbyte v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    return
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      youngergen_card <= v &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      v < cur_youngergen_and_prev_nonclean_card &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      v != _cur_youngergen_card_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Return a youngergen_card_value that is not currently in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  jbyte find_unused_youngergenP_card_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
public:
27687
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22548
diff changeset
   104
  CardTableRS(MemRegion whole_heap);
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
   105
  ~CardTableRS();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // *** GenRemSet functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  CardTableRS* as_CardTableRS() { return this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   110
  CardTableModRefBS* ct_bs() { return _ct_bs; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void prepare_for_younger_refs_iterate(bool parallel);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Card table entries are cleared before application; "blk" is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // responsible for dirtying if the oop is still older-to-younger after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // closure application.
30870
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   118
  void younger_refs_iterate(Generation* g, OopsInGenClosure* blk, uint n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   120
  void inline_write_ref_field_gc(void* field, oop new_val) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   121
    jbyte* byte = _ct_bs->byte_for(field);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    *byte = youngergen_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   124
  void write_ref_field_gc_work(void* field, oop new_val) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    inline_write_ref_field_gc(field, new_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Override.  Might want to devirtualize this in the same fashion as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // above.  Ensures that the value of the card for field says that it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // a younger card in the current collection.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   131
  virtual void write_ref_field_gc_par(void* field, oop new_val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  void resize_covered_region(MemRegion new_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  bool is_aligned(HeapWord* addr) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   136
    return _ct_bs->is_card_aligned(addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   141
  void clear(MemRegion mr) { _ct_bs->clear(mr); }
19289
213031f03f61 8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents: 19286
diff changeset
   142
  void clear_into_younger(Generation* old_gen);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   144
  void invalidate(MemRegion mr, bool whole_heap = false) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   145
    _ct_bs->invalidate(mr, whole_heap);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   146
  }
19289
213031f03f61 8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents: 19286
diff changeset
   147
  void invalidate_or_clear(Generation* old_gen);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  static uintx ct_max_alignment_constraint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    return CardTableModRefBS::ct_max_alignment_constraint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   153
  jbyte* byte_for(void* p)     { return _ct_bs->byte_for(p); }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   154
  jbyte* byte_after(void* p)   { return _ct_bs->byte_after(p); }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   155
  HeapWord* addr_for(jbyte* p) { return _ct_bs->addr_for(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  bool is_prev_nonclean_card_val(jbyte v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      youngergen_card <= v &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      v <= cur_youngergen_and_prev_nonclean_card &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
      v != _cur_youngergen_card_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static bool youngergen_may_have_been_dirty(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    return cv == CardTableRS::cur_youngergen_and_prev_nonclean_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   169
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   170
class ClearNoncleanCardWrapper: public MemRegionClosure {
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9336
diff changeset
   171
  DirtyCardToOopClosure* _dirty_card_closure;
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   172
  CardTableRS* _ct;
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   173
  bool _is_par;
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   174
private:
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   175
  // Clears the given card, return true if the corresponding card should be
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   176
  // processed.
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   177
  inline bool clear_card(jbyte* entry);
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   178
  // Work methods called by the clear_card()
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   179
  inline bool clear_card_serial(jbyte* entry);
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   180
  inline bool clear_card_parallel(jbyte* entry);
12118
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 9624
diff changeset
   181
  // check alignment of pointer
36458db4ccf5 7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents: 9624
diff changeset
   182
  bool is_word_aligned(jbyte* entry);
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   183
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   184
public:
30870
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   185
  ClearNoncleanCardWrapper(DirtyCardToOopClosure* dirty_card_closure, CardTableRS* ct, bool is_par);
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   186
  void do_MemRegion(MemRegion mr);
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   187
};
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 7397
diff changeset
   188
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27898
diff changeset
   189
#endif // SHARE_VM_GC_SHARED_CARDTABLERS_HPP