blob: 5ead877e5558b57429ad428cb28e6b148a7cc97c [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
ulan@chromium.org57ff8812013-05-10 08:16:55 +000051// TODO(dcarney): remove this
52#define V8_ALLOW_ACCESS_TO_RAW_HANDLE_CONSTRUCTOR
53
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000054// Basic includes
v8.team.kasperl727e9952008-09-02 14:56:44 +000055#include "../include/v8.h"
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000056#include "v8globals.h"
ager@chromium.orgbeb25712010-11-29 08:02:25 +000057#include "v8checks.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000058#include "allocation.h"
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +000059#include "v8utils.h"
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000060#include "flags.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000061
62// Objects & heap
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000063#include "objects-inl.h"
64#include "spaces-inl.h"
65#include "heap-inl.h"
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000066#include "incremental-marking-inl.h"
67#include "mark-compact-inl.h"
ager@chromium.org3e875802009-06-29 08:26:34 +000068#include "log-inl.h"
lrn@chromium.org25156de2010-04-06 13:10:27 +000069#include "cpu-profiler-inl.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000070#include "handles-inl.h"
ulan@chromium.org2e04b582013-02-21 14:06:02 +000071#include "heap-snapshot-generator-inl.h"
rossberg@chromium.org400388e2012-06-06 09:29:22 +000072#include "zone-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000073
kasperl@chromium.org71affb52009-05-26 05:44:31 +000074namespace v8 {
75namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000076
ager@chromium.orgc4c92722009-11-18 14:12:51 +000077class Deserializer;
78
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000079class V8 : public AllStatic {
80 public:
81 // Global actions.
82
ager@chromium.orgeadaf222009-06-16 09:43:10 +000083 // If Initialize is called with des == NULL, the initial state is
84 // created from scratch. If a non-null Deserializer is given, the
85 // initial state is created by reading the deserialized data into an
86 // empty heap.
ager@chromium.orgc4c92722009-11-18 14:12:51 +000087 static bool Initialize(Deserializer* des);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000088 static void TearDown();
kasperl@chromium.org71affb52009-05-26 05:44:31 +000089 static bool IsRunning() { return is_running_; }
kasperl@chromium.orga5551262010-12-07 12:49:48 +000090 static bool UseCrankshaft() { return use_crankshaft_; }
kasperl@chromium.org71affb52009-05-26 05:44:31 +000091 // To be dead you have to have lived
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000092 // TODO(isolates): move IsDead to Isolate.
kasperl@chromium.org71affb52009-05-26 05:44:31 +000093 static bool IsDead() { return has_fatal_error_ || has_been_disposed_; }
94 static void SetFatalError();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000095
96 // Report process out of memory. Implementation found in api.cc.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000097 static void FatalProcessOutOfMemory(const char* location,
98 bool take_snapshot = false);
ager@chromium.orgeadaf222009-06-16 09:43:10 +000099
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000100 // Allows an entropy source to be provided for use in random number
101 // generation.
102 static void SetEntropySource(EntropySource source);
ulan@chromium.org967e2702012-02-28 09:49:15 +0000103 // Support for return-address rewriting profilers.
104 static void SetReturnAddressLocationResolver(
105 ReturnAddressLocationResolver resolver);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000106 // Random number generation support. Not cryptographically safe.
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000107 static uint32_t Random(Context* context);
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +0000108 // We use random numbers internally in memory allocation and in the
109 // compilers for security. In order to prevent information leaks we
110 // use a separate random state for internal random number
111 // generation.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000112 static uint32_t RandomPrivate(Isolate* isolate);
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000113 static Object* FillHeapNumberWithRandom(Object* heap_number,
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000114 Context* context);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000115
ager@chromium.orgadd848f2009-08-13 12:44:13 +0000116 // Idle notification directly from the API.
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000117 static bool IdleNotification(int hint);
ager@chromium.orgadd848f2009-08-13 12:44:13 +0000118
rossberg@chromium.orgfab14982012-01-05 15:02:15 +0000119 static void AddCallCompletedCallback(CallCompletedCallback callback);
120 static void RemoveCallCompletedCallback(CallCompletedCallback callback);
121 static void FireCallCompletedCallback(Isolate* isolate);
122
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000123 private:
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000124 static void InitializeOncePerProcessImpl();
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000125 static void InitializeOncePerProcess();
126
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000127 // True if engine is currently running
128 static bool is_running_;
129 // True if V8 has ever been run
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000130 static bool has_been_set_up_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000131 // True if error has been signaled for current engine
132 // (reset to false if engine is restarted)
133 static bool has_fatal_error_;
134 // True if engine has been shut down
135 // (reset if engine is restarted)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000136 static bool has_been_disposed_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000137 // True if we are using the crankshaft optimizing compiler.
138 static bool use_crankshaft_;
rossberg@chromium.orgfab14982012-01-05 15:02:15 +0000139 // List of callbacks when a Call completes.
140 static List<CallCompletedCallback>* call_completed_callbacks_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000141};
142
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000143
144// JavaScript defines two kinds of 'nil'.
145enum NilValue { kNullValue, kUndefinedValue };
146
147
148// JavaScript defines two kinds of equality.
149enum EqualityKind { kStrictEquality, kNonStrictEquality };
150
151
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000152} } // namespace v8::internal
153
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000154namespace i = v8::internal;
155
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000156#endif // V8_V8_H_