Searched defs:is_young (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.hpp58 (_hr_)->is_survivor() ? "S" : (_hr_)->is_young() ? "E" : \
381 assert(is_young(), "we can only skip BOT updates on young regions");
385 assert(is_young(), "we can only skip BOT updates on young regions");
658 bool is_young() const { return _young_type != NotYoung; } function in class:HeapRegion
663 assert( (index == -1) || is_young(), "pre-condition" );
694 assert( is_young(), "pre-condition" );
703 assert( is_young(), "pre-condition" );
H A Dg1CollectedHeap.cpp191 assert(!hr->is_young(), "should not already be young");
247 if (!curr->is_young()) {
251 curr->is_young(), curr->is_survivor());
1225 assert(!hr->is_young(), "not expecting to find young regions");
2548 bool is_young = g1_policy()->gcs_are_young(); local
2556 } else if (is_young) {
3988 if (!hr->is_young()) {
4041 // Survivor regions will fail the !is_young() check.
4649 assert( (from_region->is_young() && young_index > 0) ||
4650 (!from_region->is_young()
[all...]

Completed in 48 milliseconds