Lines Matching refs:bump_pointer_space_
352 bump_pointer_space_(nullptr), in Heap()
603 bump_pointer_space_ = space::BumpPointerSpace::CreateFromMemMap("Bump pointer space 1", in Heap()
605 CHECK(bump_pointer_space_ != nullptr) << "Failed to create bump pointer space"; in Heap()
606 AddSpace(bump_pointer_space_); in Heap()
1442 space = bump_pointer_space_; in ThrowOutOfMemoryError()
1583 if (bump_pointer_space_ != nullptr) { in TrimSpaces()
1584 total_alloc_space_allocated -= bump_pointer_space_->Size(); in TrimSpaces()
1618 if (bump_pointer_space_ != nullptr && bump_pointer_space_->HasAddress(obj.Ptr())) { in IsLiveObjectLocked()
2348 zygote_collector.SetFromSpace(bump_pointer_space_); in PreZygoteFork()
2379 bump_pointer_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2501 CHECK(bump_pointer_space_ != nullptr); in SwapSemiSpaces()
2503 std::swap(bump_pointer_space_, temp_space_); in SwapSemiSpaces()
2653 semi_space_collector_->SetFromSpace(bump_pointer_space_); in CollectGarbageInternal()
3249 if (bump_pointer_space_ != nullptr) { in AssertThreadLocalBuffersAreRevoked()
3250 bump_pointer_space_->AssertThreadLocalBuffersAreRevoked(thread); in AssertThreadLocalBuffersAreRevoked()
3257 if (bump_pointer_space_ != nullptr) { in AssertAllBumpPointerSpaceThreadLocalBuffersAreRevoked()
3258 bump_pointer_space_->AssertAllThreadLocalBuffersAreRevoked(); in AssertAllBumpPointerSpaceThreadLocalBuffersAreRevoked()
3898 if (bump_pointer_space_ != nullptr) { in RevokeThreadLocalBuffers()
3899 CHECK_EQ(bump_pointer_space_->RevokeThreadLocalBuffers(thread), 0U); in RevokeThreadLocalBuffers()
3922 if (bump_pointer_space_ != nullptr) { in RevokeAllThreadLocalBuffers()
3923 CHECK_EQ(bump_pointer_space_->RevokeAllThreadLocalBuffers(), 0U); in RevokeAllThreadLocalBuffers()
4335 DCHECK(bump_pointer_space_ != nullptr); in AllocWithNewTLAB()
4347 if (!bump_pointer_space_->AllocNewTlab(self, new_tlab_size)) { in AllocWithNewTLAB()