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

/art/runtime/gc/collector/
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.cc91 SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix) argument
101 generational_(generational),
106 collect_from_space_only_(generational),
211 // If non-generational, always clear soft references.
212 // If generational, clear soft references if a whole heap collection.
/art/runtime/gc/
H A Dheap.cc589 const bool generational = foreground_collector_type_ == kCollectorTypeGSS; local
590 semi_space_collector_ = new collector::SemiSpace(this, generational,
591 generational ? "generational" : "");

Completed in 764 milliseconds