2011-06-16 06:37:49 +00:00
|
|
|
// Copyright 2011 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.
|
|
|
|
|
|
|
|
//
|
|
|
|
// Top include for all V8 .cc files.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef V8_V8_H_
|
|
|
|
#define V8_V8_H_
|
|
|
|
|
2008-08-13 09:32:07 +00:00
|
|
|
#if defined(GOOGLE3)
|
|
|
|
// Google3 special flag handling.
|
|
|
|
#if defined(DEBUG) && defined(NDEBUG)
|
2011-06-16 06:37:49 +00:00
|
|
|
// V8 only uses DEBUG and whenever it is set we are building a debug
|
|
|
|
// version of V8. We do not use NDEBUG and simply undef it here for
|
|
|
|
// consistency.
|
2008-08-13 09:32:07 +00:00
|
|
|
#undef NDEBUG
|
2008-07-03 15:10:15 +00:00
|
|
|
#endif
|
2008-08-13 09:32:07 +00:00
|
|
|
#endif // defined(GOOGLE3)
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// V8 only uses DEBUG, but included external files
|
|
|
|
// may use NDEBUG - make sure they are consistent.
|
|
|
|
#if defined(DEBUG) && defined(NDEBUG)
|
|
|
|
#error both DEBUG and NDEBUG are set
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Basic includes
|
2008-09-01 11:48:50 +00:00
|
|
|
#include "../include/v8.h"
|
2010-11-15 13:23:30 +00:00
|
|
|
#include "v8globals.h"
|
2010-11-24 09:57:06 +00:00
|
|
|
#include "v8checks.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
#include "allocation.h"
|
2013-06-03 15:32:22 +00:00
|
|
|
#include "assert-scope.h"
|
2010-11-05 08:18:53 +00:00
|
|
|
#include "v8utils.h"
|
2008-09-12 10:19:33 +00:00
|
|
|
#include "flags.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Objects & heap
|
|
|
|
#include "objects-inl.h"
|
|
|
|
#include "spaces-inl.h"
|
|
|
|
#include "heap-inl.h"
|
2011-09-19 18:36:47 +00:00
|
|
|
#include "incremental-marking-inl.h"
|
|
|
|
#include "mark-compact-inl.h"
|
2009-06-24 13:09:34 +00:00
|
|
|
#include "log-inl.h"
|
2010-03-09 06:38:33 +00:00
|
|
|
#include "handles-inl.h"
|
2012-06-04 14:42:58 +00:00
|
|
|
#include "zone-inl.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2009-11-16 12:08:40 +00:00
|
|
|
class Deserializer;
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
class V8 : public AllStatic {
|
|
|
|
public:
|
|
|
|
// Global actions.
|
|
|
|
|
2009-06-15 08:04:47 +00:00
|
|
|
// If Initialize is called with des == NULL, the initial state is
|
|
|
|
// created from scratch. If a non-null Deserializer is given, the
|
|
|
|
// initial state is created by reading the deserialized data into an
|
|
|
|
// empty heap.
|
2009-11-16 12:08:40 +00:00
|
|
|
static bool Initialize(Deserializer* des);
|
2013-10-01 14:26:53 +00:00
|
|
|
static bool TearDown();
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Report process out of memory. Implementation found in api.cc.
|
2010-08-05 14:12:50 +00:00
|
|
|
static void FatalProcessOutOfMemory(const char* location,
|
|
|
|
bool take_snapshot = false);
|
2009-06-15 08:04:47 +00:00
|
|
|
|
2011-07-17 09:16:28 +00:00
|
|
|
// Allows an entropy source to be provided for use in random number
|
|
|
|
// generation.
|
|
|
|
static void SetEntropySource(EntropySource source);
|
2012-02-27 15:15:53 +00:00
|
|
|
// Support for return-address rewriting profilers.
|
|
|
|
static void SetReturnAddressLocationResolver(
|
|
|
|
ReturnAddressLocationResolver resolver);
|
2013-06-28 13:40:41 +00:00
|
|
|
// Support for entry hooking JITed code.
|
|
|
|
static void SetFunctionEntryHook(FunctionEntryHook entry_hook);
|
2009-06-15 08:04:47 +00:00
|
|
|
// Random number generation support. Not cryptographically safe.
|
2011-10-24 12:12:21 +00:00
|
|
|
static uint32_t Random(Context* context);
|
2011-03-30 18:05:16 +00:00
|
|
|
static Object* FillHeapNumberWithRandom(Object* heap_number,
|
2011-10-24 12:12:21 +00:00
|
|
|
Context* context);
|
2009-06-15 08:04:47 +00:00
|
|
|
|
2012-01-04 08:48:35 +00:00
|
|
|
static void AddCallCompletedCallback(CallCompletedCallback callback);
|
|
|
|
static void RemoveCallCompletedCallback(CallCompletedCallback callback);
|
|
|
|
static void FireCallCompletedCallback(Isolate* isolate);
|
|
|
|
|
2013-06-11 10:41:14 +00:00
|
|
|
static v8::ArrayBuffer::Allocator* ArrayBufferAllocator() {
|
|
|
|
return array_buffer_allocator_;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) {
|
|
|
|
CHECK_EQ(NULL, array_buffer_allocator_);
|
|
|
|
array_buffer_allocator_ = allocator;
|
|
|
|
}
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
private:
|
2012-03-12 13:56:56 +00:00
|
|
|
static void InitializeOncePerProcessImpl();
|
2011-03-31 16:17:37 +00:00
|
|
|
static void InitializeOncePerProcess();
|
|
|
|
|
2012-01-04 08:48:35 +00:00
|
|
|
// List of callbacks when a Call completes.
|
|
|
|
static List<CallCompletedCallback>* call_completed_callbacks_;
|
2013-06-11 10:41:14 +00:00
|
|
|
// Allocator for external array buffers.
|
|
|
|
static v8::ArrayBuffer::Allocator* array_buffer_allocator_;
|
2008-07-03 15:10:15 +00:00
|
|
|
};
|
|
|
|
|
2011-09-19 14:50:33 +00:00
|
|
|
|
|
|
|
// JavaScript defines two kinds of 'nil'.
|
|
|
|
enum NilValue { kNullValue, kUndefinedValue };
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
} } // namespace v8::internal
|
|
|
|
|
2009-03-02 09:09:07 +00:00
|
|
|
namespace i = v8::internal;
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
#endif // V8_V8_H_
|