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

/external/v8/src/heap/
H A Dspaces-inl.h378 Address current_top = allocation_info_.top();
380 if (new_top > allocation_info_.limit()) return NULL;
382 allocation_info_.set_top(new_top);
389 Address current_top = allocation_info_.top();
393 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
395 allocation_info_.set_top(new_top);
407 Address current_top = allocation_info_.top();
411 if (new_top > allocation_info_.limit()) return NULL;
413 allocation_info_.set_top(new_top);
525 Address top = allocation_info_
[all...]
H A Dspaces.cc1219 allocation_info_.Reset(nullptr, nullptr);
1306 MemoryChunk::UpdateHighWaterMark(allocation_info_.top());
1324 MemoryChunk::UpdateHighWaterMark(allocation_info_.top());
1429 if (Page::FromAllocationAreaAddress(allocation_info_.top()) == page) {
1430 allocation_info_.Reset(nullptr, nullptr);
1455 (allocation_info_.top() == allocation_info_.limit());
1458 if (page == Page::FromAllocationAreaAddress(allocation_info_.top())) {
1537 allocation_info_.Reset(nullptr, nullptr);
1564 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space
[all...]
H A Dspaces.h1894 inline bool IsValid() { return allocation_info_.top() != nullptr; }
1906 AllocationInfo allocation_info_; member in class:v8::internal::LocalAllocationBuffer
1982 Address top() { return allocation_info_.top(); }
1983 Address limit() { return allocation_info_.limit(); }
1986 Address* allocation_top_address() { return allocation_info_.top_address(); }
1990 return allocation_info_.limit_address();
2037 MemoryChunk::UpdateHighWaterMark(allocation_info_.top());
2038 allocation_info_.Reset(top, limit);
2136 // address denoted by top in allocation_info_.
2140 // at the address denoted by top in allocation_info_
2166 AllocationInfo allocation_info_; member in class:v8::internal::PagedSpace
2659 AllocationInfo allocation_info_; member in class:v8::internal::NewSpace
[all...]

Completed in 1904 milliseconds