src/hotspot/share/gc/g1/heapRegionManager.hpp
author sangheki
Wed, 13 Nov 2019 10:51:41 -0800
changeset 59062 6530de931b8e
parent 59060 fce1fa1bdc91
permissions -rw-r--r--
8220312: Implementation: NUMA-Aware Memory Allocation for G1, Logging (3/3) Reviewed-by: kbarrett, sjohanss, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53116
diff changeset
     2
 * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     4
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     8
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    13
 * accompanied this code).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    14
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
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: 3261
diff changeset
    21
 * questions.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    22
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    23
 */
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53116
diff changeset
    25
#ifndef SHARE_GC_G1_HEAPREGIONMANAGER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53116
diff changeset
    26
#define SHARE_GC_G1_HEAPREGIONMANAGER_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: 29685
diff changeset
    28
#include "gc/g1/g1BiasedArray.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29685
diff changeset
    29
#include "gc/g1/g1RegionToSpaceMapper.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29685
diff changeset
    30
#include "gc/g1/heapRegionSet.hpp"
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 27885
diff changeset
    31
#include "services/memoryUsage.hpp"
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    32
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    33
class HeapRegion;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    34
class HeapRegionClosure;
27009
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
    35
class HeapRegionClaimer;
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    36
class FreeRegionList;
41178
e567be097315 8157952: Parallelize Memory Pretouch
tschatzl
parents: 38177
diff changeset
    37
class WorkGang;
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    38
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    39
class G1HeapRegionTable : public G1BiasedMappedArray<HeapRegion*> {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    40
 protected:
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    41
  virtual HeapRegion* default_value() const { return NULL; }
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    42
};
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    43
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    44
// This class keeps track of the actual heap memory, auxiliary data
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    45
// and its metadata (i.e., HeapRegion instances) and the list of free regions.
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    46
//
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    47
// This allows maximum flexibility for deciding what to commit or uncommit given
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    48
// a request from outside.
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    49
//
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    50
// HeapRegions are kept in the _regions array in address order. A region's
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    51
// index in the array corresponds to its index in the heap (i.e., 0 is the
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    52
// region at the bottom of the heap, 1 is the one after it, etc.). Two
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    53
// regions that are consecutive in the array should also be adjacent in the
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    54
// address space (i.e., region(i).end() == region(i+1).bottom().
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    55
//
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    56
// We create a HeapRegion when we commit the region's address space
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    57
// for the first time. When we uncommit the address space of a
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    58
// region we retain the HeapRegion to be able to re-use it in the
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    59
// future (in case we recommit it).
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    60
//
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    61
// We keep track of three lengths:
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    62
//
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    63
// * _num_committed (returned by length()) is the number of currently
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    64
//   committed regions. These may not be contiguous.
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    65
// * _allocated_heapregions_length (not exposed outside this class) is the
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    66
//   number of regions+1 for which we have HeapRegions.
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    67
// * max_length() returns the maximum number of regions the heap can have.
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    68
//
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    69
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26160
diff changeset
    70
class HeapRegionManager: public CHeapObj<mtGC> {
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents: 9989
diff changeset
    71
  friend class VMStructs;
27009
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
    72
  friend class HeapRegionClaimer;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    73
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    74
  G1RegionToSpaceMapper* _bot_mapper;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    75
  G1RegionToSpaceMapper* _cardtable_mapper;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    76
  G1RegionToSpaceMapper* _card_counts_mapper;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    77
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    78
  // Each bit in this bitmap indicates that the corresponding region is available
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    79
  // for allocation.
38177
b0c9cb06506b 8141501: Problems with BitMap buffer management
stefank
parents: 33786
diff changeset
    80
  CHeapBitMap _available_map;
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    81
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    82
   // The number of regions committed in the heap.
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    83
  uint _num_committed;
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
    84
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    85
  // Internal only. The highest heap region +1 we allocated a HeapRegion instance for.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    86
  uint _allocated_heapregions_length;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    87
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    88
  HeapWord* heap_bottom() const { return _regions.bottom_address_mapped(); }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    89
  HeapWord* heap_end() const {return _regions.end_address_mapped(); }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
    90
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    91
  // Pass down commit calls to the VirtualSpace.
41178
e567be097315 8157952: Parallelize Memory Pretouch
tschatzl
parents: 38177
diff changeset
    92
  void commit_regions(uint index, size_t num_regions = 1, WorkGang* pretouch_gang = NULL);
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    93
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    94
  // Notify other data structures about change in the heap layout.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    95
  void update_committed_space(HeapWord* old_end, HeapWord* new_end);
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
    96
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    97
  // Find a contiguous set of empty or uncommitted regions of length num and return
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26160
diff changeset
    98
  // the index of the first region or G1_NO_HRM_INDEX if the search was unsuccessful.
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
    99
  // If only_empty is true, only empty regions are considered.
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
   100
  // Searches from bottom to top of the heap, doing a first-fit.
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
   101
  uint find_contiguous(size_t num, bool only_empty);
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   102
  // Finds the next sequence of unavailable regions starting from start_idx. Returns the
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   103
  // length of the sequence found. If this result is zero, no such sequence could be found,
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   104
  // otherwise res_idx indicates the start index of these regions.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   105
  uint find_unavailable_from_idx(uint start_idx, uint* res_idx) const;
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   106
  // Finds the next sequence of empty regions starting from start_idx, going backwards in
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   107
  // the heap. Returns the length of the sequence found. If this value is zero, no
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   108
  // sequence could be found, otherwise res_idx contains the start index of this range.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   109
  uint find_empty_from_idx_reverse(uint start_idx, uint* res_idx) const;
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   110
59060
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   111
  // Checks the G1MemoryNodeManager to see if this region is on the preferred node.
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   112
  bool is_on_preferred_index(uint region_index, uint preferred_node_index);
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   113
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   114
protected:
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   115
  G1HeapRegionTable _regions;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   116
  G1RegionToSpaceMapper* _heap_mapper;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   117
  G1RegionToSpaceMapper* _prev_bitmap_mapper;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   118
  G1RegionToSpaceMapper* _next_bitmap_mapper;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   119
  FreeRegionList _free_list;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   120
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   121
  void make_regions_available(uint index, uint num_regions = 1, WorkGang* pretouch_gang = NULL);
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   122
  void uncommit_regions(uint index, size_t num_regions = 1);
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
   123
  // Allocate a new HeapRegion for the given index.
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26160
diff changeset
   124
  HeapRegion* new_heap_region(uint hrm_index);
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   125
#ifdef ASSERT
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   126
public:
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   127
  bool is_free(HeapRegion* hr) const;
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   128
#endif
52345
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   129
public:
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   130
  // Empty constructor, we'll initialize it with the initialize() method.
51496
bf6b66fa8bdf 8209700: Remove HeapRegionSetBase::RegionSetKind for a more flexible approach
tschatzl
parents: 51332
diff changeset
   131
  HeapRegionManager();
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   132
54678
93f09ca4a7f8 8198505: Remove CollectorPolicy and its subclasses
stefank
parents: 53244
diff changeset
   133
  static HeapRegionManager* create_manager(G1CollectedHeap* heap);
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   134
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   135
  virtual void initialize(G1RegionToSpaceMapper* heap_storage,
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   136
                          G1RegionToSpaceMapper* prev_bitmap,
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   137
                          G1RegionToSpaceMapper* next_bitmap,
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   138
                          G1RegionToSpaceMapper* bot,
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   139
                          G1RegionToSpaceMapper* cardtable,
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   140
                          G1RegionToSpaceMapper* card_counts);
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   141
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   142
  // Prepare heap regions before and after full collection.
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   143
  // Nothing to be done in this class.
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   144
  virtual void prepare_for_full_collection_start() {}
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   145
  virtual void prepare_for_full_collection_end() {}
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   146
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   147
  // Return the "dummy" region used for G1AllocRegion. This is currently a hardwired
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   148
  // new HeapRegion that owns HeapRegion at index 0. Since at the moment we commit
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   149
  // the heap from the lowest address, this region (and its associated data
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   150
  // structures) are available and we do not need to check further.
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   151
  virtual HeapRegion* get_dummy_region() { return new_heap_region(0); }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   152
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   153
  // Return the HeapRegion at the given index. Assume that the index
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   154
  // is valid.
12381
1438e0fbfa27 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 10663
diff changeset
   155
  inline HeapRegion* at(uint index) const;
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   156
52345
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   157
  // Return the HeapRegion at the given index, NULL if the index
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   158
  // is for an unavailable region.
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   159
  inline HeapRegion* at_or_null(uint index) const;
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   160
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   161
  // Returns whether the given region is available for allocation.
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   162
  bool is_available(uint region) const;
418fb8bb5151 8071913: Filter out entries to free/uncommitted regions during iteration
tschatzl
parents: 51496
diff changeset
   163
33786
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 32589
diff changeset
   164
  // Return the next region (by index) that is part of the same
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 32589
diff changeset
   165
  // humongous object that hr is part of.
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 32589
diff changeset
   166
  inline HeapRegion* next_region_in_humongous(HeapRegion* hr) const;
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 32589
diff changeset
   167
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   168
  // If addr is within the committed space return its corresponding
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   169
  // HeapRegion, otherwise return NULL.
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   170
  inline HeapRegion* addr_to_region(HeapWord* addr) const;
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   171
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   172
  // Insert the given region into the free region list.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   173
  inline void insert_into_free_list(HeapRegion* hr);
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   174
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   175
  // Insert the given region list into the global free region list.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   176
  void insert_list_into_free_list(FreeRegionList* list) {
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   177
    _free_list.add_ordered(list);
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   178
  }
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   179
59060
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   180
  // Allocate a free region with specific node index. If fails allocate with next node index.
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   181
  virtual HeapRegion* allocate_free_region(HeapRegionType type, uint requested_node_index);
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   182
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   183
  inline void allocate_free_regions_starting_at(uint first, uint num_regions);
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   184
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   185
  // Remove all regions from the free list.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   186
  void remove_all_free_regions() {
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   187
    _free_list.remove_all();
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   188
  }
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   189
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   190
  // Return the number of committed free regions in the heap.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   191
  uint num_free_regions() const {
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   192
    return _free_list.length();
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   193
  }
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   194
59062
6530de931b8e 8220312: Implementation: NUMA-Aware Memory Allocation for G1, Logging (3/3)
sangheki
parents: 59060
diff changeset
   195
  uint num_free_regions(uint node_index) const {
6530de931b8e 8220312: Implementation: NUMA-Aware Memory Allocation for G1, Logging (3/3)
sangheki
parents: 59060
diff changeset
   196
    return _free_list.length(node_index);
6530de931b8e 8220312: Implementation: NUMA-Aware Memory Allocation for G1, Logging (3/3)
sangheki
parents: 59060
diff changeset
   197
  }
6530de931b8e 8220312: Implementation: NUMA-Aware Memory Allocation for G1, Logging (3/3)
sangheki
parents: 59060
diff changeset
   198
47885
5caa1d5f74c1 8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents: 47216
diff changeset
   199
  size_t total_free_bytes() const {
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   200
    return num_free_regions() * HeapRegion::GrainBytes;
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   201
  }
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   202
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   203
  // Return the number of available (uncommitted) regions.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   204
  uint available() const { return max_length() - length(); }
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   205
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   206
  // Return the number of regions that have been committed in the heap.
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   207
  uint length() const { return _num_committed; }
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   208
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   209
  // Return the maximum number of regions in the heap.
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 17323
diff changeset
   210
  uint max_length() const { return (uint)_regions.length(); }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   211
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   212
  // Return maximum number of regions that heap can expand to.
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   213
  virtual uint max_expandable_length() const { return (uint)_regions.length(); }
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   214
29685
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 27885
diff changeset
   215
  MemoryUsage get_auxiliary_data_memory_usage() const;
c19484601161 8061715: gc/g1/TestShrinkAuxiliaryData15.java fails with java.lang.RuntimeException: heap decommit failed - after > before
azakharov
parents: 27885
diff changeset
   216
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   217
  MemRegion reserved() const { return MemRegion(heap_bottom(), heap_end()); }
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   218
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   219
  // Expand the sequence to reflect that the heap has grown. Either create new
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   220
  // HeapRegions, or re-use existing ones. Returns the number of regions the
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   221
  // sequence was expanded by. If a HeapRegion allocation fails, the resulting
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   222
  // number of regions might be smaller than what's desired.
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   223
  virtual uint expand_by(uint num_regions, WorkGang* pretouch_workers);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   224
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   225
  // Makes sure that the regions from start to start+num_regions-1 are available
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   226
  // for allocation. Returns the number of regions that were committed to achieve
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   227
  // this.
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   228
  virtual uint expand_at(uint start, uint num_regions, WorkGang* pretouch_workers);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   229
59060
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   230
  // Try to expand on the given node index.
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   231
  virtual uint expand_on_preferred_node(uint node_index);
fce1fa1bdc91 8220310: Implementation: NUMA-Aware Memory Allocation for G1, Mutator (1/3)
sangheki
parents: 54678
diff changeset
   232
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
   233
  // Find a contiguous set of empty regions of length num. Returns the start index of
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26160
diff changeset
   234
  // that set, or G1_NO_HRM_INDEX.
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   235
  virtual uint find_contiguous_only_empty(size_t num) { return find_contiguous(num, true); }
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 26157
diff changeset
   236
  // Find a contiguous set of empty or unavailable regions of length num. Returns the
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26160
diff changeset
   237
  // start index of that set, or G1_NO_HRM_INDEX.
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   238
  virtual uint find_contiguous_empty_or_unavailable(size_t num) { return find_contiguous(num, false); }
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   239
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   240
  HeapRegion* next_region_in_heap(const HeapRegion* r) const;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   241
31346
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   242
  // Find the highest free or uncommitted region in the reserved heap,
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   243
  // and if uncommitted, commit it. If none are available, return G1_NO_HRM_INDEX.
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   244
  // Set the 'expanded' boolean true if a new region was committed.
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   245
  virtual uint find_highest_free(bool* expanded);
31346
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   246
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   247
  // Allocate the regions that contain the address range specified, committing the
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   248
  // regions if necessary. Return false if any of the regions is already committed
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   249
  // and not free, and return the number of regions newly committed in commit_count.
42595
b1ae41a4eae9 8169703: G1 crashes with guarantee(pretouch_gang != NULL) failed: No pretouch gang specified
tschatzl
parents: 41311
diff changeset
   250
  bool allocate_containing_regions(MemRegion range, size_t* commit_count, WorkGang* pretouch_workers);
31346
a70d45c06136 8042668: GC Support for shared heap ranges in CDS
jiangli
parents: 30764
diff changeset
   251
48969
jwilhelm
parents: 48890
diff changeset
   252
  // Apply blk->do_heap_region() on all committed regions in address order,
jwilhelm
parents: 48890
diff changeset
   253
  // terminating the iteration early if do_heap_region() returns true.
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   254
  void iterate(HeapRegionClosure* blk) const;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   255
47885
5caa1d5f74c1 8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents: 47216
diff changeset
   256
  void par_iterate(HeapRegionClosure* blk, HeapRegionClaimer* hrclaimer, const uint start_index) const;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   257
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   258
  // Uncommit up to num_regions_to_remove regions that are completely free.
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   259
  // Return the actual number of uncommitted regions.
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   260
  virtual uint shrink_by(uint num_regions_to_remove);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   261
32589
f86fb16fcab0 8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents: 31346
diff changeset
   262
  // Uncommit a number of regions starting at the specified index, which must be available,
f86fb16fcab0 8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents: 31346
diff changeset
   263
  // empty, and free.
f86fb16fcab0 8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents: 31346
diff changeset
   264
  void shrink_at(uint index, size_t num_regions);
f86fb16fcab0 8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents: 31346
diff changeset
   265
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52345
diff changeset
   266
  virtual void verify();
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 24106
diff changeset
   267
9989
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   268
  // Do some sanity checking.
305a76435cf1 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 8680
diff changeset
   269
  void verify_optional() PRODUCT_RETURN;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   270
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   271
27009
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   272
// The HeapRegionClaimer is used during parallel iteration over heap regions,
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   273
// allowing workers to claim heap regions, gaining exclusive rights to these regions.
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   274
class HeapRegionClaimer : public StackObj {
41311
92d8edabd52c 8165858: heapRegionManager is missing volatile specifier for _claims.
eosterlund
parents: 41178
diff changeset
   275
  uint           _n_workers;
92d8edabd52c 8165858: heapRegionManager is missing volatile specifier for _claims.
eosterlund
parents: 41178
diff changeset
   276
  uint           _n_regions;
92d8edabd52c 8165858: heapRegionManager is missing volatile specifier for _claims.
eosterlund
parents: 41178
diff changeset
   277
  volatile uint* _claims;
27009
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   278
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   279
  static const uint Unclaimed = 0;
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   280
  static const uint Claimed   = 1;
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   281
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   282
 public:
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   283
  HeapRegionClaimer(uint n_workers);
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   284
  ~HeapRegionClaimer();
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   285
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   286
  inline uint n_regions() const {
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   287
    return _n_regions;
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   288
  }
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   289
47885
5caa1d5f74c1 8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents: 47216
diff changeset
   290
  // Return a start offset given a worker id.
5caa1d5f74c1 8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents: 47216
diff changeset
   291
  uint offset_for_worker(uint worker_id) const;
27009
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   292
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   293
  // Check if region has been claimed with this HRClaimer.
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   294
  bool is_region_claimed(uint region_index) const;
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   295
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   296
  // Claim the given region, returns true if successfully claimed.
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   297
  bool claim_region(uint region_index);
e7e723732b6b 8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents: 26316
diff changeset
   298
};
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53116
diff changeset
   299
#endif // SHARE_GC_G1_HEAPREGIONMANAGER_HPP