Lines Matching refs:allocation_info_
1187 allocation_info_.Reset(nullptr, nullptr); in AllocateChunk()
1274 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in AllocateChunk()
1311 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in AllocateChunk()
1421 if (Page::FromAllocationAreaAddress(allocation_info_.top()) == page) { in AllocateChunk()
1422 allocation_info_.Reset(nullptr, nullptr); in AllocateChunk()
1447 (allocation_info_.top() == allocation_info_.limit()); in AllocateChunk()
1450 if (page == Page::FromAllocationAreaAddress(allocation_info_.top())) { in AllocateChunk()
1529 allocation_info_.Reset(nullptr, nullptr); in AllocateChunk()
1556 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1577 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1627 allocation_info_.top(), in AllocateChunk()
1628 static_cast<int>(allocation_info_.limit() - allocation_info_.top()), in AllocateChunk()
1636 : heap_(heap), allocation_info_(allocation_info) { in AllocateChunk()
1639 allocation_info_.top(), in AllocateChunk()
1640 static_cast<int>(allocation_info_.limit() - allocation_info_.top()), in AllocateChunk()
1656 allocation_info_ = other.allocation_info_; in AllocateChunk()
1662 .allocation_info_.Reset(nullptr, nullptr); in AllocateChunk()
1668 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in AllocateChunk()
1669 allocation_info_.Reset(to_space_.page_low(), to_space_.page_high()); in AllocateChunk()
1671 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1676 Address old_top = allocation_info_.top(); in AllocateChunk()
1683 InlineAllocationStep(old_top, allocation_info_.top(), nullptr, 0); in AllocateChunk()
1691 Address new_top = allocation_info_.top() + size_in_bytes; in AllocateChunk()
1692 allocation_info_.set_limit(Min(new_top, high)); in AllocateChunk()
1695 allocation_info_.set_limit(to_space_.page_high()); in AllocateChunk()
1699 Address new_top = allocation_info_.top() + size_in_bytes; in AllocateChunk()
1701 allocation_info_.set_limit(Min(new_limit, high)); in AllocateChunk()
1703 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1708 Address top = allocation_info_.top(); in AllocateChunk()
1737 Address old_top = allocation_info_.top(); in AllocateChunk()
1748 InlineAllocationStep(old_top, allocation_info_.top(), nullptr, 0); in AllocateChunk()
1750 old_top = allocation_info_.top(); in AllocateChunk()
1757 if (allocation_info_.limit() < high) { in AllocateChunk()
1774 allocation_observers_->length() ? allocation_info_.top() : 0; in AllocateChunk()
1837 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
2335 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in AllocateChunk()