Index: src/heap.h |
diff --git a/src/heap.h b/src/heap.h |
index 2f91ebc55f1ba16047328eac21ba024c07f7fff3..fd361fc7a4655709385ab0f560b750caf8990c8a 100644 |
--- a/src/heap.h |
+++ b/src/heap.h |
@@ -635,10 +635,6 @@ class Heap { |
pretenure); |
} |
- inline MUST_USE_RESULT MaybeObject* AllocateEmptyJSArrayWithAllocationSite( |
- ElementsKind elements_kind, |
- Handle<AllocationSite> allocation_site); |
- |
// Allocate a JSArray with a specified length but elements that are left |
// uninitialized. |
MUST_USE_RESULT MaybeObject* AllocateJSArrayAndStorage( |
@@ -648,13 +644,6 @@ class Heap { |
ArrayStorageAllocationMode mode = DONT_INITIALIZE_ARRAY_ELEMENTS, |
PretenureFlag pretenure = NOT_TENURED); |
- MUST_USE_RESULT MaybeObject* AllocateJSArrayAndStorageWithAllocationSite( |
- ElementsKind elements_kind, |
- int length, |
- int capacity, |
- Handle<AllocationSite> allocation_site, |
- ArrayStorageAllocationMode mode = DONT_INITIALIZE_ARRAY_ELEMENTS); |
- |
MUST_USE_RESULT MaybeObject* AllocateJSArrayStorage( |
JSArray* array, |
int length, |
@@ -2114,10 +2103,6 @@ class Heap { |
ElementsKind elements_kind, |
PretenureFlag pretenure = NOT_TENURED); |
- MUST_USE_RESULT MaybeObject* AllocateJSArrayWithAllocationSite( |
- ElementsKind elements_kind, |
- Handle<AllocationSite> allocation_site); |
- |
// Allocate empty fixed array. |
MUST_USE_RESULT MaybeObject* AllocateEmptyFixedArray(); |