blob: e565ca5ae99c9790e67af7af614feb7bcca4f916 [file] [log] [blame]
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001// Copyright 2011 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28//
29// Top include for all V8 .cc files.
30//
31
32#ifndef V8_V8_H_
33#define V8_V8_H_
34
mads.s.ager31e71382008-08-13 09:32:07 +000035#if defined(GOOGLE3)
36// Google3 special flag handling.
37#if defined(DEBUG) && defined(NDEBUG)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000038// V8 only uses DEBUG and whenever it is set we are building a debug
39// version of V8. We do not use NDEBUG and simply undef it here for
40// consistency.
mads.s.ager31e71382008-08-13 09:32:07 +000041#undef NDEBUG
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042#endif
mads.s.ager31e71382008-08-13 09:32:07 +000043#endif // defined(GOOGLE3)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000044
45// V8 only uses DEBUG, but included external files
46// may use NDEBUG - make sure they are consistent.
47#if defined(DEBUG) && defined(NDEBUG)
48#error both DEBUG and NDEBUG are set
49#endif
50
51// Basic includes
v8.team.kasperl727e9952008-09-02 14:56:44 +000052#include "../include/v8.h"
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000053#include "v8globals.h"
ager@chromium.orgbeb25712010-11-29 08:02:25 +000054#include "v8checks.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000055#include "allocation.h"
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +000056#include "v8utils.h"
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000057#include "flags.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000058
59// Objects & heap
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000060#include "objects-inl.h"
61#include "spaces-inl.h"
62#include "heap-inl.h"
ager@chromium.org3e875802009-06-29 08:26:34 +000063#include "log-inl.h"
lrn@chromium.org25156de2010-04-06 13:10:27 +000064#include "cpu-profiler-inl.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000065#include "handles-inl.h"
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +000066#include "isolate-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000067
kasperl@chromium.org71affb52009-05-26 05:44:31 +000068namespace v8 {
69namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000070
ager@chromium.orgc4c92722009-11-18 14:12:51 +000071class Deserializer;
72
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000073class V8 : public AllStatic {
74 public:
75 // Global actions.
76
ager@chromium.orgeadaf222009-06-16 09:43:10 +000077 // If Initialize is called with des == NULL, the initial state is
78 // created from scratch. If a non-null Deserializer is given, the
79 // initial state is created by reading the deserialized data into an
80 // empty heap.
ager@chromium.orgc4c92722009-11-18 14:12:51 +000081 static bool Initialize(Deserializer* des);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000082 static void TearDown();
kasperl@chromium.org71affb52009-05-26 05:44:31 +000083 static bool IsRunning() { return is_running_; }
kasperl@chromium.orga5551262010-12-07 12:49:48 +000084 static bool UseCrankshaft() { return use_crankshaft_; }
kasperl@chromium.org71affb52009-05-26 05:44:31 +000085 // To be dead you have to have lived
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000086 // TODO(isolates): move IsDead to Isolate.
kasperl@chromium.org71affb52009-05-26 05:44:31 +000087 static bool IsDead() { return has_fatal_error_ || has_been_disposed_; }
88 static void SetFatalError();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000089
90 // Report process out of memory. Implementation found in api.cc.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000091 static void FatalProcessOutOfMemory(const char* location,
92 bool take_snapshot = false);
ager@chromium.orgeadaf222009-06-16 09:43:10 +000093
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000094 // Allows an entropy source to be provided for use in random number
95 // generation.
96 static void SetEntropySource(EntropySource source);
ager@chromium.orgeadaf222009-06-16 09:43:10 +000097 // Random number generation support. Not cryptographically safe.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000098 static uint32_t Random(Isolate* isolate);
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000099 // We use random numbers internally in memory allocation and in the
100 // compilers for security. In order to prevent information leaks we
101 // use a separate random state for internal random number
102 // generation.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000103 static uint32_t RandomPrivate(Isolate* isolate);
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000104 static Object* FillHeapNumberWithRandom(Object* heap_number,
105 Isolate* isolate);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000106
ager@chromium.orgadd848f2009-08-13 12:44:13 +0000107 // Idle notification directly from the API.
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000108 static bool IdleNotification();
ager@chromium.orgadd848f2009-08-13 12:44:13 +0000109
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000110 private:
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000111 static void InitializeOncePerProcess();
112
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000113 // True if engine is currently running
114 static bool is_running_;
115 // True if V8 has ever been run
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000116 static bool has_been_setup_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000117 // True if error has been signaled for current engine
118 // (reset to false if engine is restarted)
119 static bool has_fatal_error_;
120 // True if engine has been shut down
121 // (reset if engine is restarted)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000122 static bool has_been_disposed_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000123 // True if we are using the crankshaft optimizing compiler.
124 static bool use_crankshaft_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000125};
126
127} } // namespace v8::internal
128
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000129namespace i = v8::internal;
130
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131#endif // V8_V8_H_