Home | History | Annotate | Download | only in src

Lines Matching full:allocation

174       return;  // Found a large enough allocation block.
178 // Sort and merge the free blocks on the free list and the allocation list.
201 return; // Found a large enough allocation block.
215 // Find an allocation block large enough. This function call may
219 // Commit the requested memory at the start of the current allocation block.
507 "V8 Executable Allocation capacity exceeded"));
1172 // TODO(gc): Change the limit on new-space allocation to prevent this
1229 // The allocation pointer should be in the space or at the very end.
1233 // allocation pointer.
1239 // The allocation pointer should not be in the middle of an object.
1967 // Allocation on the old space free list. If it succeeds then a new linear
1968 // allocation space has been set up with the top and limit of the space. If
1969 // the allocation fails then NULL is returned, and the caller can perform a GC
1989 // Mark the old linear allocation area with a free space map so it can be
2010 // Memory in the linear allocation area is counted as allocated. We may free
2027 // linear allocation area.
2031 // TODO(gc) Try not freeing linear allocation region when bytes_left
2155 // to do the allocation, then rewind the limit.
2160 HeapObject* allocation = HeapObject::cast(object);
2162 if ((top - bytes) == allocation->address()) {
2163 allocation_info_.top = allocation->address();
2166 // There may be a borderline case here where the allocation succeeded, but
2173 // We don't have a linear allocation area while sweeping. It will be restored
2174 // on the first allocation after the sweep.
2175 // Mark the old linear allocation area with a free space map so it can be
2218 // Mark the old linear allocation area with a free space so it can be
2286 // Allocation in this space has failed.
2293 // Retry the free list allocation.
2298 // Free list allocation failed and there is no next page. Fail if we have
2316 // Retry the free list allocation.
2477 // allocation pointer except wasted top-of-page blocks is considered
2545 allocation basis
2582 // If so, fail the allocation.