Searched refs:collector_type_ (Results 1 - 9 of 9) sorted by relevance

/art/runtime/gc/collector/
H A Dconcurrent_copying-inl.h35 DCHECK(heap_->collector_type_ == kCollectorTypeCC);
H A Dconcurrent_copying.cc1409 CHECK(heap_->collector_type_ == kCollectorTypeCC) << static_cast<size_t>(heap_->collector_type_);
1456 CHECK(heap_->collector_type_ == kCollectorTypeCC) << static_cast<size_t>(heap_->collector_type_);
/art/runtime/
H A Dparsed_options.cc519 gc::CollectorType collector_type_ = (XGcOption{}).collector_type_; // NOLINT [whitespace/braces] [5] local
525 if (xgc != nullptr && xgc->collector_type_ != gc::kCollectorTypeNone) {
526 collector_type_ = xgc->collector_type_;
531 if (collector_type_ != gc::kCollectorTypeGSS) {
535 background_collector_type_ = collector_type_;
H A Dparsed_options_test.cc128 EXPECT_EQ(gc::kCollectorTypeMC, xgc.collector_type_);
H A Druntime.cc1028 xgc_option.collector_type_,
/art/runtime/gc/
H A Dheap.cc162 collector_type_(kCollectorTypeNone),
732 if (!IsMovingGc(collector_type_) && non_moving_space_ != main_space_) {
1838 if (IsMovingGc(collector_type_)) {
2039 if (disable_moving_gc_count_ != 0 || IsMovingGc(collector_type_) ||
2095 if (collector_type == collector_type_) {
2098 VLOG(heap) << "TransitionCollector: " << static_cast<int>(collector_type_)
2116 const bool copying_transition = IsMovingGc(collector_type_) != IsMovingGc(collector_type);
2121 if (collector_type == collector_type_) {
2144 if (!IsMovingGc(collector_type_)) {
2181 if (IsMovingGc(collector_type_)) {
[all...]
H A Dheap.h702 return collector_type_;
706 if (IsGcConcurrent() && IsMovingGc(collector_type_)) {
708 DCHECK_EQ(collector_type_, foreground_collector_type_);
710 << "Assume no transition such that collector_type_ won't change";
998 return collector_type_ == kCollectorTypeCMS || collector_type_ == kCollectorTypeCC;
1060 CollectorType collector_type_; member in class:art::gc::Heap
1065 // Desired collector type, heap trimming daemon transitions the heap if it is != collector_type_.
/art/cmdline/
H A Dcmdline_parser_test.cc315 option_all_true.collector_type_ = gc::CollectorType::kCollectorTypeCMS;
332 option_all_false.collector_type_ = gc::CollectorType::kCollectorTypeMS;
H A Dcmdline_types.h465 gc::CollectorType collector_type_ = kUseReadBarrier ? member in struct:art::XGcOption
489 xgc.collector_type_ = collector_type;
536 // XGcOption::collector_type_ after parsing options. If you set this to

Completed in 150 milliseconds