Searched refs:allocation_info_ (Results 1 – 3 of 3) sorted by relevance
238 Address current_top = allocation_info_.top(); in AllocateLinearly()240 if (new_top > allocation_info_.limit()) return NULL; in AllocateLinearly()242 allocation_info_.set_top(new_top); in AllocateLinearly()275 Address old_top = allocation_info_.top(); in AllocateRaw()277 if (allocation_info_.limit() - old_top < size_in_bytes) { in AllocateRaw()282 allocation_info_.set_top(allocation_info_.top() + size_in_bytes); in AllocateRaw()283 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateRaw()
896 allocation_info_.set_top(NULL); in PagedSpace()897 allocation_info_.set_limit(NULL); in PagedSpace()922 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in CommittedPhysicalMemory()1080 if (Page::FromAllocationTop(allocation_info_.top()) == page) { in ReleasePage()1081 allocation_info_.set_top(NULL); in ReleasePage()1082 allocation_info_.set_limit(NULL); in ReleasePage()1127 (allocation_info_.top() == allocation_info_.limit()); in Verify()1132 if (page == Page::FromAllocationTop(allocation_info_.top())) { in Verify()1241 allocation_info_.set_top(NULL); in TearDown()1242 allocation_info_.set_limit(NULL); in TearDown()[all …]
1747 Address top() { return allocation_info_.top(); } in top()1748 Address limit() { return allocation_info_.limit(); } in limit()1751 Address* allocation_top_address() { return allocation_info_.top_address(); } in allocation_top_address()1755 return allocation_info_.limit_address(); in allocation_limit_address()1779 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in SetTopAndLimit()1780 allocation_info_.set_top(top); in SetTopAndLimit()1781 allocation_info_.set_limit(limit); in SetTopAndLimit()1897 AllocationInfo allocation_info_; variable2416 DCHECK(to_space_.current_page()->ContainsLimit(allocation_info_.top())); in top()2417 return allocation_info_.top(); in top()[all …]