blob: e33415eeb9ca5f9e5157f0bf23a8b93cff8af286 [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 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#ifndef V8_BOOTSTRAPPER_H_
30#define V8_BOOTSTRAPPER_H_
31
lrn@chromium.org1c092762011-05-09 09:42:16 +000032#include "allocation.h"
33
kasperl@chromium.org71affb52009-05-26 05:44:31 +000034namespace v8 {
35namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000037
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000038// A SourceCodeCache uses a FixedArray to store pairs of
39// (AsciiString*, JSFunction*), mapping names of native code files
40// (runtime.js, etc.) to precompiled functions. Instead of mapping
41// names to functions it might make sense to let the JS2C tool
42// generate an index for each native JS file.
43class SourceCodeCache BASE_EMBEDDED {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000044 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000045 explicit SourceCodeCache(Script::Type type): type_(type), cache_(NULL) { }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000046
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000047 void Initialize(bool create_heap_objects) {
48 cache_ = create_heap_objects ? HEAP->empty_fixed_array() : NULL;
49 }
50
51 void Iterate(ObjectVisitor* v) {
52 v->VisitPointer(BitCast<Object**, FixedArray**>(&cache_));
53 }
54
55 bool Lookup(Vector<const char> name, Handle<SharedFunctionInfo>* handle) {
56 for (int i = 0; i < cache_->length(); i+=2) {
yangguo@chromium.orgfb377212012-11-16 14:43:43 +000057 SeqOneByteString* str = SeqOneByteString::cast(cache_->get(i));
jkummerow@chromium.org59297c72013-01-09 16:32:23 +000058 if (str->IsUtf8EqualTo(name)) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000059 *handle = Handle<SharedFunctionInfo>(
60 SharedFunctionInfo::cast(cache_->get(i + 1)));
61 return true;
62 }
63 }
64 return false;
65 }
66
67 void Add(Vector<const char> name, Handle<SharedFunctionInfo> shared) {
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +000068 HandleScope scope(shared->GetIsolate());
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000069 int length = cache_->length();
70 Handle<FixedArray> new_array =
71 FACTORY->NewFixedArray(length + 2, TENURED);
72 cache_->CopyTo(0, *new_array, 0, cache_->length());
73 cache_ = *new_array;
74 Handle<String> str = FACTORY->NewStringFromAscii(name, TENURED);
75 cache_->set(length, *str);
76 cache_->set(length + 1, *shared);
77 Script::cast(shared->script())->set_type(Smi::FromInt(type_));
78 }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000079
80 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000081 Script::Type type_;
82 FixedArray* cache_;
83 DISALLOW_COPY_AND_ASSIGN(SourceCodeCache);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000084};
85
86
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000087// The Boostrapper is the public interface for creating a JavaScript global
88// context.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000089class Bootstrapper {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000090 public:
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000091 // Requires: Heap::SetUp has been called.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000092 void Initialize(bool create_heap_objects);
93 void TearDown();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094
95 // Creates a JavaScript Global Context with initial object graph.
96 // The returned value is a global handle casted to V8Environment*.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000097 Handle<Context> CreateEnvironment(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000098 Handle<Object> global_object,
99 v8::Handle<v8::ObjectTemplate> global_template,
100 v8::ExtensionConfiguration* extensions);
101
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000102 // Detach the environment from its outer global object.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000103 void DetachGlobal(Handle<Context> env);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000104
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +0000105 // Reattach an outer global object to an environment.
yangguo@chromium.org355cfd12012-08-29 15:32:24 +0000106 void ReattachGlobal(Handle<Context> env, Handle<JSGlobalProxy> global_proxy);
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +0000107
ager@chromium.org32912102009-01-16 10:38:43 +0000108 // Traverses the pointers for memory management.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000109 void Iterate(ObjectVisitor* v);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000110
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000111 // Accessor for the native scripts source code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000112 Handle<String> NativesSourceLookup(int index);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000113
ager@chromium.org32912102009-01-16 10:38:43 +0000114 // Tells whether bootstrapping is active.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000115 bool IsActive() const { return nesting_ != 0; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000116
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000117 // Support for thread preemption.
danno@chromium.org40cb8782011-05-25 07:58:50 +0000118 static int ArchiveSpacePerThread();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000119 char* ArchiveState(char* to);
120 char* RestoreState(char* from);
121 void FreeThreadResources();
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000122
123 // This will allocate a char array that is deleted when V8 is shut down.
124 // It should only be used for strictly finite allocations.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000125 char* AllocateAutoDeletedArray(int bytes);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000126
127 // Used for new context creation.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000128 bool InstallExtensions(Handle<Context> native_context,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000129 v8::ExtensionConfiguration* extensions);
130
131 SourceCodeCache* extensions_cache() { return &extensions_cache_; }
132
133 private:
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +0000134 Isolate* isolate_;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000135 typedef int NestingCounterType;
136 NestingCounterType nesting_;
137 SourceCodeCache extensions_cache_;
138 // This is for delete, not delete[].
139 List<char*>* delete_these_non_arrays_on_tear_down_;
140 // This is for delete[]
141 List<char*>* delete_these_arrays_on_tear_down_;
142
143 friend class BootstrapperActive;
144 friend class Isolate;
145 friend class NativesExternalStringResource;
146
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +0000147 explicit Bootstrapper(Isolate* isolate);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000148
149 DISALLOW_COPY_AND_ASSIGN(Bootstrapper);
150};
151
152
153class BootstrapperActive BASE_EMBEDDED {
154 public:
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +0000155 explicit BootstrapperActive(Bootstrapper* bootstrapper)
156 : bootstrapper_(bootstrapper) {
157 ++bootstrapper_->nesting_;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000158 }
159
160 ~BootstrapperActive() {
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +0000161 --bootstrapper_->nesting_;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000162 }
163
164 private:
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +0000165 Bootstrapper* bootstrapper_;
166
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000167 DISALLOW_COPY_AND_ASSIGN(BootstrapperActive);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000168};
169
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000170
171class NativesExternalStringResource
172 : public v8::String::ExternalAsciiStringResource {
173 public:
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000174 NativesExternalStringResource(Bootstrapper* bootstrapper,
175 const char* source,
176 size_t length);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000177
178 const char* data() const {
179 return data_;
180 }
181
182 size_t length() const {
183 return length_;
184 }
185 private:
186 const char* data_;
187 size_t length_;
188};
189
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000190}} // namespace v8::internal
191
192#endif // V8_BOOTSTRAPPER_H_