author | tonyp |
Wed, 25 Jan 2012 12:58:23 -0500 | |
changeset 11584 | e1df4d08a1f4 |
parent 11583 | 83a7383de44c |
child 11756 | 28b6fe22e43d |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
11451
9c9aa4d85660
7121496: G1: do the per-region evacuation failure handling work in parallel
johnc
parents:
11176
diff
changeset
|
2 |
* Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved. |
1374 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5350
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5350
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:
5350
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGION_HPP |
26 |
#define SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGION_HPP |
|
27 |
||
28 |
#include "gc_implementation/g1/g1BlockOffsetTable.inline.hpp" |
|
29 |
#include "gc_implementation/g1/g1_specialized_oop_closures.hpp" |
|
30 |
#include "gc_implementation/g1/survRateGroup.hpp" |
|
31 |
#include "gc_implementation/shared/ageTable.hpp" |
|
32 |
#include "gc_implementation/shared/spaceDecorator.hpp" |
|
33 |
#include "memory/space.inline.hpp" |
|
34 |
#include "memory/watermark.hpp" |
|
35 |
||
1374 | 36 |
#ifndef SERIALGC |
37 |
||
38 |
// A HeapRegion is the smallest piece of a G1CollectedHeap that |
|
39 |
// can be collected independently. |
|
40 |
||
41 |
// NOTE: Although a HeapRegion is a Space, its |
|
42 |
// Space::initDirtyCardClosure method must not be called. |
|
43 |
// The problem is that the existence of this method breaks |
|
44 |
// the independence of barrier sets from remembered sets. |
|
45 |
// The solution is to remove this method from the definition |
|
46 |
// of a Space. |
|
47 |
||
48 |
class CompactibleSpace; |
|
49 |
class ContiguousSpace; |
|
50 |
class HeapRegionRemSet; |
|
51 |
class HeapRegionRemSetIterator; |
|
52 |
class HeapRegion; |
|
7923 | 53 |
class HeapRegionSetBase; |
54 |
||
9989 | 55 |
#define HR_FORMAT SIZE_FORMAT":(%s)["PTR_FORMAT","PTR_FORMAT","PTR_FORMAT"]" |
56 |
#define HR_FORMAT_PARAMS(_hr_) \ |
|
57 |
(_hr_)->hrs_index(), \ |
|
58 |
(_hr_)->is_survivor() ? "S" : (_hr_)->is_young() ? "E" : "-", \ |
|
59 |
(_hr_)->bottom(), (_hr_)->top(), (_hr_)->end() |
|
1374 | 60 |
|
61 |
// A dirty card to oop closure for heap regions. It |
|
62 |
// knows how to get the G1 heap and how to use the bitmap |
|
63 |
// in the concurrent marker used by G1 to filter remembered |
|
64 |
// sets. |
|
65 |
||
66 |
class HeapRegionDCTOC : public ContiguousSpaceDCTOC { |
|
67 |
public: |
|
68 |
// Specification of possible DirtyCardToOopClosure filtering. |
|
69 |
enum FilterKind { |
|
70 |
NoFilterKind, |
|
71 |
IntoCSFilterKind, |
|
72 |
OutOfRegionFilterKind |
|
73 |
}; |
|
74 |
||
75 |
protected: |
|
76 |
HeapRegion* _hr; |
|
77 |
FilterKind _fk; |
|
78 |
G1CollectedHeap* _g1; |
|
79 |
||
80 |
void walk_mem_region_with_cl(MemRegion mr, |
|
81 |
HeapWord* bottom, HeapWord* top, |
|
82 |
OopClosure* cl); |
|
83 |
||
84 |
// We don't specialize this for FilteringClosure; filtering is handled by |
|
85 |
// the "FilterKind" mechanism. But we provide this to avoid a compiler |
|
86 |
// warning. |
|
87 |
void walk_mem_region_with_cl(MemRegion mr, |
|
88 |
HeapWord* bottom, HeapWord* top, |
|
89 |
FilteringClosure* cl) { |
|
90 |
HeapRegionDCTOC::walk_mem_region_with_cl(mr, bottom, top, |
|
91 |
(OopClosure*)cl); |
|
92 |
} |
|
93 |
||
94 |
// Get the actual top of the area on which the closure will |
|
95 |
// operate, given where the top is assumed to be (the end of the |
|
96 |
// memory region passed to do_MemRegion) and where the object |
|
97 |
// at the top is assumed to start. For example, an object may |
|
98 |
// start at the top but actually extend past the assumed top, |
|
99 |
// in which case the top becomes the end of the object. |
|
100 |
HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj) { |
|
101 |
return ContiguousSpaceDCTOC::get_actual_top(top, top_obj); |
|
102 |
} |
|
103 |
||
104 |
// Walk the given memory region from bottom to (actual) top |
|
105 |
// looking for objects and applying the oop closure (_cl) to |
|
106 |
// them. The base implementation of this treats the area as |
|
107 |
// blocks, where a block may or may not be an object. Sub- |
|
108 |
// classes should override this to provide more accurate |
|
109 |
// or possibly more efficient walking. |
|
110 |
void walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) { |
|
111 |
Filtering_DCTOC::walk_mem_region(mr, bottom, top); |
|
112 |
} |
|
113 |
||
114 |
public: |
|
115 |
HeapRegionDCTOC(G1CollectedHeap* g1, |
|
116 |
HeapRegion* hr, OopClosure* cl, |
|
117 |
CardTableModRefBS::PrecisionStyle precision, |
|
118 |
FilterKind fk); |
|
119 |
}; |
|
120 |
||
121 |
// The complicating factor is that BlockOffsetTable diverged |
|
122 |
// significantly, and we need functionality that is only in the G1 version. |
|
123 |
// So I copied that code, which led to an alternate G1 version of |
|
124 |
// OffsetTableContigSpace. If the two versions of BlockOffsetTable could |
|
125 |
// be reconciled, then G1OffsetTableContigSpace could go away. |
|
126 |
||
127 |
// The idea behind time stamps is the following. Doing a save_marks on |
|
128 |
// all regions at every GC pause is time consuming (if I remember |
|
129 |
// well, 10ms or so). So, we would like to do that only for regions |
|
130 |
// that are GC alloc regions. To achieve this, we use time |
|
131 |
// stamps. For every evacuation pause, G1CollectedHeap generates a |
|
132 |
// unique time stamp (essentially a counter that gets |
|
133 |
// incremented). Every time we want to call save_marks on a region, |
|
134 |
// we set the saved_mark_word to top and also copy the current GC |
|
135 |
// time stamp to the time stamp field of the space. Reading the |
|
136 |
// saved_mark_word involves checking the time stamp of the |
|
137 |
// region. If it is the same as the current GC time stamp, then we |
|
138 |
// can safely read the saved_mark_word field, as it is valid. If the |
|
139 |
// time stamp of the region is not the same as the current GC time |
|
140 |
// stamp, then we instead read top, as the saved_mark_word field is |
|
141 |
// invalid. Time stamps (on the regions and also on the |
|
142 |
// G1CollectedHeap) are reset at every cleanup (we iterate over |
|
143 |
// the regions anyway) and at the end of a Full GC. The current scheme |
|
144 |
// that uses sequential unsigned ints will fail only if we have 4b |
|
145 |
// evacuation pauses between two cleanups, which is _highly_ unlikely. |
|
146 |
||
147 |
class G1OffsetTableContigSpace: public ContiguousSpace { |
|
148 |
friend class VMStructs; |
|
149 |
protected: |
|
150 |
G1BlockOffsetArrayContigSpace _offsets; |
|
151 |
Mutex _par_alloc_lock; |
|
152 |
volatile unsigned _gc_time_stamp; |
|
8928
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
153 |
// When we need to retire an allocation region, while other threads |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
154 |
// are also concurrently trying to allocate into it, we typically |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
155 |
// allocate a dummy object at the end of the region to ensure that |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
156 |
// no more allocations can take place in it. However, sometimes we |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
157 |
// want to know where the end of the last "real" object we allocated |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
158 |
// into the region was and this is what this keeps track. |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
159 |
HeapWord* _pre_dummy_top; |
1374 | 160 |
|
161 |
public: |
|
162 |
// Constructor. If "is_zeroed" is true, the MemRegion "mr" may be |
|
163 |
// assumed to contain zeros. |
|
164 |
G1OffsetTableContigSpace(G1BlockOffsetSharedArray* sharedOffsetArray, |
|
165 |
MemRegion mr, bool is_zeroed = false); |
|
166 |
||
167 |
void set_bottom(HeapWord* value); |
|
168 |
void set_end(HeapWord* value); |
|
169 |
||
170 |
virtual HeapWord* saved_mark_word() const; |
|
171 |
virtual void set_saved_mark(); |
|
172 |
void reset_gc_time_stamp() { _gc_time_stamp = 0; } |
|
173 |
||
8928
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
174 |
// See the comment above in the declaration of _pre_dummy_top for an |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
175 |
// explanation of what it is. |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
176 |
void set_pre_dummy_top(HeapWord* pre_dummy_top) { |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
177 |
assert(is_in(pre_dummy_top) && pre_dummy_top <= top(), "pre-condition"); |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
178 |
_pre_dummy_top = pre_dummy_top; |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
179 |
} |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
180 |
HeapWord* pre_dummy_top() { |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
181 |
return (_pre_dummy_top == NULL) ? top() : _pre_dummy_top; |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
182 |
} |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
183 |
void reset_pre_dummy_top() { _pre_dummy_top = NULL; } |
e5c53268bef5
7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
8680
diff
changeset
|
184 |
|
1388 | 185 |
virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space); |
186 |
virtual void clear(bool mangle_space); |
|
1374 | 187 |
|
188 |
HeapWord* block_start(const void* p); |
|
189 |
HeapWord* block_start_const(const void* p) const; |
|
190 |
||
191 |
// Add offset table update. |
|
192 |
virtual HeapWord* allocate(size_t word_size); |
|
193 |
HeapWord* par_allocate(size_t word_size); |
|
194 |
||
195 |
// MarkSweep support phase3 |
|
196 |
virtual HeapWord* initialize_threshold(); |
|
197 |
virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* end); |
|
198 |
||
199 |
virtual void print() const; |
|
7904
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
200 |
|
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
201 |
void reset_bot() { |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
202 |
_offsets.zero_bottom_entry(); |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
203 |
_offsets.initialize_threshold(); |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
204 |
} |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
205 |
|
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
206 |
void update_bot_for_object(HeapWord* start, size_t word_size) { |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
207 |
_offsets.alloc_block(start, word_size); |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
208 |
} |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
209 |
|
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
210 |
void print_bot_on(outputStream* out) { |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
211 |
_offsets.print_on(out); |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
212 |
} |
1374 | 213 |
}; |
214 |
||
215 |
class HeapRegion: public G1OffsetTableContigSpace { |
|
216 |
friend class VMStructs; |
|
217 |
private: |
|
218 |
||
1387 | 219 |
enum HumongousType { |
220 |
NotHumongous = 0, |
|
221 |
StartsHumongous, |
|
222 |
ContinuesHumongous |
|
223 |
}; |
|
224 |
||
1374 | 225 |
// Requires that the region "mr" be dense with objects, and begin and end |
226 |
// with an object. |
|
227 |
void oops_in_mr_iterate(MemRegion mr, OopClosure* cl); |
|
228 |
||
229 |
// The remembered set for this region. |
|
230 |
// (Might want to make this "inline" later, to avoid some alloc failure |
|
231 |
// issues.) |
|
232 |
HeapRegionRemSet* _rem_set; |
|
233 |
||
234 |
G1BlockOffsetArrayContigSpace* offsets() { return &_offsets; } |
|
235 |
||
236 |
protected: |
|
9989 | 237 |
// The index of this region in the heap region sequence. |
238 |
size_t _hrs_index; |
|
1374 | 239 |
|
1387 | 240 |
HumongousType _humongous_type; |
1374 | 241 |
// For a humongous region, region in which it starts. |
242 |
HeapRegion* _humongous_start_region; |
|
243 |
// For the start region of a humongous sequence, it's original end(). |
|
244 |
HeapWord* _orig_end; |
|
245 |
||
246 |
// True iff the region is in current collection_set. |
|
247 |
bool _in_collection_set; |
|
248 |
||
249 |
// True iff an attempt to evacuate an object in the region failed. |
|
250 |
bool _evacuation_failed; |
|
251 |
||
252 |
// A heap region may be a member one of a number of special subsets, each |
|
253 |
// represented as linked lists through the field below. Currently, these |
|
254 |
// sets include: |
|
255 |
// The collection set. |
|
256 |
// The set of allocation regions used in a collection pause. |
|
257 |
// Spaces that may contain gray objects. |
|
258 |
HeapRegion* _next_in_special_set; |
|
259 |
||
260 |
// next region in the young "generation" region set |
|
261 |
HeapRegion* _next_young_region; |
|
262 |
||
2883
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
263 |
// Next region whose cards need cleaning |
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
264 |
HeapRegion* _next_dirty_cards_region; |
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
265 |
|
7923 | 266 |
// Fields used by the HeapRegionSetBase class and subclasses. |
267 |
HeapRegion* _next; |
|
268 |
#ifdef ASSERT |
|
269 |
HeapRegionSetBase* _containing_set; |
|
270 |
#endif // ASSERT |
|
271 |
bool _pending_removal; |
|
272 |
||
1374 | 273 |
// For parallel heapRegion traversal. |
274 |
jint _claimed; |
|
275 |
||
276 |
// We use concurrent marking to determine the amount of live data |
|
277 |
// in each heap region. |
|
278 |
size_t _prev_marked_bytes; // Bytes known to be live via last completed marking. |
|
279 |
size_t _next_marked_bytes; // Bytes known to be live via in-progress marking. |
|
280 |
||
281 |
// See "sort_index" method. -1 means is not in the array. |
|
282 |
int _sort_index; |
|
283 |
||
284 |
// <PREDICTION> |
|
285 |
double _gc_efficiency; |
|
286 |
// </PREDICTION> |
|
287 |
||
288 |
enum YoungType { |
|
289 |
NotYoung, // a region is not young |
|
290 |
Young, // a region is young |
|
9989 | 291 |
Survivor // a region is young and it contains survivors |
1374 | 292 |
}; |
293 |
||
6068
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5547
diff
changeset
|
294 |
volatile YoungType _young_type; |
1374 | 295 |
int _young_index_in_cset; |
296 |
SurvRateGroup* _surv_rate_group; |
|
297 |
int _age_index; |
|
298 |
||
299 |
// The start of the unmarked area. The unmarked area extends from this |
|
300 |
// word until the top and/or end of the region, and is the part |
|
301 |
// of the region for which no marking was done, i.e. objects may |
|
302 |
// have been allocated in this part since the last mark phase. |
|
303 |
// "prev" is the top at the start of the last completed marking. |
|
304 |
// "next" is the top at the start of the in-progress marking (if any.) |
|
305 |
HeapWord* _prev_top_at_mark_start; |
|
306 |
HeapWord* _next_top_at_mark_start; |
|
307 |
// If a collection pause is in progress, this is the top at the start |
|
308 |
// of that pause. |
|
309 |
||
310 |
// We've counted the marked bytes of objects below here. |
|
311 |
HeapWord* _top_at_conc_mark_count; |
|
312 |
||
313 |
void init_top_at_mark_start() { |
|
314 |
assert(_prev_marked_bytes == 0 && |
|
315 |
_next_marked_bytes == 0, |
|
316 |
"Must be called after zero_marked_bytes."); |
|
317 |
HeapWord* bot = bottom(); |
|
318 |
_prev_top_at_mark_start = bot; |
|
319 |
_next_top_at_mark_start = bot; |
|
320 |
_top_at_conc_mark_count = bot; |
|
321 |
} |
|
322 |
||
323 |
void set_young_type(YoungType new_type) { |
|
324 |
//assert(_young_type != new_type, "setting the same type" ); |
|
325 |
// TODO: add more assertions here |
|
326 |
_young_type = new_type; |
|
327 |
} |
|
328 |
||
5350
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
329 |
// Cached attributes used in the collection set policy information |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
330 |
|
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
331 |
// The RSet length that was added to the total value |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
332 |
// for the collection set. |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
333 |
size_t _recorded_rs_length; |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
334 |
|
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
335 |
// The predicted elapsed time that was added to total value |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
336 |
// for the collection set. |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
337 |
double _predicted_elapsed_time_ms; |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
338 |
|
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
339 |
// The predicted number of bytes to copy that was added to |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
340 |
// the total value for the collection set. |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
341 |
size_t _predicted_bytes_to_copy; |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
342 |
|
1374 | 343 |
public: |
344 |
// If "is_zeroed" is "true", the region "mr" can be assumed to contain zeros. |
|
9989 | 345 |
HeapRegion(size_t hrs_index, |
346 |
G1BlockOffsetSharedArray* sharedOffsetArray, |
|
1374 | 347 |
MemRegion mr, bool is_zeroed); |
348 |
||
10677
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10671
diff
changeset
|
349 |
static int LogOfHRGrainBytes; |
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10671
diff
changeset
|
350 |
static int LogOfHRGrainWords; |
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10671
diff
changeset
|
351 |
|
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10671
diff
changeset
|
352 |
static size_t GrainBytes; |
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10671
diff
changeset
|
353 |
static size_t GrainWords; |
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10671
diff
changeset
|
354 |
static size_t CardsPerRegion; |
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
355 |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
10670
diff
changeset
|
356 |
static size_t align_up_to_region_byte_size(size_t sz) { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
10670
diff
changeset
|
357 |
return (sz + (size_t) GrainBytes - 1) & |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
10670
diff
changeset
|
358 |
~((1 << (size_t) LogOfHRGrainBytes) - 1); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
10670
diff
changeset
|
359 |
} |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
10670
diff
changeset
|
360 |
|
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
361 |
// It sets up the heap region size (GrainBytes / GrainWords), as |
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
362 |
// well as other related fields that are based on the heap region |
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
363 |
// size (LogOfHRGrainBytes / LogOfHRGrainWords / |
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
364 |
// CardsPerRegion). All those fields are considered constant |
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
365 |
// throughout the JVM's execution, therefore they should only be set |
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
366 |
// up once during initialization time. |
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3000
diff
changeset
|
367 |
static void setup_heap_region_size(uintx min_heap_size); |
1374 | 368 |
|
1387 | 369 |
enum ClaimValues { |
11176
9bb1ddd8da51
7112743: G1: Reduce overhead of marking closure during evacuation pauses
johnc
parents:
11172
diff
changeset
|
370 |
InitialClaimValue = 0, |
9bb1ddd8da51
7112743: G1: Reduce overhead of marking closure during evacuation pauses
johnc
parents:
11172
diff
changeset
|
371 |
FinalCountClaimValue = 1, |
9bb1ddd8da51
7112743: G1: Reduce overhead of marking closure during evacuation pauses
johnc
parents:
11172
diff
changeset
|
372 |
NoteEndClaimValue = 2, |
9bb1ddd8da51
7112743: G1: Reduce overhead of marking closure during evacuation pauses
johnc
parents:
11172
diff
changeset
|
373 |
ScrubRemSetClaimValue = 3, |
9bb1ddd8da51
7112743: G1: Reduce overhead of marking closure during evacuation pauses
johnc
parents:
11172
diff
changeset
|
374 |
ParVerifyClaimValue = 4, |
9bb1ddd8da51
7112743: G1: Reduce overhead of marking closure during evacuation pauses
johnc
parents:
11172
diff
changeset
|
375 |
RebuildRSClaimValue = 5, |
11451
9c9aa4d85660
7121496: G1: do the per-region evacuation failure handling work in parallel
johnc
parents:
11176
diff
changeset
|
376 |
CompleteMarkCSetClaimValue = 6, |
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11455
diff
changeset
|
377 |
ParEvacFailureClaimValue = 7, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11455
diff
changeset
|
378 |
AggregateCountClaimValue = 8, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11455
diff
changeset
|
379 |
VerifyCountClaimValue = 9 |
1387 | 380 |
}; |
381 |
||
7905
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
382 |
inline HeapWord* par_allocate_no_bot_updates(size_t word_size) { |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
383 |
assert(is_young(), "we can only skip BOT updates on young regions"); |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
384 |
return ContiguousSpace::par_allocate(word_size); |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
385 |
} |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
386 |
inline HeapWord* allocate_no_bot_updates(size_t word_size) { |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
387 |
assert(is_young(), "we can only skip BOT updates on young regions"); |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
388 |
return ContiguousSpace::allocate(word_size); |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
389 |
} |
cc7740616b03
6994297: G1: do first-level slow-path allocations with a CAS
tonyp
parents:
7904
diff
changeset
|
390 |
|
1374 | 391 |
// If this region is a member of a HeapRegionSeq, the index in that |
392 |
// sequence, otherwise -1. |
|
9989 | 393 |
size_t hrs_index() const { return _hrs_index; } |
1374 | 394 |
|
395 |
// The number of bytes marked live in the region in the last marking phase. |
|
396 |
size_t marked_bytes() { return _prev_marked_bytes; } |
|
8930
52368505ee8e
7027766: G1: introduce flag to dump the liveness information per region at the end of marking
tonyp
parents:
8928
diff
changeset
|
397 |
size_t live_bytes() { |
52368505ee8e
7027766: G1: introduce flag to dump the liveness information per region at the end of marking
tonyp
parents:
8928
diff
changeset
|
398 |
return (top() - prev_top_at_mark_start()) * HeapWordSize + marked_bytes(); |
52368505ee8e
7027766: G1: introduce flag to dump the liveness information per region at the end of marking
tonyp
parents:
8928
diff
changeset
|
399 |
} |
52368505ee8e
7027766: G1: introduce flag to dump the liveness information per region at the end of marking
tonyp
parents:
8928
diff
changeset
|
400 |
|
1374 | 401 |
// The number of bytes counted in the next marking. |
402 |
size_t next_marked_bytes() { return _next_marked_bytes; } |
|
403 |
// The number of bytes live wrt the next marking. |
|
404 |
size_t next_live_bytes() { |
|
8930
52368505ee8e
7027766: G1: introduce flag to dump the liveness information per region at the end of marking
tonyp
parents:
8928
diff
changeset
|
405 |
return |
52368505ee8e
7027766: G1: introduce flag to dump the liveness information per region at the end of marking
tonyp
parents:
8928
diff
changeset
|
406 |
(top() - next_top_at_mark_start()) * HeapWordSize + next_marked_bytes(); |
1374 | 407 |
} |
408 |
||
409 |
// A lower bound on the amount of garbage bytes in the region. |
|
410 |
size_t garbage_bytes() { |
|
411 |
size_t used_at_mark_start_bytes = |
|
412 |
(prev_top_at_mark_start() - bottom()) * HeapWordSize; |
|
413 |
assert(used_at_mark_start_bytes >= marked_bytes(), |
|
414 |
"Can't mark more than we have."); |
|
415 |
return used_at_mark_start_bytes - marked_bytes(); |
|
416 |
} |
|
417 |
||
418 |
// An upper bound on the number of live bytes in the region. |
|
419 |
size_t max_live_bytes() { return used() - garbage_bytes(); } |
|
420 |
||
421 |
void add_to_marked_bytes(size_t incr_bytes) { |
|
422 |
_next_marked_bytes = _next_marked_bytes + incr_bytes; |
|
11172
f720721985ba
7111795: G1: Various cleanups identified during walk through of changes for 6484965
johnc
parents:
10770
diff
changeset
|
423 |
assert(_next_marked_bytes <= used(), "invariant" ); |
1374 | 424 |
} |
425 |
||
426 |
void zero_marked_bytes() { |
|
427 |
_prev_marked_bytes = _next_marked_bytes = 0; |
|
428 |
} |
|
429 |
||
1387 | 430 |
bool isHumongous() const { return _humongous_type != NotHumongous; } |
431 |
bool startsHumongous() const { return _humongous_type == StartsHumongous; } |
|
432 |
bool continuesHumongous() const { return _humongous_type == ContinuesHumongous; } |
|
1374 | 433 |
// For a humongous region, region in which it starts. |
434 |
HeapRegion* humongous_start_region() const { |
|
435 |
return _humongous_start_region; |
|
436 |
} |
|
437 |
||
10767
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
438 |
// Same as Space::is_in_reserved, but will use the original size of the region. |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
439 |
// The original size is different only for start humongous regions. They get |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
440 |
// their _end set up to be the end of the last continues region of the |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
441 |
// corresponding humongous object. |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
442 |
bool is_in_reserved_raw(const void* p) const { |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
443 |
return _bottom <= p && p < _orig_end; |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
444 |
} |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
445 |
|
7904
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
446 |
// Makes the current region be a "starts humongous" region, i.e., |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
447 |
// the first region in a series of one or more contiguous regions |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
448 |
// that will contain a single "humongous" object. The two parameters |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
449 |
// are as follows: |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
450 |
// |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
451 |
// new_top : The new value of the top field of this region which |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
452 |
// points to the end of the humongous object that's being |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
453 |
// allocated. If there is more than one region in the series, top |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
454 |
// will lie beyond this region's original end field and on the last |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
455 |
// region in the series. |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
456 |
// |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
457 |
// new_end : The new value of the end field of this region which |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
458 |
// points to the end of the last region in the series. If there is |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
459 |
// one region in the series (namely: this one) end will be the same |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
460 |
// as the original end of this region. |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
461 |
// |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
462 |
// Updating top and end as described above makes this region look as |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
463 |
// if it spans the entire space taken up by all the regions in the |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
464 |
// series and an single allocation moved its top to new_top. This |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
465 |
// ensures that the space (capacity / allocated) taken up by all |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
466 |
// humongous regions can be calculated by just looking at the |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
467 |
// "starts humongous" regions and by ignoring the "continues |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
468 |
// humongous" regions. |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
469 |
void set_startsHumongous(HeapWord* new_top, HeapWord* new_end); |
1374 | 470 |
|
7904
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
471 |
// Makes the current region be a "continues humongous' |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
472 |
// region. first_hr is the "start humongous" region of the series |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
473 |
// which this region will be part of. |
e90e097fced4
7007068: G1: refine the BOT during evac failure handling
tonyp
parents:
7397
diff
changeset
|
474 |
void set_continuesHumongous(HeapRegion* first_hr); |
1374 | 475 |
|
7923 | 476 |
// Unsets the humongous-related fields on the region. |
477 |
void set_notHumongous(); |
|
478 |
||
1374 | 479 |
// If the region has a remembered set, return a pointer to it. |
480 |
HeapRegionRemSet* rem_set() const { |
|
481 |
return _rem_set; |
|
482 |
} |
|
483 |
||
484 |
// True iff the region is in current collection_set. |
|
485 |
bool in_collection_set() const { |
|
486 |
return _in_collection_set; |
|
487 |
} |
|
488 |
void set_in_collection_set(bool b) { |
|
489 |
_in_collection_set = b; |
|
490 |
} |
|
491 |
HeapRegion* next_in_collection_set() { |
|
492 |
assert(in_collection_set(), "should only invoke on member of CS."); |
|
493 |
assert(_next_in_special_set == NULL || |
|
494 |
_next_in_special_set->in_collection_set(), |
|
495 |
"Malformed CS."); |
|
496 |
return _next_in_special_set; |
|
497 |
} |
|
498 |
void set_next_in_collection_set(HeapRegion* r) { |
|
499 |
assert(in_collection_set(), "should only invoke on member of CS."); |
|
500 |
assert(r == NULL || r->in_collection_set(), "Malformed CS."); |
|
501 |
_next_in_special_set = r; |
|
502 |
} |
|
503 |
||
7923 | 504 |
// Methods used by the HeapRegionSetBase class and subclasses. |
1374 | 505 |
|
7923 | 506 |
// Getter and setter for the next field used to link regions into |
507 |
// linked lists. |
|
508 |
HeapRegion* next() { return _next; } |
|
509 |
||
510 |
void set_next(HeapRegion* next) { _next = next; } |
|
1374 | 511 |
|
7923 | 512 |
// Every region added to a set is tagged with a reference to that |
513 |
// set. This is used for doing consistency checking to make sure that |
|
514 |
// the contents of a set are as they should be and it's only |
|
515 |
// available in non-product builds. |
|
516 |
#ifdef ASSERT |
|
517 |
void set_containing_set(HeapRegionSetBase* containing_set) { |
|
518 |
assert((containing_set == NULL && _containing_set != NULL) || |
|
519 |
(containing_set != NULL && _containing_set == NULL), |
|
520 |
err_msg("containing_set: "PTR_FORMAT" " |
|
521 |
"_containing_set: "PTR_FORMAT, |
|
522 |
containing_set, _containing_set)); |
|
523 |
||
524 |
_containing_set = containing_set; |
|
8680 | 525 |
} |
1374 | 526 |
|
7923 | 527 |
HeapRegionSetBase* containing_set() { return _containing_set; } |
528 |
#else // ASSERT |
|
529 |
void set_containing_set(HeapRegionSetBase* containing_set) { } |
|
1374 | 530 |
|
8680 | 531 |
// containing_set() is only used in asserts so there's no reason |
7923 | 532 |
// to provide a dummy version of it. |
533 |
#endif // ASSERT |
|
1374 | 534 |
|
7923 | 535 |
// If we want to remove regions from a list in bulk we can simply tag |
536 |
// them with the pending_removal tag and call the |
|
537 |
// remove_all_pending() method on the list. |
|
1374 | 538 |
|
7923 | 539 |
bool pending_removal() { return _pending_removal; } |
540 |
||
541 |
void set_pending_removal(bool pending_removal) { |
|
8680 | 542 |
if (pending_removal) { |
543 |
assert(!_pending_removal && containing_set() != NULL, |
|
544 |
"can only set pending removal to true if it's false and " |
|
545 |
"the region belongs to a region set"); |
|
546 |
} else { |
|
547 |
assert( _pending_removal && containing_set() == NULL, |
|
548 |
"can only set pending removal to false if it's true and " |
|
549 |
"the region does not belong to a region set"); |
|
550 |
} |
|
7923 | 551 |
|
552 |
_pending_removal = pending_removal; |
|
1374 | 553 |
} |
554 |
||
555 |
HeapRegion* get_next_young_region() { return _next_young_region; } |
|
556 |
void set_next_young_region(HeapRegion* hr) { |
|
557 |
_next_young_region = hr; |
|
558 |
} |
|
559 |
||
2883
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
560 |
HeapRegion* get_next_dirty_cards_region() const { return _next_dirty_cards_region; } |
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
561 |
HeapRegion** next_dirty_cards_region_addr() { return &_next_dirty_cards_region; } |
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
562 |
void set_next_dirty_cards_region(HeapRegion* hr) { _next_dirty_cards_region = hr; } |
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
563 |
bool is_on_dirty_cards_region_list() const { return get_next_dirty_cards_region() != NULL; } |
406d1e6d1aa1
6819065: G1: eliminate high serial card table clearing time
apetrusenko
parents:
2344
diff
changeset
|
564 |
|
9989 | 565 |
HeapWord* orig_end() { return _orig_end; } |
566 |
||
1374 | 567 |
// Allows logical separation between objects allocated before and after. |
568 |
void save_marks(); |
|
569 |
||
570 |
// Reset HR stuff to default values. |
|
571 |
void hr_clear(bool par, bool clear_space); |
|
9418
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
572 |
void par_clear(); |
1374 | 573 |
|
1388 | 574 |
void initialize(MemRegion mr, bool clear_space, bool mangle_space); |
1374 | 575 |
|
576 |
// Get the start of the unmarked area in this region. |
|
577 |
HeapWord* prev_top_at_mark_start() const { return _prev_top_at_mark_start; } |
|
578 |
HeapWord* next_top_at_mark_start() const { return _next_top_at_mark_start; } |
|
579 |
||
580 |
// Apply "cl->do_oop" to (the addresses of) all reference fields in objects |
|
581 |
// allocated in the current region before the last call to "save_mark". |
|
582 |
void oop_before_save_marks_iterate(OopClosure* cl); |
|
583 |
||
584 |
// Note the start or end of marking. This tells the heap region |
|
585 |
// that the collector is about to start or has finished (concurrently) |
|
586 |
// marking the heap. |
|
587 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
588 |
// Notify the region that concurrent marking is starting. Initialize |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
589 |
// all fields related to the next marking info. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
590 |
inline void note_start_of_marking(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
591 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
592 |
// Notify the region that concurrent marking has finished. Copy the |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
593 |
// (now finalized) next marking info fields into the prev marking |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
594 |
// info fields. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
595 |
inline void note_end_of_marking(); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
596 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
597 |
// Notify the region that it will be used as to-space during a GC |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
598 |
// and we are about to start copying objects into it. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
599 |
inline void note_start_of_copying(bool during_initial_mark); |
1374 | 600 |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
601 |
// Notify the region that it ceases being to-space during a GC and |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
602 |
// we will not copy objects into it any more. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
603 |
inline void note_end_of_copying(bool during_initial_mark); |
1374 | 604 |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
605 |
// Notify the region that we are about to start processing |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
606 |
// self-forwarded objects during evac failure handling. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
607 |
void note_self_forwarding_removal_start(bool during_initial_mark, |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
608 |
bool during_conc_mark); |
1374 | 609 |
|
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
610 |
// Notify the region that we have finished processing self-forwarded |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
611 |
// objects during evac failure handling. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
612 |
void note_self_forwarding_removal_end(bool during_initial_mark, |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
613 |
bool during_conc_mark, |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
11451
diff
changeset
|
614 |
size_t marked_bytes); |
1374 | 615 |
|
616 |
// Returns "false" iff no object in the region was allocated when the |
|
617 |
// last mark phase ended. |
|
618 |
bool is_marked() { return _prev_top_at_mark_start != bottom(); } |
|
619 |
||
620 |
// If "is_marked()" is true, then this is the index of the region in |
|
621 |
// an array constructed at the end of marking of the regions in a |
|
622 |
// "desirability" order. |
|
623 |
int sort_index() { |
|
624 |
return _sort_index; |
|
625 |
} |
|
626 |
void set_sort_index(int i) { |
|
627 |
_sort_index = i; |
|
628 |
} |
|
629 |
||
630 |
void init_top_at_conc_mark_count() { |
|
631 |
_top_at_conc_mark_count = bottom(); |
|
632 |
} |
|
633 |
||
634 |
void set_top_at_conc_mark_count(HeapWord *cur) { |
|
635 |
assert(bottom() <= cur && cur <= end(), "Sanity."); |
|
636 |
_top_at_conc_mark_count = cur; |
|
637 |
} |
|
638 |
||
639 |
HeapWord* top_at_conc_mark_count() { |
|
640 |
return _top_at_conc_mark_count; |
|
641 |
} |
|
642 |
||
643 |
void reset_during_compaction() { |
|
644 |
guarantee( isHumongous() && startsHumongous(), |
|
645 |
"should only be called for humongous regions"); |
|
646 |
||
647 |
zero_marked_bytes(); |
|
648 |
init_top_at_mark_start(); |
|
649 |
} |
|
650 |
||
651 |
// <PREDICTION> |
|
652 |
void calc_gc_efficiency(void); |
|
653 |
double gc_efficiency() { return _gc_efficiency;} |
|
654 |
// </PREDICTION> |
|
655 |
||
656 |
bool is_young() const { return _young_type != NotYoung; } |
|
657 |
bool is_survivor() const { return _young_type == Survivor; } |
|
658 |
||
659 |
int young_index_in_cset() const { return _young_index_in_cset; } |
|
660 |
void set_young_index_in_cset(int index) { |
|
661 |
assert( (index == -1) || is_young(), "pre-condition" ); |
|
662 |
_young_index_in_cset = index; |
|
663 |
} |
|
664 |
||
665 |
int age_in_surv_rate_group() { |
|
666 |
assert( _surv_rate_group != NULL, "pre-condition" ); |
|
667 |
assert( _age_index > -1, "pre-condition" ); |
|
668 |
return _surv_rate_group->age_in_group(_age_index); |
|
669 |
} |
|
670 |
||
671 |
void record_surv_words_in_group(size_t words_survived) { |
|
672 |
assert( _surv_rate_group != NULL, "pre-condition" ); |
|
673 |
assert( _age_index > -1, "pre-condition" ); |
|
674 |
int age_in_group = age_in_surv_rate_group(); |
|
675 |
_surv_rate_group->record_surviving_words(age_in_group, words_survived); |
|
676 |
} |
|
677 |
||
678 |
int age_in_surv_rate_group_cond() { |
|
679 |
if (_surv_rate_group != NULL) |
|
680 |
return age_in_surv_rate_group(); |
|
681 |
else |
|
682 |
return -1; |
|
683 |
} |
|
684 |
||
685 |
SurvRateGroup* surv_rate_group() { |
|
686 |
return _surv_rate_group; |
|
687 |
} |
|
688 |
||
689 |
void install_surv_rate_group(SurvRateGroup* surv_rate_group) { |
|
690 |
assert( surv_rate_group != NULL, "pre-condition" ); |
|
691 |
assert( _surv_rate_group == NULL, "pre-condition" ); |
|
692 |
assert( is_young(), "pre-condition" ); |
|
693 |
||
694 |
_surv_rate_group = surv_rate_group; |
|
695 |
_age_index = surv_rate_group->next_age_index(); |
|
696 |
} |
|
697 |
||
698 |
void uninstall_surv_rate_group() { |
|
699 |
if (_surv_rate_group != NULL) { |
|
700 |
assert( _age_index > -1, "pre-condition" ); |
|
701 |
assert( is_young(), "pre-condition" ); |
|
702 |
||
703 |
_surv_rate_group = NULL; |
|
704 |
_age_index = -1; |
|
705 |
} else { |
|
706 |
assert( _age_index == -1, "pre-condition" ); |
|
707 |
} |
|
708 |
} |
|
709 |
||
710 |
void set_young() { set_young_type(Young); } |
|
711 |
||
712 |
void set_survivor() { set_young_type(Survivor); } |
|
713 |
||
714 |
void set_not_young() { set_young_type(NotYoung); } |
|
715 |
||
716 |
// Determine if an object has been allocated since the last |
|
717 |
// mark performed by the collector. This returns true iff the object |
|
718 |
// is within the unmarked area of the region. |
|
719 |
bool obj_allocated_since_prev_marking(oop obj) const { |
|
720 |
return (HeapWord *) obj >= prev_top_at_mark_start(); |
|
721 |
} |
|
722 |
bool obj_allocated_since_next_marking(oop obj) const { |
|
723 |
return (HeapWord *) obj >= next_top_at_mark_start(); |
|
724 |
} |
|
725 |
||
726 |
// For parallel heapRegion traversal. |
|
727 |
bool claimHeapRegion(int claimValue); |
|
728 |
jint claim_value() { return _claimed; } |
|
729 |
// Use this carefully: only when you're sure no one is claiming... |
|
730 |
void set_claim_value(int claimValue) { _claimed = claimValue; } |
|
731 |
||
732 |
// Returns the "evacuation_failed" property of the region. |
|
733 |
bool evacuation_failed() { return _evacuation_failed; } |
|
734 |
||
735 |
// Sets the "evacuation_failed" property of the region. |
|
736 |
void set_evacuation_failed(bool b) { |
|
737 |
_evacuation_failed = b; |
|
738 |
||
739 |
if (b) { |
|
740 |
init_top_at_conc_mark_count(); |
|
741 |
_next_marked_bytes = 0; |
|
742 |
} |
|
743 |
} |
|
744 |
||
745 |
// Requires that "mr" be entirely within the region. |
|
746 |
// Apply "cl->do_object" to all objects that intersect with "mr". |
|
747 |
// If the iteration encounters an unparseable portion of the region, |
|
748 |
// or if "cl->abort()" is true after a closure application, |
|
749 |
// terminate the iteration and return the address of the start of the |
|
750 |
// subregion that isn't done. (The two can be distinguished by querying |
|
751 |
// "cl->abort()".) Return of "NULL" indicates that the iteration |
|
752 |
// completed. |
|
753 |
HeapWord* |
|
754 |
object_iterate_mem_careful(MemRegion mr, ObjectClosure* cl); |
|
755 |
||
9418
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
756 |
// filter_young: if true and the region is a young region then we |
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
757 |
// skip the iteration. |
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
758 |
// card_ptr: if not NULL, and we decide that the card is not young |
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
759 |
// and we iterate over it, we'll clean the card before we start the |
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
760 |
// iteration. |
1374 | 761 |
HeapWord* |
762 |
oops_on_card_seq_iterate_careful(MemRegion mr, |
|
6068
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5547
diff
changeset
|
763 |
FilterOutOfRegionClosure* cl, |
9418
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
764 |
bool filter_young, |
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8930
diff
changeset
|
765 |
jbyte* card_ptr); |
1374 | 766 |
|
767 |
// A version of block start that is guaranteed to find *some* block |
|
768 |
// boundary at or before "p", but does not object iteration, and may |
|
769 |
// therefore be used safely when the heap is unparseable. |
|
770 |
HeapWord* block_start_careful(const void* p) const { |
|
771 |
return _offsets.block_start_careful(p); |
|
772 |
} |
|
773 |
||
774 |
// Requires that "addr" is within the region. Returns the start of the |
|
775 |
// first ("careful") block that starts at or after "addr", or else the |
|
776 |
// "end" of the region if there is no such block. |
|
777 |
HeapWord* next_block_start_careful(HeapWord* addr); |
|
778 |
||
5350
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
779 |
size_t recorded_rs_length() const { return _recorded_rs_length; } |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
780 |
double predicted_elapsed_time_ms() const { return _predicted_elapsed_time_ms; } |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
781 |
size_t predicted_bytes_to_copy() const { return _predicted_bytes_to_copy; } |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
782 |
|
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
783 |
void set_recorded_rs_length(size_t rs_length) { |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
784 |
_recorded_rs_length = rs_length; |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
785 |
} |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
786 |
|
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
787 |
void set_predicted_elapsed_time_ms(double ms) { |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
788 |
_predicted_elapsed_time_ms = ms; |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
789 |
} |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
790 |
|
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
791 |
void set_predicted_bytes_to_copy(size_t bytes) { |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
792 |
_predicted_bytes_to_copy = bytes; |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
793 |
} |
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
4024
diff
changeset
|
794 |
|
1374 | 795 |
#define HeapRegion_OOP_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \ |
796 |
virtual void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl); |
|
797 |
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(HeapRegion_OOP_SINCE_SAVE_MARKS_DECL) |
|
798 |
||
799 |
CompactibleSpace* next_compaction_space() const; |
|
800 |
||
801 |
virtual void reset_after_compaction(); |
|
802 |
||
803 |
void print() const; |
|
804 |
void print_on(outputStream* st) const; |
|
805 |
||
9995
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
806 |
// vo == UsePrevMarking -> use "prev" marking information, |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
807 |
// vo == UseNextMarking -> use "next" marking information |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
808 |
// vo == UseMarkWord -> use the mark word in the object header |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
809 |
// |
3000 | 810 |
// NOTE: Only the "prev" marking information is guaranteed to be |
811 |
// consistent most of the time, so most calls to this should use |
|
9995
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
812 |
// vo == UsePrevMarking. |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
813 |
// Currently, there is only one case where this is called with |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
814 |
// vo == UseNextMarking, which is to verify the "next" marking |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
815 |
// information at the end of remark. |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
816 |
// Currently there is only one place where this is called with |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
817 |
// vo == UseMarkWord, which is to verify the marking during a |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
818 |
// full GC. |
290620c08233
7004681: G1: Extend marking verification to Full GCs
johnc
parents:
9989
diff
changeset
|
819 |
void verify(bool allow_dirty, VerifyOption vo, bool *failures) const; |
3000 | 820 |
|
821 |
// Override; it uses the "prev" marking information |
|
1374 | 822 |
virtual void verify(bool allow_dirty) const; |
823 |
}; |
|
824 |
||
825 |
// HeapRegionClosure is used for iterating over regions. |
|
826 |
// Terminates the iteration when the "doHeapRegion" method returns "true". |
|
827 |
class HeapRegionClosure : public StackObj { |
|
828 |
friend class HeapRegionSeq; |
|
829 |
friend class G1CollectedHeap; |
|
830 |
||
831 |
bool _complete; |
|
832 |
void incomplete() { _complete = false; } |
|
833 |
||
834 |
public: |
|
835 |
HeapRegionClosure(): _complete(true) {} |
|
836 |
||
837 |
// Typically called on each region until it returns true. |
|
838 |
virtual bool doHeapRegion(HeapRegion* r) = 0; |
|
839 |
||
840 |
// True after iteration if the closure was applied to all heap regions |
|
841 |
// and returned "false" in all cases. |
|
842 |
bool complete() { return _complete; } |
|
843 |
}; |
|
844 |
||
845 |
#endif // SERIALGC |
|
7397 | 846 |
|
847 |
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGION_HPP |