< prev index next >
src/share/vm/gc/g1/g1DefaultPolicy.hpp
Print this page
rev 11552 : imported patch 8159978-collection-set-as-array
*** 87,100 ****
size_t _max_rs_lengths;
size_t _rs_lengths_prediction;
- #ifndef PRODUCT
- bool verify_young_ages(HeapRegion* head, SurvRateGroup *surv_rate_group);
- #endif // PRODUCT
-
size_t _pending_cards;
// The amount of allocated bytes in old gen during the last mutator and the following
// young GC phase.
size_t _bytes_allocated_in_old_since_last_gc;
--- 87,96 ----
*** 114,127 ****
void set_region_survivor(HeapRegion* hr) {
assert(hr->is_survivor(), "pre-condition");
hr->install_surv_rate_group(_survivor_surv_rate_group);
}
- #ifndef PRODUCT
- bool verify_young_ages();
- #endif // PRODUCT
-
void record_max_rs_lengths(size_t rs_lengths) {
_max_rs_lengths = rs_lengths;
}
--- 110,119 ----
< prev index next >