Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces-inl.h383 Address current_top = allocation_info_.top(); in AllocateLinearly()
385 if (new_top > allocation_info_.limit()) return NULL; in AllocateLinearly()
387 allocation_info_.set_top(new_top); in AllocateLinearly()
394 Address current_top = allocation_info_.top(); in AllocateRawAligned()
398 if (new_top > allocation_info_.limit()) return AllocationResult::Retry(); in AllocateRawAligned()
400 allocation_info_.set_top(new_top); in AllocateRawAligned()
412 Address current_top = allocation_info_.top(); in AllocateLinearlyAligned()
416 if (new_top > allocation_info_.limit()) return NULL; in AllocateLinearlyAligned()
418 allocation_info_.set_top(new_top); in AllocateLinearlyAligned()
524 Address top = allocation_info_.top(); in AllocateRawAligned()
[all …]
Dspaces.cc1187 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()
[all …]
Dspaces.h1866 inline bool IsValid() { return allocation_info_.top() != nullptr; } in IsValid()
1878 AllocationInfo allocation_info_; variable
1971 Address top() { return allocation_info_.top(); } in top()
1972 Address limit() { return allocation_info_.limit(); } in limit()
1975 Address* allocation_top_address() { return allocation_info_.top_address(); } in allocation_top_address()
1979 return allocation_info_.limit_address(); in allocation_limit_address()
2026 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in SetTopAndLimit()
2027 allocation_info_.Reset(top, limit); in SetTopAndLimit()
2153 AllocationInfo allocation_info_; variable
2512 DCHECK(to_space_.current_page()->ContainsLimit(allocation_info_.top())); in top()
[all …]