Home
last modified time | relevance | path

Searched refs:top_on_previous_step_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/heap/
Dspaces-inl.h357 if (top_on_previous_step_ && top() < top_on_previous_step_ && in AllocateRaw()
363 Page::FromAllocationAreaAddress(top_on_previous_step_ - 1)); in AllocateRaw()
364 top_on_previous_step_ = top(); in AllocateRaw()
367 top_on_previous_step_ ? top() - top_on_previous_step_ : 0; in AllocateRaw()
450 if (top() < top_on_previous_step_) { in AllocateRaw()
453 Page::FromAllocationAreaAddress(top_on_previous_step_)); in AllocateRaw()
454 top_on_previous_step_ = top(); in AllocateRaw()
Dspaces.cc1883 DCHECK(!top_on_previous_step_); in AllocateChunk()
2294 DCHECK(!AllocationObserversActive() || top_on_previous_step_ == top()); in AllocateChunk()
2404 top_on_previous_step_ = top(); in AllocateChunk()
2407 DCHECK_EQ(kNullAddress, top_on_previous_step_); in AllocateChunk()
2414 DCHECK_IMPLIES(top_on_previous_step_, AllocationObserversActive()); in AllocateChunk()
2423 DCHECK_IMPLIES(top_on_previous_step_, AllocationObserversActive()); in AllocateChunk()
2430 DCHECK_EQ(kNullAddress, top_on_previous_step_); in AllocateChunk()
2435 DCHECK_EQ(kNullAddress, top_on_previous_step_); in AllocateChunk()
2449 if (top_on_previous_step_) { in AllocateChunk()
2450 if (top < top_on_previous_step_) { in AllocateChunk()
[all …]
Dspaces.h2049 : Space(heap, id), top_on_previous_step_(0) { in SpaceWithLinearArea()
2099 Address top_on_previous_step_; variable