93d84f28d6
This reverts commit bec2b4d267
.
Reason for revert: NewArrayOOM fails.
Original change's description:
> [Memory] Experiment to try using regular version of 'new T[]'.
>
> - Use normal new, vs. nothrow new.
> - Modify NewArray to have only 1 invocation of new.
>
> Bug: chromium:752056
> Change-Id: I1a2fb3626264b1bf647af9227d55e9b54e44e8b6
> Reviewed-on: https://chromium-review.googlesource.com/600895
> Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
> Commit-Queue: Bill Budge <bbudge@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#47173}
TBR=bbudge@chromium.org,mlippautz@chromium.org
Change-Id: I881f3b75209714d11d93fae6268171ffa9cc47a1
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: chromium:752056
Reviewed-on: https://chromium-review.googlesource.com/602847
Reviewed-by: Bill Budge <bbudge@chromium.org>
Commit-Queue: Bill Budge <bbudge@chromium.org>
Cr-Commit-Position: refs/heads/master@{#47174}
79 lines
2.4 KiB
C++
79 lines
2.4 KiB
C++
// Copyright 2012 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef V8_ALLOCATION_H_
|
|
#define V8_ALLOCATION_H_
|
|
|
|
#include "include/v8-platform.h"
|
|
#include "src/base/compiler-specific.h"
|
|
#include "src/base/platform/platform.h"
|
|
#include "src/globals.h"
|
|
#include "src/v8.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
// This file defines memory allocation functions. If a first attempt at an
|
|
// allocation fails, these functions call back into the embedder, then attempt
|
|
// the allocation a second time. The embedder callback must not reenter V8.
|
|
|
|
// Called when allocation routines fail to allocate, even with a possible retry.
|
|
// This function should not return, but should terminate the current processing.
|
|
V8_EXPORT_PRIVATE void FatalProcessOutOfMemory(const char* message);
|
|
|
|
// Superclass for classes managed with new & delete.
|
|
class V8_EXPORT_PRIVATE Malloced {
|
|
public:
|
|
void* operator new(size_t size) { return New(size); }
|
|
void operator delete(void* p) { Delete(p); }
|
|
|
|
static void* New(size_t size);
|
|
static void Delete(void* p);
|
|
};
|
|
|
|
template <typename T>
|
|
T* NewArray(size_t size) {
|
|
T* result = new (std::nothrow) T[size];
|
|
if (result == nullptr) {
|
|
V8::GetCurrentPlatform()->OnCriticalMemoryPressure();
|
|
result = new (std::nothrow) T[size];
|
|
if (result == nullptr) FatalProcessOutOfMemory("NewArray");
|
|
}
|
|
return result;
|
|
}
|
|
|
|
template <typename T>
|
|
void DeleteArray(T* array) {
|
|
delete[] array;
|
|
}
|
|
|
|
|
|
// The normal strdup functions use malloc. These versions of StrDup
|
|
// and StrNDup uses new and calls the FatalProcessOutOfMemory handler
|
|
// if allocation fails.
|
|
V8_EXPORT_PRIVATE char* StrDup(const char* str);
|
|
char* StrNDup(const char* str, int n);
|
|
|
|
|
|
// Allocation policy for allocating in the C free store using malloc
|
|
// and free. Used as the default policy for lists.
|
|
class FreeStoreAllocationPolicy {
|
|
public:
|
|
INLINE(void* New(size_t size)) { return Malloced::New(size); }
|
|
INLINE(static void Delete(void* p)) { Malloced::Delete(p); }
|
|
};
|
|
|
|
|
|
void* AlignedAlloc(size_t size, size_t alignment);
|
|
void AlignedFree(void *ptr);
|
|
|
|
bool AllocVirtualMemory(size_t size, void* hint, base::VirtualMemory* result);
|
|
bool AlignedAllocVirtualMemory(size_t size, size_t alignment, void* hint,
|
|
base::VirtualMemory* result);
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_ALLOCATION_H_
|