Lines Matching refs:allocation
2017 AllocationResult allocation = new_space->AllocateRaw(size);
2018 if (allocation.IsRetry()) {
2025 allocation = new_space->AllocateRaw(size);
2026 ASSERT(!allocation.IsRetry());
2028 Object* target = allocation.ToObjectChecked();
2521 // Iterate over allocation sites, removing dependent code that is not
3010 AllocationResult allocation = target_space->AllocateRaw(object_size);
3011 if (allocation.To(&target)) {
3025 // There are soft limits in the allocation code, designed trigger a mark
3027 // a mark-sweep allocation, there is no sense in trying to trigger one.
3032 // Store allocation range before flipping semispaces.
3081 AllocationResult allocation = space->AllocateRaw(size);
3082 if (!allocation.To(&target_object)) {