Lines Matching full:allocation_info_
896 allocation_info_.set_top(NULL);
897 allocation_info_.set_limit(NULL);
922 MemoryChunk::UpdateHighWaterMark(allocation_info_.top());
1080 if (Page::FromAllocationTop(allocation_info_.top()) == page) {
1081 allocation_info_.set_top(NULL);
1082 allocation_info_.set_limit(NULL);
1127 (allocation_info_.top() == allocation_info_.limit());
1132 if (page == Page::FromAllocationTop(allocation_info_.top())) {
1241 allocation_info_.set_top(NULL);
1242 allocation_info_.set_limit(NULL);
1277 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
1298 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
1303 MemoryChunk::UpdateHighWaterMark(allocation_info_.top());
1304 allocation_info_.set_top(to_space_.page_low());
1305 allocation_info_.set_limit(to_space_.page_high());
1307 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
1327 Address new_top = allocation_info_.top() + size_in_bytes;
1328 allocation_info_.set_limit(Min(new_top, high));
1331 allocation_info_.set_limit(to_space_.page_high());
1335 Address new_top = allocation_info_.top() + size_in_bytes;
1337 allocation_info_.set_limit(Min(new_limit, high));
1339 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
1344 Address top = allocation_info_.top();
1375 Address old_top = allocation_info_.top();
1377 if (allocation_info_.limit() < high) {
1406 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
1943 MemoryChunk::UpdateHighWaterMark(allocation_info_.top());
2517 if (allocation_info_.top() >= allocation_info_.limit()) return;
2519 if (Page::FromAllocationTop(allocation_info_.top())
2523 static_cast<int>(allocation_info_.limit() - allocation_info_.top());
2524 heap()->CreateFillerObjectAt(allocation_info_.top(), remaining);
2526 allocation_info_.set_top(NULL);
2527 allocation_info_.set_limit(NULL);