Home | History | Annotate | Download | only in gc

Lines Matching refs:non_moving_space_

128     : non_moving_space_(nullptr),
307 non_moving_space_ = space::DlMallocSpace::CreateFromMemMap(
310 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
311 CHECK(non_moving_space_ != nullptr) << "Failed creating non moving space "
313 AddSpace(non_moving_space_);
334 non_moving_space_ = main_space_;
335 CHECK(!non_moving_space_->CanMoveObjects());
358 CHECK(non_moving_space_ != nullptr);
359 CHECK(!non_moving_space_->CanMoveObjects());
389 if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) {
391 new accounting::RememberedSet("Non-moving space remembered set", this, non_moving_space_);
435 if (GetImageSpace() != nullptr && non_moving_space_ != nullptr) {
439 non_moving_space_->GetMemMap());
542 if (!IsMovingGc(collector_type_) && non_moving_space_ != main_space_) {
552 non_moving_space_ = main_space_;
553 CHECK(!non_moving_space_->CanMoveObjects());
728 space::ContinuousSpace* space1 = main_space_ != nullptr ? main_space_ : non_moving_space_;
729 space::ContinuousSpace* space2 = non_moving_space_;
943 space = non_moving_space_;
1969 non_moving_space_->Trim();
1972 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
1973 const bool same_space = non_moving_space_ == main_space_;
1981 zygote_collector.BuildBins(non_moving_space_);
1983 space::BumpPointerSpace target_space("zygote bump space", non_moving_space_->End(),
1984 non_moving_space_->Limit());
2017 non_moving_space_->SetEnd(target_space.End());
2018 non_moving_space_->SetLimit(target_space.Limit());
2019 VLOG(heap) << "Zygote space size " << non_moving_space_->Size() << " bytes";
2024 space::MallocSpace* old_alloc_space = non_moving_space_;
2043 &non_moving_space_);
2044 CHECK(!non_moving_space_->CanMoveObjects());
2046 main_space_ = non_moving_space_;
2052 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
2053 AddSpace(non_moving_space_);
2066 non_moving_space_);