heapRegionSeq.hpp 5.9 KB
Newer Older
1
/*
2
 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
22 23 24
 *
 */

25 26 27
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP
#define SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP

28 29
#include "gc_implementation/g1/g1BiasedArray.hpp"

30 31
class HeapRegion;
class HeapRegionClosure;
32 33
class FreeRegionList;

34 35 36 37 38
class G1HeapRegionTable : public G1BiasedMappedArray<HeapRegion*> {
 protected:
   virtual HeapRegion* default_value() const { return NULL; }
};

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
// This class keeps track of the region metadata (i.e., HeapRegion
// instances). They are kept in the _regions array in address
// order. A region's index in the array corresponds to its index in
// the heap (i.e., 0 is the region at the bottom of the heap, 1 is
// the one after it, etc.). Two regions that are consecutive in the
// array should also be adjacent in the address space (i.e.,
// region(i).end() == region(i+1).bottom().
//
// We create a HeapRegion when we commit the region's address space
// for the first time. When we uncommit the address space of a
// region we retain the HeapRegion to be able to re-use it in the
// future (in case we recommit it).
//
// We keep track of three lengths:
//
54
// * _committed_length (returned by length()) is the number of currently
55 56 57
//   committed regions.
// * _allocated_length (not exposed outside this class) is the
//   number of regions for which we have HeapRegions.
58
// * max_length() returns the maximum number of regions the heap can have.
59
//
60
// and maintain that: _committed_length <= _allocated_length <= max_length()
61

Z
zgu 已提交
62
class HeapRegionSeq: public CHeapObj<mtGC> {
T
tonyp 已提交
63
  friend class VMStructs;
64

65
  G1HeapRegionTable _regions;
66

67
  // The number of regions committed in the heap.
68
  uint _committed_length;
69

70 71
  // A hint for which index to start searching from for humongous
  // allocations.
72
  uint _next_search_index;
73

74
  // The number of regions for which we have allocated HeapRegions for.
75
  uint _allocated_length;
76

77 78
  // Find a contiguous set of empty regions of length num, starting
  // from the given index.
79
  uint find_contiguous_from(uint from, uint num);
80

81
  void increment_allocated_length() {
82
    assert(_allocated_length < max_length(), "pre-condition");
83
    _allocated_length++;
84 85
  }

86
  void increment_length() {
87 88
    assert(length() < max_length(), "pre-condition");
    _committed_length++;
89 90 91
  }

  void decrement_length() {
92 93
    assert(length() > 0, "pre-condition");
    _committed_length--;
94
  }
95

96 97 98
  HeapWord* heap_bottom() const { return _regions.bottom_address_mapped(); }
  HeapWord* heap_end() const {return _regions.end_address_mapped(); }

99 100
 public:
  // Empty contructor, we'll initialize it with the initialize() method.
101
  HeapRegionSeq() : _regions(), _committed_length(0), _next_search_index(0), _allocated_length(0) { }
102

103
  void initialize(HeapWord* bottom, HeapWord* end);
104 105 106

  // Return the HeapRegion at the given index. Assume that the index
  // is valid.
107
  inline HeapRegion* at(uint index) const;
108

109 110 111
  // If addr is within the committed space return its corresponding
  // HeapRegion, otherwise return NULL.
  inline HeapRegion* addr_to_region(HeapWord* addr) const;
112

113 114 115
  // Return the HeapRegion that corresponds to the given
  // address. Assume the address is valid.
  inline HeapRegion* addr_to_region_unsafe(HeapWord* addr) const;
116

117
  // Return the number of regions that have been committed in the heap.
118
  uint length() const { return _committed_length; }
119

120
  // Return the maximum number of regions in the heap.
121
  uint max_length() const { return (uint)_regions.length(); }
122

123 124 125 126 127 128 129 130
  // Expand the sequence to reflect that the heap has grown from
  // old_end to new_end. Either create new HeapRegions, or re-use
  // existing ones, and return them in the given list. Returns the
  // memory region that covers the newly-created regions. If a
  // HeapRegion allocation fails, the result memory region might be
  // smaller than the desired one.
  MemRegion expand_by(HeapWord* old_end, HeapWord* new_end,
                      FreeRegionList* list);
131

132 133
  // Return the number of contiguous regions at the end of the sequence
  // that are available for allocation.
134
  uint free_suffix();
135

136 137 138
  // Find a contiguous set of empty regions of length num and return
  // the index of the first region or G1_NULL_HRS_INDEX if the
  // search was unsuccessful.
139
  uint find_contiguous(uint num);
140 141 142 143 144 145 146 147 148 149

  // Apply blk->doHeapRegion() on all committed regions in address order,
  // terminating the iteration early if doHeapRegion() returns true.
  void iterate(HeapRegionClosure* blk) const;

  // As above, but start the iteration from hr and loop around. If hr
  // is NULL, we start from the first region in the heap.
  void iterate_from(HeapRegion* hr, HeapRegionClosure* blk) const;

  // Tag as uncommitted as many regions that are completely free as
150 151 152
  // possible, up to num_regions_to_remove, from the suffix of the committed
  // sequence. Return the actual number of removed regions.
  uint shrink_by(uint num_regions_to_remove);
153 154 155

  // Do some sanity checking.
  void verify_optional() PRODUCT_RETURN;
156
};
157 158

#endif // SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP