Searched refs:generational (Results 1 - 4 of 4) sorted by relevance

/art/runtime/gc/collector/
H A Dconcurrent_copying.h28 explicit ConcurrentCopying(Heap* heap, bool generational = false,
H A Dsemi_space.h59 // If true, use remembered sets in the generational mode.
62 explicit SemiSpace(Heap* heap, bool generational = false, const std::string& name_prefix = "");
224 // When true, the generational mode (promotion and the bump pointer
229 // Used for the generational mode. the end/top of the bump
233 // Used for the generational mode. During a collection, keeps track
238 // Used for the generational mode. Keeps track of how many bytes of
243 // Used for the generational mode. Keeps track of how many bytes of
247 // Used for generational mode. When true, we only collect the from_space_.
267 // Used for the generational mode. The default interval of the whole
H A Dsemi_space.cc88 SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix) argument
93 generational_(generational),
98 collect_from_space_only_(generational),
199 // If non-generational, always clear soft references.
200 // If generational, clear soft references if a whole heap collection.
/art/runtime/gc/
H A Dheap.cc406 const bool generational = foreground_collector_type_ == kCollectorTypeGSS; local
407 semi_space_collector_ = new collector::SemiSpace(this, generational,
408 generational ? "generational" : "");

Completed in 104 milliseconds