src/hotspot/share/gc/g1/g1InCSetState.hpp
author egahlin
Tue, 15 May 2018 20:24:34 +0200
changeset 50113 caf115bb98ad
parent 49621 5ef28d560b6f
child 52897 495c05ee2a9a
permissions -rw-r--r--
8199712: Flight Recorder Reviewed-by: coleenp, ihse, erikj, dsamersoff, mseledtsov, egahlin, mgronlun Contributed-by: erik.gahlin@oracle.com, markus.gronlund@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     1
/*
49621
5ef28d560b6f 8200276: Cleanup allocation.hpp includes
coleenp
parents: 49337
diff changeset
     2
 * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     4
 *
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     8
 *
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    14
 *
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    18
 *
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    21
 * questions.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    22
 *
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    23
 */
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29470
diff changeset
    25
#ifndef SHARE_VM_GC_G1_G1INCSETSTATE_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29470
diff changeset
    26
#define SHARE_VM_GC_G1_G1INCSETSTATE_HPP
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29470
diff changeset
    28
#include "gc/g1/g1BiasedArray.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29470
diff changeset
    29
#include "gc/g1/heapRegion.hpp"
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    30
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    31
// Per-region state during garbage collection.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    32
struct InCSetState {
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    33
 public:
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    34
  // We use different types to represent the state value. Particularly SPARC puts
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    35
  // values in structs from "left to right", i.e. MSB to LSB. This results in many
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    36
  // unnecessary shift operations when loading and storing values of this type.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    37
  // This degrades performance significantly (>10%) on that platform.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    38
  // Other tested ABIs do not seem to have this problem, and actually tend to
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    39
  // favor smaller types, so we use the smallest usable type there.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    40
#ifdef SPARC
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    41
  #define CSETSTATE_FORMAT INTPTR_FORMAT
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    42
  typedef intptr_t in_cset_state_t;
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    43
#else
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    44
  #define CSETSTATE_FORMAT "%d"
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    45
  typedef int8_t in_cset_state_t;
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    46
#endif
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    47
 private:
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    48
  in_cset_state_t _value;
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    49
 public:
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    50
  enum {
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    51
    // Selection of the values were driven to micro-optimize the encoding and
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    52
    // frequency of the checks.
33228
9a491d1be90f 8135078: Refactor InCSetState::is_in_cset_or_humongous
ehelin
parents: 33105
diff changeset
    53
    // The most common check is whether the region is in the collection set or not,
9a491d1be90f 8135078: Refactor InCSetState::is_in_cset_or_humongous
ehelin
parents: 33105
diff changeset
    54
    // this encoding allows us to use an > 0 check.
35051
002d874a4284 8144714: Add extension point to G1 evacuation closures
mgerdin
parents: 33228
diff changeset
    55
    // The positive values are encoded in increasing generation order, which
002d874a4284 8144714: Add extension point to G1 evacuation closures
mgerdin
parents: 33228
diff changeset
    56
    // makes getting the next generation fast by a simple increment. They are also
002d874a4284 8144714: Add extension point to G1 evacuation closures
mgerdin
parents: 33228
diff changeset
    57
    // used to index into arrays.
002d874a4284 8144714: Add extension point to G1 evacuation closures
mgerdin
parents: 33228
diff changeset
    58
    // The negative values are used for objects requiring various special cases,
002d874a4284 8144714: Add extension point to G1 evacuation closures
mgerdin
parents: 33228
diff changeset
    59
    // for example eager reclamation of humongous objects.
33228
9a491d1be90f 8135078: Refactor InCSetState::is_in_cset_or_humongous
ehelin
parents: 33105
diff changeset
    60
    Humongous    = -1,    // The region is humongous
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    61
    NotInCSet    =  0,    // The region is not in the collection set.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    62
    Young        =  1,    // The region is in the collection set and a young region.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    63
    Old          =  2,    // The region is in the collection set and an old region.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    64
    Num
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    65
  };
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    66
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    67
  InCSetState(in_cset_state_t value = NotInCSet) : _value(value) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    68
    assert(is_valid(), "Invalid state %d", _value);
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    69
  }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    70
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    71
  in_cset_state_t value() const        { return _value; }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    72
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    73
  void set_old()                       { _value = Old; }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    74
33228
9a491d1be90f 8135078: Refactor InCSetState::is_in_cset_or_humongous
ehelin
parents: 33105
diff changeset
    75
  bool is_in_cset_or_humongous() const { return is_in_cset() || is_humongous(); }
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    76
  bool is_in_cset() const              { return _value > NotInCSet; }
33228
9a491d1be90f 8135078: Refactor InCSetState::is_in_cset_or_humongous
ehelin
parents: 33105
diff changeset
    77
9a491d1be90f 8135078: Refactor InCSetState::is_in_cset_or_humongous
ehelin
parents: 33105
diff changeset
    78
  bool is_humongous() const            { return _value == Humongous; }
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    79
  bool is_young() const                { return _value == Young; }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    80
  bool is_old() const                  { return _value == Old; }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    81
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    82
#ifdef ASSERT
35051
002d874a4284 8144714: Add extension point to G1 evacuation closures
mgerdin
parents: 33228
diff changeset
    83
  bool is_default() const              { return _value == NotInCSet; }
49337
e4fdca451542 8197847: Remove unused file g1ParScanThreadState_ext.cpp
ehelin
parents: 47216
diff changeset
    84
  bool is_valid() const                { return (_value >= Humongous) && (_value < Num); }
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    85
  bool is_valid_gen() const            { return (_value >= Young && _value <= Old); }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    86
#endif
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    87
};
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    88
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    89
// Instances of this class are used for quick tests on whether a reference points
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    90
// into the collection set and into which generation or is a humongous object
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    91
//
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    92
// Each of the array's elements indicates whether the corresponding region is in
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    93
// the collection set and if so in which generation, or a humongous region.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    94
//
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    95
// We use this to speed up reference processing during young collection and
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    96
// quickly reclaim humongous objects. For the latter, by making a humongous region
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    97
// succeed this test, we sort-of add it to the collection set. During the reference
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    98
// iteration closures, when we see a humongous region, we then simply mark it as
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
    99
// referenced, i.e. live.
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   100
class G1InCSetStateFastTestBiasedMappedArray : public G1BiasedMappedArray<InCSetState> {
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   101
 protected:
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   102
  InCSetState default_value() const { return InCSetState::NotInCSet; }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   103
 public:
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   104
  void set_humongous(uintptr_t index) {
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   105
    assert(get_by_index(index).is_default(),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
   106
           "State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value());
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   107
    set_by_index(index, InCSetState::Humongous);
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   108
  }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   109
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   110
  void clear_humongous(uintptr_t index) {
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   111
    set_by_index(index, InCSetState::NotInCSet);
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   112
  }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   113
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   114
  void set_in_young(uintptr_t index) {
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   115
    assert(get_by_index(index).is_default(),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
   116
           "State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value());
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   117
    set_by_index(index, InCSetState::Young);
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   118
  }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   119
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   120
  void set_in_old(uintptr_t index) {
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   121
    assert(get_by_index(index).is_default(),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
   122
           "State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value());
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   123
    set_by_index(index, InCSetState::Old);
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   124
  }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   125
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   126
  bool is_in_cset_or_humongous(HeapWord* addr) const { return at(addr).is_in_cset_or_humongous(); }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   127
  bool is_in_cset(HeapWord* addr) const { return at(addr).is_in_cset(); }
29470
e34bbcd36e53 8030646: track collection set membership in one place
ehelin
parents: 28213
diff changeset
   128
  bool is_in_cset(const HeapRegion* hr) const { return get_by_index(hr->hrm_index()).is_in_cset(); }
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   129
  InCSetState at(HeapWord* addr) const { return get_by_address(addr); }
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   130
  void clear() { G1BiasedMappedArray<InCSetState>::clear(); }
29470
e34bbcd36e53 8030646: track collection set membership in one place
ehelin
parents: 28213
diff changeset
   131
  void clear(const HeapRegion* hr) { return set_by_index(hr->hrm_index(), InCSetState::NotInCSet); }
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   132
};
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
diff changeset
   133
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29470
diff changeset
   134
#endif // SHARE_VM_GC_G1_G1INCSETSTATE_HPP