Home | History | Annotate | Download | only in gc

Lines Matching full:non_moving_space_

158     : non_moving_space_(nullptr),
435 non_moving_space_ = space::DlMallocSpace::CreateFromMemMap(
438 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
439 CHECK(non_moving_space_ != nullptr) << "Failed creating non moving space "
441 AddSpace(non_moving_space_);
466 non_moving_space_ = main_space_;
467 CHECK(!non_moving_space_->CanMoveObjects());
490 CHECK(non_moving_space_ != nullptr);
491 CHECK(!non_moving_space_->CanMoveObjects());
544 if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) {
546 new accounting::RememberedSet("Non-moving space remembered set", this, non_moving_space_);
605 if (!GetBootImageSpaces().empty() && non_moving_space_ != nullptr &&
617 bool no_gap = MemMap::CheckNoGaps(first_space->GetMemMap(), non_moving_space_->GetMemMap());
732 if (!IsMovingGc(collector_type_) && non_moving_space_ != main_space_) {
742 non_moving_space_ = main_space_;
743 CHECK(!non_moving_space_->CanMoveObjects());
1049 space::ContinuousSpace* space1 = main_space_ != nullptr ? main_space_ : non_moving_space_;
1050 space::ContinuousSpace* space2 = non_moving_space_;
1343 space = non_moving_space_;
2431 non_moving_space_->Trim();
2444 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE);
2445 const bool same_space = non_moving_space_ == main_space_;
2451 zygote_collector.BuildBins(non_moving_space_);
2453 space::BumpPointerSpace target_space("zygote bump space", non_moving_space_->End(),
2454 non_moving_space_->Limit());
2465 CHECK_NE(main_space_, non_moving_space_)
2497 non_moving_space_->SetEnd(target_space.End());
2498 non_moving_space_->SetLimit(target_space.Limit());
2499 VLOG(heap) << "Create zygote space with size=" << non_moving_space_->Size() << " bytes";
2504 space::MallocSpace* old_alloc_space = non_moving_space_;
2522 &non_moving_space_);
2523 CHECK(!non_moving_space_->CanMoveObjects());
2525 main_space_ = non_moving_space_;
2531 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
2532 AddSpace(non_moving_space_);
2547 non_moving_space_);