heapRegionSeq.hpp 6.0 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
class HeapRegion;
class HeapRegionClosure;
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
class FreeRegionList;

// 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:
//
// * _length (returned by length()) is the number of currently
//   committed regions.
// * _allocated_length (not exposed outside this class) is the
//   number of regions for which we have HeapRegions.
// * _max_length (returned by max_length()) is the maximum number of
//   regions the heap can have.
//
// and maintain that: _length <= _allocated_length <= _max_length
55 56

class HeapRegionSeq: public CHeapObj {
T
tonyp 已提交
57
  friend class VMStructs;
58

59 60
  // The array that holds the HeapRegions.
  HeapRegion** _regions;
61

62 63
  // Version of _regions biased to address 0
  HeapRegion** _regions_biased;
64

65
  // The number of regions committed in the heap.
66
  uint _length;
67

68 69
  // The address of the first reserved word in the heap.
  HeapWord* _heap_bottom;
70

71 72
  // The address of the last reserved word in the heap - 1.
  HeapWord* _heap_end;
73

74
  // The log of the region byte size.
75
  uint _region_shift;
76

77 78
  // A hint for which index to start searching from for humongous
  // allocations.
79
  uint _next_search_index;
80

81
  // The number of regions for which we have allocated HeapRegions for.
82
  uint _allocated_length;
83

84
  // The maximum number of regions in the heap.
85
  uint _max_length;
86

87 88
  // Find a contiguous set of empty regions of length num, starting
  // from the given index.
89
  uint find_contiguous_from(uint from, uint num);
90

91 92
  // Map a heap address to a biased region index. Assume that the
  // address is valid.
93
  inline uintx addr_to_index_biased(HeapWord* addr) const;
94

95
  void increment_length(uint* length) {
96 97 98 99
    assert(*length < _max_length, "pre-condition");
    *length += 1;
  }

100
  void decrement_length(uint* length) {
101 102 103
    assert(*length > 0, "pre-condition");
    *length -= 1;
  }
104

105 106 107 108
 public:
  // Empty contructor, we'll initialize it with the initialize() method.
  HeapRegionSeq() { }

109
  void initialize(HeapWord* bottom, HeapWord* end, uint max_length);
110 111 112

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

115 116 117
  // If addr is within the committed space return its corresponding
  // HeapRegion, otherwise return NULL.
  inline HeapRegion* addr_to_region(HeapWord* addr) const;
118

119 120 121
  // Return the HeapRegion that corresponds to the given
  // address. Assume the address is valid.
  inline HeapRegion* addr_to_region_unsafe(HeapWord* addr) const;
122

123
  // Return the number of regions that have been committed in the heap.
124
  uint length() const { return _length; }
125

126
  // Return the maximum number of regions in the heap.
127
  uint max_length() const { return _max_length; }
128

129 130 131 132 133 134 135 136
  // 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);
137

138 139
  // Return the number of contiguous regions at the end of the sequence
  // that are available for allocation.
140
  uint free_suffix();
141

142 143 144
  // 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.
145
  uint find_contiguous(uint num);
146 147 148 149 150 151 152 153 154 155 156 157 158 159

  // 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
  // possible, up to shrink_bytes, from the suffix of the committed
  // sequence. Return a MemRegion that corresponds to the address
  // range of the uncommitted regions. Assume shrink_bytes is page and
  // heap region aligned.
160
  MemRegion shrink_by(size_t shrink_bytes, uint* num_regions_deleted);
161 162 163

  // Do some sanity checking.
  void verify_optional() PRODUCT_RETURN;
164
};
165 166

#endif // SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP