Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces-inl.h315 Address current_top = allocation_info_.top(); in AllocateLinearly()
317 if (new_top > allocation_info_.limit()) return NULL; in AllocateLinearly()
319 allocation_info_.set_top(new_top); in AllocateLinearly()
326 Address current_top = allocation_info_.top(); in AllocateRawAligned()
330 if (new_top > allocation_info_.limit()) return AllocationResult::Retry(); in AllocateRawAligned()
332 allocation_info_.set_top(new_top); in AllocateRawAligned()
344 Address current_top = allocation_info_.top(); in AllocateLinearlyAligned()
348 if (new_top > allocation_info_.limit()) return NULL; in AllocateLinearlyAligned()
350 allocation_info_.set_top(new_top); in AllocateLinearlyAligned()
443 Address top = allocation_info_.top(); in AllocateRawAligned()
[all …]
Dspaces.cc961 allocation_info_.Reset(nullptr, nullptr); in AllocateChunk()
1130 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in AllocateChunk()
1249 if (Page::FromAllocationTop(allocation_info_.top()) == page) { in AllocateChunk()
1250 allocation_info_.Reset(nullptr, nullptr); in AllocateChunk()
1274 (allocation_info_.top() == allocation_info_.limit()); in AllocateChunk()
1279 if (page == Page::FromAllocationTop(allocation_info_.top())) { in AllocateChunk()
1391 allocation_info_.Reset(nullptr, nullptr); in AllocateChunk()
1426 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1453 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
1477 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_); in AllocateChunk()
[all …]
Dspaces.h1925 inline bool IsValid() { return allocation_info_.top() != nullptr; } in IsValid()
1937 AllocationInfo allocation_info_; variable
2025 Address top() { return allocation_info_.top(); } in top()
2026 Address limit() { return allocation_info_.limit(); } in limit()
2029 Address* allocation_top_address() { return allocation_info_.top_address(); } in allocation_top_address()
2033 return allocation_info_.limit_address(); in allocation_limit_address()
2070 MemoryChunk::UpdateHighWaterMark(allocation_info_.top()); in SetTopAndLimit()
2071 allocation_info_.Reset(top, limit); in SetTopAndLimit()
2213 AllocationInfo allocation_info_; variable
2761 DCHECK(to_space_.current_page()->ContainsLimit(allocation_info_.top())); in top()
[all …]