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