2012-01-25 16:31:25 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2008-07-03 15:10:15 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#ifndef V8_ALLOCATION_H_
|
|
|
|
#define V8_ALLOCATION_H_
|
|
|
|
|
2010-12-15 08:07:27 +00:00
|
|
|
#include "globals.h"
|
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2010-11-15 13:23:30 +00:00
|
|
|
// Called when allocation routines fail to allocate.
|
|
|
|
// This function should not return, but should terminate the current
|
|
|
|
// processing.
|
|
|
|
void FatalProcessOutOfMemory(const char* message);
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Superclass for classes managed with new & delete.
|
|
|
|
class Malloced {
|
|
|
|
public:
|
|
|
|
void* operator new(size_t size) { return New(size); }
|
|
|
|
void operator delete(void* p) { Delete(p); }
|
|
|
|
|
|
|
|
static void FatalProcessOutOfMemory();
|
|
|
|
static void* New(size_t size);
|
|
|
|
static void Delete(void* p);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// A macro is used for defining the base class used for embedded instances.
|
|
|
|
// The reason is some compilers allocate a minimum of one word for the
|
|
|
|
// superclass. The macro prevents the use of new & delete in debug mode.
|
|
|
|
// In release mode we are not willing to pay this overhead.
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Superclass for classes with instances allocated inside stack
|
|
|
|
// activations or inside other objects.
|
|
|
|
class Embedded {
|
|
|
|
public:
|
|
|
|
void* operator new(size_t size);
|
|
|
|
void operator delete(void* p);
|
|
|
|
};
|
|
|
|
#define BASE_EMBEDDED : public Embedded
|
|
|
|
#else
|
|
|
|
#define BASE_EMBEDDED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// Superclass for classes only using statics.
|
|
|
|
class AllStatic {
|
|
|
|
#ifdef DEBUG
|
|
|
|
public:
|
|
|
|
void* operator new(size_t size);
|
|
|
|
void operator delete(void* p);
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2012-03-11 15:04:50 +00:00
|
|
|
T* NewArray(size_t size) {
|
2008-07-03 15:10:15 +00:00
|
|
|
T* result = new T[size];
|
|
|
|
if (result == NULL) Malloced::FatalProcessOutOfMemory();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2011-11-29 10:56:11 +00:00
|
|
|
void DeleteArray(T* array) {
|
2008-07-03 15:10:15 +00:00
|
|
|
delete[] array;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-18 12:27:37 +00:00
|
|
|
// The normal strdup functions use malloc. These versions of StrDup
|
|
|
|
// and StrNDup uses new and calls the FatalProcessOutOfMemory handler
|
|
|
|
// if allocation fails.
|
2008-07-03 15:10:15 +00:00
|
|
|
char* StrDup(const char* str);
|
2009-11-20 13:08:44 +00:00
|
|
|
char* StrNDup(const char* str, int n);
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Allocation policy for allocating in the C free store using malloc
|
|
|
|
// and free. Used as the default policy for lists.
|
|
|
|
class FreeStoreAllocationPolicy {
|
|
|
|
public:
|
2012-06-04 14:42:58 +00:00
|
|
|
INLINE(void* New(size_t size)) { return Malloced::New(size); }
|
2008-07-03 15:10:15 +00:00
|
|
|
INLINE(static void Delete(void* p)) { Malloced::Delete(p); }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-01-10 10:39:47 +00:00
|
|
|
void* AlignedAlloc(size_t size, size_t alignment);
|
|
|
|
void AlignedFree(void *ptr);
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_ALLOCATION_H_
|