annotate src/share/vm/gc_implementation/g1/heapRegionSeq.hpp @ 12233:40136aa2cdb1

8010722: assert: failed: heap size is too big for compressed oops Summary: Use conservative assumptions of required alignment for the various garbage collector components into account when determining the maximum heap size that supports compressed oops. Using this conservative value avoids several circular dependencies in the calculation. Reviewed-by: stefank, dholmes
author tschatzl
date Wed, 11 Sep 2013 16:25:02 +0200
parents b0d20fa374b4
children a19bea467577
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
1 /*
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
4 *
37f87013dfd8 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
37f87013dfd8 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
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
7 * published by the Free Software Foundation.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
8 *
37f87013dfd8 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
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
37f87013dfd8 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
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
13 * accompanied this code).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
14 *
37f87013dfd8 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
37f87013dfd8 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,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
21 * questions.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
22 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
23 */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
28 class HeapRegion;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
29 class HeapRegionClosure;
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
30 class FreeRegionList;
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
31
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
32 // This class keeps track of the region metadata (i.e., HeapRegion
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
33 // instances). They are kept in the _regions array in address
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
34 // order. A region's index in the array corresponds to its index in
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
35 // the heap (i.e., 0 is the region at the bottom of the heap, 1 is
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
36 // the one after it, etc.). Two regions that are consecutive in the
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
37 // array should also be adjacent in the address space (i.e.,
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
38 // region(i).end() == region(i+1).bottom().
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
39 //
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
40 // We create a HeapRegion when we commit the region's address space
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
41 // for the first time. When we uncommit the address space of a
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
42 // region we retain the HeapRegion to be able to re-use it in the
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
43 // future (in case we recommit it).
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
44 //
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
45 // We keep track of three lengths:
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
46 //
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
47 // * _length (returned by length()) is the number of currently
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
48 // committed regions.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
49 // * _allocated_length (not exposed outside this class) is the
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
50 // number of regions for which we have HeapRegions.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
51 // * _max_length (returned by max_length()) is the maximum number of
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
52 // regions the heap can have.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
53 //
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
54 // and maintain that: _length <= _allocated_length <= _max_length
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
55
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6010
diff changeset
56 class HeapRegionSeq: public CHeapObj<mtGC> {
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents: 3766
diff changeset
57 friend class VMStructs;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
58
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
59 // The array that holds the HeapRegions.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
60 HeapRegion** _regions;
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
61
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
62 // Version of _regions biased to address 0
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
63 HeapRegion** _regions_biased;
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
64
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
65 // The number of regions committed in the heap.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
66 uint _length;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
67
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
68 // The address of the first reserved word in the heap.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
69 HeapWord* _heap_bottom;
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
70
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
71 // The address of the last reserved word in the heap - 1.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
72 HeapWord* _heap_end;
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
73
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
74 // The log of the region byte size.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
75 uint _region_shift;
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
76
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
77 // A hint for which index to start searching from for humongous
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
78 // allocations.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
79 uint _next_search_index;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
80
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
81 // The number of regions for which we have allocated HeapRegions for.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
82 uint _allocated_length;
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
83
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
84 // The maximum number of regions in the heap.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
85 uint _max_length;
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
86
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
87 // Find a contiguous set of empty regions of length num, starting
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
88 // from the given index.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
89 uint find_contiguous_from(uint from, uint num);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
90
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
91 // Map a heap address to a biased region index. Assume that the
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
92 // address is valid.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
93 inline uintx addr_to_index_biased(HeapWord* addr) const;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
94
10242
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
95 void increment_allocated_length() {
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
96 assert(_allocated_length < _max_length, "pre-condition");
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
97 _allocated_length++;
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
98 }
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
99
10242
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
100 void increment_length() {
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
101 assert(_length < _max_length, "pre-condition");
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
102 _length++;
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
103 }
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
104
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
105 void decrement_length() {
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
106 assert(_length > 0, "pre-condition");
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
107 _length--;
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
108 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
109
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
110 public:
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
111 // Empty contructor, we'll initialize it with the initialize() method.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
112 HeapRegionSeq() { }
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
113
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
114 void initialize(HeapWord* bottom, HeapWord* end, uint max_length);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
115
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
116 // Return the HeapRegion at the given index. Assume that the index
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
117 // is valid.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
118 inline HeapRegion* at(uint index) const;
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
119
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
120 // If addr is within the committed space return its corresponding
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
121 // HeapRegion, otherwise return NULL.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
122 inline HeapRegion* addr_to_region(HeapWord* addr) const;
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
123
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
124 // Return the HeapRegion that corresponds to the given
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
125 // address. Assume the address is valid.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
126 inline HeapRegion* addr_to_region_unsafe(HeapWord* addr) const;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
127
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
128 // Return the number of regions that have been committed in the heap.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
129 uint length() const { return _length; }
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
130
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
131 // Return the maximum number of regions in the heap.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
132 uint max_length() const { return _max_length; }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
133
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
134 // Expand the sequence to reflect that the heap has grown from
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
135 // old_end to new_end. Either create new HeapRegions, or re-use
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
136 // existing ones, and return them in the given list. Returns the
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
137 // memory region that covers the newly-created regions. If a
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
138 // HeapRegion allocation fails, the result memory region might be
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
139 // smaller than the desired one.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
140 MemRegion expand_by(HeapWord* old_end, HeapWord* new_end,
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
141 FreeRegionList* list);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
142
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
143 // Return the number of contiguous regions at the end of the sequence
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
144 // that are available for allocation.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
145 uint free_suffix();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
146
2361
1216415d8e35 7014923: G1: code cleanup
tonyp
parents: 2152
diff changeset
147 // Find a contiguous set of empty regions of length num and return
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
148 // the index of the first region or G1_NULL_HRS_INDEX if the
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
149 // search was unsuccessful.
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3972
diff changeset
150 uint find_contiguous(uint num);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
151
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
152 // Apply blk->doHeapRegion() on all committed regions in address order,
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
153 // terminating the iteration early if doHeapRegion() returns true.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
154 void iterate(HeapRegionClosure* blk) const;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
155
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
156 // As above, but start the iteration from hr and loop around. If hr
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
157 // is NULL, we start from the first region in the heap.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
158 void iterate_from(HeapRegion* hr, HeapRegionClosure* blk) const;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
159
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
160 // Tag as uncommitted as many regions that are completely free as
10242
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
161 // possible, up to num_regions_to_remove, from the suffix of the committed
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
162 // sequence. Return the actual number of removed regions.
b0d20fa374b4 8013872: G1: HeapRegionSeq::shrink_by() has invalid assert
brutisso
parents: 6197
diff changeset
163 uint shrink_by(uint num_regions_to_remove);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
164
3766
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
165 // Do some sanity checking.
c3f1170908be 7045330: G1: Simplify/fix the HeapRegionSeq class
tonyp
parents: 2361
diff changeset
166 void verify_optional() PRODUCT_RETURN;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
167 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
168
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
169 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP