Use common allocation choke point in Heap::AllocateConstantPoolArray.
R=hpayer@chromium.org Review URL: https://codereview.chromium.org/37003003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17341 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
8385804c55
commit
6dd69355a9
@ -5520,9 +5520,10 @@ MaybeObject* Heap::AllocateConstantPoolArray(int number_of_int64_entries,
|
||||
#ifndef V8_HOST_ARCH_64_BIT
|
||||
size += kPointerSize;
|
||||
#endif
|
||||
AllocationSpace space = SelectSpace(size, OLD_POINTER_SPACE, TENURED);
|
||||
|
||||
HeapObject* object;
|
||||
{ MaybeObject* maybe_object = old_pointer_space_->AllocateRaw(size);
|
||||
{ MaybeObject* maybe_object = AllocateRaw(size, space, OLD_POINTER_SPACE);
|
||||
if (!maybe_object->To<HeapObject>(&object)) return maybe_object;
|
||||
}
|
||||
object = EnsureDoubleAligned(this, object, size);
|
||||
|
Loading…
Reference in New Issue
Block a user