Lines Matching refs:bump_pointer_space_

315       bump_pointer_space_(nullptr),  in Heap()
566 bump_pointer_space_ = space::BumpPointerSpace::CreateFromMemMap("Bump pointer space 1", in Heap()
568 CHECK(bump_pointer_space_ != nullptr) << "Failed to create bump pointer space"; in Heap()
569 AddSpace(bump_pointer_space_); in Heap()
1395 space = bump_pointer_space_; in ThrowOutOfMemoryError()
1527 if (bump_pointer_space_ != nullptr) { in TrimSpaces()
1528 total_alloc_space_allocated -= bump_pointer_space_->Size(); in TrimSpaces()
1562 if (bump_pointer_space_ != nullptr && bump_pointer_space_->HasAddress(obj.Ptr())) { in IsLiveObjectLocked()
2351 zygote_collector.SetFromSpace(bump_pointer_space_); in PreZygoteFork()
2382 bump_pointer_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2504 CHECK(bump_pointer_space_ != nullptr); in SwapSemiSpaces()
2506 std::swap(bump_pointer_space_, temp_space_); in SwapSemiSpaces()
2636 semi_space_collector_->SetFromSpace(bump_pointer_space_); in CollectGarbageInternal()
3219 if (bump_pointer_space_ != nullptr) { in AssertThreadLocalBuffersAreRevoked()
3220 bump_pointer_space_->AssertThreadLocalBuffersAreRevoked(thread); in AssertThreadLocalBuffersAreRevoked()
3227 if (bump_pointer_space_ != nullptr) { in AssertAllBumpPointerSpaceThreadLocalBuffersAreRevoked()
3228 bump_pointer_space_->AssertAllThreadLocalBuffersAreRevoked(); in AssertAllBumpPointerSpaceThreadLocalBuffersAreRevoked()
3842 if (bump_pointer_space_ != nullptr) { in RevokeThreadLocalBuffers()
3843 CHECK_EQ(bump_pointer_space_->RevokeThreadLocalBuffers(thread), 0U); in RevokeThreadLocalBuffers()
3866 if (bump_pointer_space_ != nullptr) { in RevokeAllThreadLocalBuffers()
3867 CHECK_EQ(bump_pointer_space_->RevokeAllThreadLocalBuffers(), 0U); in RevokeAllThreadLocalBuffers()
4193 DCHECK(bump_pointer_space_ != nullptr); in AllocWithNewTLAB()
4200 if (!bump_pointer_space_->AllocNewTlab(self, new_tlab_size)) { in AllocWithNewTLAB()