Home
last modified time | relevance | path

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

/art/runtime/
Dparsed_options.cc661 gc::CollectorType collector_type_ = (XGcOption{}).collector_type_; in DoParse() local
667 if (xgc != nullptr && xgc->collector_type_ != gc::kCollectorTypeNone) { in DoParse()
668 collector_type_ = xgc->collector_type_; in DoParse()
Dparsed_options_test.cc133 EXPECT_EQ(gc::kCollectorTypeSS, xgc.collector_type_); in TEST_F()
Druntime.cc1393 kUseReadBarrier ? gc::kCollectorTypeCC : xgc_option.collector_type_, in Init()
/art/runtime/gc/
Dheap.h811 return collector_type_; in CurrentCollectorType()
815 if (IsGcConcurrent() && IsMovingGc(collector_type_)) { in IsGcConcurrentAndMoving()
817 DCHECK_EQ(collector_type_, foreground_collector_type_); in IsGcConcurrentAndMoving()
1169 return collector_type_ == kCollectorTypeCC || in IsGcConcurrent()
1170 collector_type_ == kCollectorTypeCMS || in IsGcConcurrent()
1171 collector_type_ == kCollectorTypeCCBackground; in IsGcConcurrent()
1266 CollectorType collector_type_; variable
Dheap.cc253 collector_type_(kCollectorTypeNone), in Heap()
1432 CHECK_EQ(desired_collector_type, collector_type_) << "Unsupported collector transition"; in DoPendingCollectorTransition()
2075 if (disable_moving_gc_count_ != 0 || IsMovingGc(collector_type_) || in PerformHomogeneousSpaceCompact()
2136 if (collector_type != collector_type_) { in ChangeCollector()
2137 collector_type_ = collector_type; in ChangeCollector()
2139 switch (collector_type_) { in ChangeCollector()
2347 if (IsMovingGc(collector_type_)) { in PreZygoteFork()
2348 if (collector_type_ == kCollectorTypeCC) { in PreZygoteFork()
2377 if (collector_type_ == kCollectorTypeCC) { in PreZygoteFork()
2439 if (collector_type_ != kCollectorTypeCC) { in PreZygoteFork()
[all …]
/art/runtime/gc/collector/
Dconcurrent_copying-inl.h136 DCHECK(heap_->collector_type_ == kCollectorTypeCC); in Mark()
Dconcurrent_copying.cc2780 CHECK_EQ(heap_->collector_type_, kCollectorTypeCC) << static_cast<size_t>(heap_->collector_type_); in AssertToSpaceInvariant()
2886 CHECK_EQ(heap_->collector_type_, kCollectorTypeCC) << static_cast<size_t>(heap_->collector_type_); in AssertToSpaceInvariant()
/art/cmdline/
Dcmdline_parser_test.cc336 option_all_true.collector_type_ = gc::CollectorType::kCollectorTypeCMS; in TEST_F()
353 option_all_false.collector_type_ = gc::CollectorType::kCollectorTypeMS; in TEST_F()
Dcmdline_types.h481 gc::CollectorType collector_type_ = gc::kCollectorTypeDefault;
504 xgc.collector_type_ = collector_type;