blob: 9aed5dd4e971e859790fcb02e9d1117baa5bda17 [file] [log] [blame]
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001// Copyright 2012 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
5#ifndef V8_API_H_
6#define V8_API_H_
7
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include "src/v8.h"
Steve Blocka7e24c12009-10-30 11:49:00 +00009
Ben Murdochb8a8cc12014-11-26 15:28:44 +000010#include "include/v8-testing.h"
11#include "src/contexts.h"
12#include "src/factory.h"
13#include "src/isolate.h"
14#include "src/list-inl.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010015
Steve Blocka7e24c12009-10-30 11:49:00 +000016namespace v8 {
17
18// Constants used in the implementation of the API. The most natural thing
19// would usually be to place these with the classes that use them, but
20// we want to keep them out of v8.h because it is an externally
21// visible file.
22class Consts {
23 public:
24 enum TemplateType {
25 FUNCTION_TEMPLATE = 0,
26 OBJECT_TEMPLATE = 1
27 };
28};
29
30
31// Utilities for working with neander-objects, primitive
32// env-independent JSObjects used by the api.
33class NeanderObject {
34 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +000035 explicit NeanderObject(v8::internal::Isolate* isolate, int size);
Ben Murdoch8b112d22011-06-08 16:22:53 +010036 explicit inline NeanderObject(v8::internal::Handle<v8::internal::Object> obj);
37 explicit inline NeanderObject(v8::internal::Object* obj);
Steve Blocka7e24c12009-10-30 11:49:00 +000038 inline v8::internal::Object* get(int index);
39 inline void set(int index, v8::internal::Object* value);
40 inline v8::internal::Handle<v8::internal::JSObject> value() { return value_; }
41 int size();
42 private:
43 v8::internal::Handle<v8::internal::JSObject> value_;
44};
45
46
47// Utilities for working with neander-arrays, a simple extensible
48// array abstraction built on neander-objects.
49class NeanderArray {
50 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +000051 explicit NeanderArray(v8::internal::Isolate* isolate);
Ben Murdoch8b112d22011-06-08 16:22:53 +010052 explicit inline NeanderArray(v8::internal::Handle<v8::internal::Object> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +000053 inline v8::internal::Handle<v8::internal::JSObject> value() {
54 return obj_.value();
55 }
56
57 void add(v8::internal::Handle<v8::internal::Object> value);
58
59 int length();
60
61 v8::internal::Object* get(int index);
62 // Change the value at an index to undefined value. If the index is
63 // out of bounds, the request is ignored. Returns the old value.
64 void set(int index, v8::internal::Object* value);
65 private:
66 NeanderObject obj_;
67};
68
69
70NeanderObject::NeanderObject(v8::internal::Handle<v8::internal::Object> obj)
71 : value_(v8::internal::Handle<v8::internal::JSObject>::cast(obj)) { }
72
73
74NeanderObject::NeanderObject(v8::internal::Object* obj)
75 : value_(v8::internal::Handle<v8::internal::JSObject>(
76 v8::internal::JSObject::cast(obj))) { }
77
78
79NeanderArray::NeanderArray(v8::internal::Handle<v8::internal::Object> obj)
80 : obj_(obj) { }
81
82
83v8::internal::Object* NeanderObject::get(int offset) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000084 DCHECK(value()->HasFastObjectElements());
Steve Blocka7e24c12009-10-30 11:49:00 +000085 return v8::internal::FixedArray::cast(value()->elements())->get(offset);
86}
87
88
89void NeanderObject::set(int offset, v8::internal::Object* value) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000090 DCHECK(value_->HasFastObjectElements());
Steve Blocka7e24c12009-10-30 11:49:00 +000091 v8::internal::FixedArray::cast(value_->elements())->set(offset, value);
92}
93
94
Ben Murdoch3ef787d2012-04-12 10:51:47 +010095template <typename T> inline T ToCData(v8::internal::Object* obj) {
Steve Blocka7e24c12009-10-30 11:49:00 +000096 STATIC_ASSERT(sizeof(T) == sizeof(v8::internal::Address));
97 return reinterpret_cast<T>(
Ben Murdoch3ef787d2012-04-12 10:51:47 +010098 reinterpret_cast<intptr_t>(
99 v8::internal::Foreign::cast(obj)->foreign_address()));
Steve Blocka7e24c12009-10-30 11:49:00 +0000100}
101
102
103template <typename T>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000104inline v8::internal::Handle<v8::internal::Object> FromCData(
105 v8::internal::Isolate* isolate, T obj) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000106 STATIC_ASSERT(sizeof(T) == sizeof(v8::internal::Address));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000107 return isolate->factory()->NewForeign(
Steve Blocka7e24c12009-10-30 11:49:00 +0000108 reinterpret_cast<v8::internal::Address>(reinterpret_cast<intptr_t>(obj)));
109}
110
111
Steve Blockd0582a62009-12-15 09:54:21 +0000112class ApiFunction {
113 public:
114 explicit ApiFunction(v8::internal::Address addr) : addr_(addr) { }
115 v8::internal::Address address() { return addr_; }
116 private:
117 v8::internal::Address addr_;
118};
119
120
Steve Blocka7e24c12009-10-30 11:49:00 +0000121
122class RegisteredExtension {
123 public:
124 explicit RegisteredExtension(Extension* extension);
125 static void Register(RegisteredExtension* that);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000126 static void UnregisterAll();
Steve Blocka7e24c12009-10-30 11:49:00 +0000127 Extension* extension() { return extension_; }
128 RegisteredExtension* next() { return next_; }
Steve Blocka7e24c12009-10-30 11:49:00 +0000129 static RegisteredExtension* first_extension() { return first_extension_; }
130 private:
131 Extension* extension_;
132 RegisteredExtension* next_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000133 static RegisteredExtension* first_extension_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000134};
135
136
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000137#define OPEN_HANDLE_LIST(V) \
138 V(Template, TemplateInfo) \
139 V(FunctionTemplate, FunctionTemplateInfo) \
140 V(ObjectTemplate, ObjectTemplateInfo) \
141 V(Signature, SignatureInfo) \
142 V(AccessorSignature, FunctionTemplateInfo) \
143 V(TypeSwitch, TypeSwitchInfo) \
144 V(Data, Object) \
145 V(RegExp, JSRegExp) \
146 V(Object, JSObject) \
147 V(Array, JSArray) \
148 V(ArrayBuffer, JSArrayBuffer) \
149 V(ArrayBufferView, JSArrayBufferView) \
150 V(TypedArray, JSTypedArray) \
151 V(Uint8Array, JSTypedArray) \
152 V(Uint8ClampedArray, JSTypedArray) \
153 V(Int8Array, JSTypedArray) \
154 V(Uint16Array, JSTypedArray) \
155 V(Int16Array, JSTypedArray) \
156 V(Uint32Array, JSTypedArray) \
157 V(Int32Array, JSTypedArray) \
158 V(Float32Array, JSTypedArray) \
159 V(Float64Array, JSTypedArray) \
160 V(DataView, JSDataView) \
161 V(Name, Name) \
162 V(String, String) \
163 V(Symbol, Symbol) \
164 V(Script, JSFunction) \
165 V(UnboundScript, SharedFunctionInfo) \
166 V(Function, JSFunction) \
167 V(Message, JSMessageObject) \
168 V(Context, Context) \
169 V(External, Object) \
170 V(StackTrace, JSArray) \
171 V(StackFrame, JSObject) \
172 V(DeclaredAccessorDescriptor, DeclaredAccessorDescriptor)
173
174
Steve Blocka7e24c12009-10-30 11:49:00 +0000175class Utils {
176 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000177 static inline bool ApiCheck(bool condition,
178 const char* location,
179 const char* message) {
180 if (!condition) Utils::ReportApiFailure(location, message);
181 return condition;
182 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000183
184 static Local<FunctionTemplate> ToFunctionTemplate(NeanderObject obj);
185 static Local<ObjectTemplate> ToObjectTemplate(NeanderObject obj);
186
187 static inline Local<Context> ToLocal(
188 v8::internal::Handle<v8::internal::Context> obj);
189 static inline Local<Value> ToLocal(
190 v8::internal::Handle<v8::internal::Object> obj);
191 static inline Local<Function> ToLocal(
192 v8::internal::Handle<v8::internal::JSFunction> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000193 static inline Local<Name> ToLocal(
194 v8::internal::Handle<v8::internal::Name> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000195 static inline Local<String> ToLocal(
196 v8::internal::Handle<v8::internal::String> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000197 static inline Local<Symbol> ToLocal(
198 v8::internal::Handle<v8::internal::Symbol> obj);
Ben Murdochf87a2032010-10-22 12:50:53 +0100199 static inline Local<RegExp> ToLocal(
200 v8::internal::Handle<v8::internal::JSRegExp> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000201 static inline Local<Object> ToLocal(
202 v8::internal::Handle<v8::internal::JSObject> obj);
203 static inline Local<Array> ToLocal(
204 v8::internal::Handle<v8::internal::JSArray> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000205 static inline Local<ArrayBuffer> ToLocal(
206 v8::internal::Handle<v8::internal::JSArrayBuffer> obj);
207 static inline Local<ArrayBufferView> ToLocal(
208 v8::internal::Handle<v8::internal::JSArrayBufferView> obj);
209 static inline Local<DataView> ToLocal(
210 v8::internal::Handle<v8::internal::JSDataView> obj);
211
212 static inline Local<TypedArray> ToLocal(
213 v8::internal::Handle<v8::internal::JSTypedArray> obj);
214 static inline Local<Uint8Array> ToLocalUint8Array(
215 v8::internal::Handle<v8::internal::JSTypedArray> obj);
216 static inline Local<Uint8ClampedArray> ToLocalUint8ClampedArray(
217 v8::internal::Handle<v8::internal::JSTypedArray> obj);
218 static inline Local<Int8Array> ToLocalInt8Array(
219 v8::internal::Handle<v8::internal::JSTypedArray> obj);
220 static inline Local<Uint16Array> ToLocalUint16Array(
221 v8::internal::Handle<v8::internal::JSTypedArray> obj);
222 static inline Local<Int16Array> ToLocalInt16Array(
223 v8::internal::Handle<v8::internal::JSTypedArray> obj);
224 static inline Local<Uint32Array> ToLocalUint32Array(
225 v8::internal::Handle<v8::internal::JSTypedArray> obj);
226 static inline Local<Int32Array> ToLocalInt32Array(
227 v8::internal::Handle<v8::internal::JSTypedArray> obj);
228 static inline Local<Float32Array> ToLocalFloat32Array(
229 v8::internal::Handle<v8::internal::JSTypedArray> obj);
230 static inline Local<Float64Array> ToLocalFloat64Array(
231 v8::internal::Handle<v8::internal::JSTypedArray> obj);
232
Steve Blocka7e24c12009-10-30 11:49:00 +0000233 static inline Local<Message> MessageToLocal(
234 v8::internal::Handle<v8::internal::Object> obj);
Kristian Monsen25f61362010-05-21 11:50:48 +0100235 static inline Local<StackTrace> StackTraceToLocal(
236 v8::internal::Handle<v8::internal::JSArray> obj);
237 static inline Local<StackFrame> StackFrameToLocal(
238 v8::internal::Handle<v8::internal::JSObject> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000239 static inline Local<Number> NumberToLocal(
240 v8::internal::Handle<v8::internal::Object> obj);
241 static inline Local<Integer> IntegerToLocal(
242 v8::internal::Handle<v8::internal::Object> obj);
243 static inline Local<Uint32> Uint32ToLocal(
244 v8::internal::Handle<v8::internal::Object> obj);
245 static inline Local<FunctionTemplate> ToLocal(
246 v8::internal::Handle<v8::internal::FunctionTemplateInfo> obj);
247 static inline Local<ObjectTemplate> ToLocal(
248 v8::internal::Handle<v8::internal::ObjectTemplateInfo> obj);
249 static inline Local<Signature> ToLocal(
250 v8::internal::Handle<v8::internal::SignatureInfo> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000251 static inline Local<AccessorSignature> AccessorSignatureToLocal(
252 v8::internal::Handle<v8::internal::FunctionTemplateInfo> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000253 static inline Local<TypeSwitch> ToLocal(
254 v8::internal::Handle<v8::internal::TypeSwitchInfo> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000255 static inline Local<External> ExternalToLocal(
256 v8::internal::Handle<v8::internal::JSObject> obj);
257 static inline Local<DeclaredAccessorDescriptor> ToLocal(
258 v8::internal::Handle<v8::internal::DeclaredAccessorDescriptor> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000259
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000260#define DECLARE_OPEN_HANDLE(From, To) \
261 static inline v8::internal::Handle<v8::internal::To> \
262 OpenHandle(const From* that, bool allow_empty_handle = false);
263
264OPEN_HANDLE_LIST(DECLARE_OPEN_HANDLE)
265
266#undef DECLARE_OPEN_HANDLE
267
268 template<class From, class To>
269 static inline Local<To> Convert(v8::internal::Handle<From> obj) {
270 DCHECK(obj.is_null() || !obj->IsTheHole());
271 return Local<To>(reinterpret_cast<To*>(obj.location()));
272 }
273
274 template <class T>
275 static inline v8::internal::Handle<v8::internal::Object> OpenPersistent(
276 const v8::Persistent<T>& persistent) {
277 return v8::internal::Handle<v8::internal::Object>(
278 reinterpret_cast<v8::internal::Object**>(persistent.val_));
279 }
280
281 template <class T>
282 static inline v8::internal::Handle<v8::internal::Object> OpenPersistent(
283 v8::Persistent<T>* persistent) {
284 return OpenPersistent(*persistent);
285 }
286
287 template <class From, class To>
288 static inline v8::internal::Handle<To> OpenHandle(v8::Local<From> handle) {
289 return OpenHandle(*handle);
290 }
291
292 private:
293 static void ReportApiFailure(const char* location, const char* message);
Steve Blocka7e24c12009-10-30 11:49:00 +0000294};
295
296
297template <class T>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000298v8::internal::Handle<T> v8::internal::Handle<T>::EscapeFrom(
299 v8::EscapableHandleScope* scope) {
300 v8::internal::Handle<T> handle;
301 if (!is_null()) {
302 handle = *this;
303 }
304 return Utils::OpenHandle(*scope->Escape(Utils::ToLocal(handle)), true);
305}
306
307
308template <class T>
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100309inline T* ToApi(v8::internal::Handle<v8::internal::Object> obj) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000310 return reinterpret_cast<T*>(obj.location());
311}
312
Steve Blocka7e24c12009-10-30 11:49:00 +0000313template <class T>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000314inline v8::Local<T> ToApiHandle(
315 v8::internal::Handle<v8::internal::Object> obj) {
316 return Utils::Convert<v8::internal::Object, T>(obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000317}
318
319
320// Implementations of ToLocal
321
322#define MAKE_TO_LOCAL(Name, From, To) \
323 Local<v8::To> Utils::Name(v8::internal::Handle<v8::internal::From> obj) { \
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000324 return Convert<v8::internal::From, v8::To>(obj); \
Steve Blocka7e24c12009-10-30 11:49:00 +0000325 }
326
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000327
328#define MAKE_TO_LOCAL_TYPED_ARRAY(Type, typeName, TYPE, ctype, size) \
329 Local<v8::Type##Array> Utils::ToLocal##Type##Array( \
330 v8::internal::Handle<v8::internal::JSTypedArray> obj) { \
331 DCHECK(obj->type() == kExternal##Type##Array); \
332 return Convert<v8::internal::JSTypedArray, v8::Type##Array>(obj); \
333 }
334
335
Steve Blocka7e24c12009-10-30 11:49:00 +0000336MAKE_TO_LOCAL(ToLocal, Context, Context)
337MAKE_TO_LOCAL(ToLocal, Object, Value)
338MAKE_TO_LOCAL(ToLocal, JSFunction, Function)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000339MAKE_TO_LOCAL(ToLocal, Name, Name)
Steve Blocka7e24c12009-10-30 11:49:00 +0000340MAKE_TO_LOCAL(ToLocal, String, String)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000341MAKE_TO_LOCAL(ToLocal, Symbol, Symbol)
Ben Murdochf87a2032010-10-22 12:50:53 +0100342MAKE_TO_LOCAL(ToLocal, JSRegExp, RegExp)
Steve Blocka7e24c12009-10-30 11:49:00 +0000343MAKE_TO_LOCAL(ToLocal, JSObject, Object)
344MAKE_TO_LOCAL(ToLocal, JSArray, Array)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000345MAKE_TO_LOCAL(ToLocal, JSArrayBuffer, ArrayBuffer)
346MAKE_TO_LOCAL(ToLocal, JSArrayBufferView, ArrayBufferView)
347MAKE_TO_LOCAL(ToLocal, JSDataView, DataView)
348MAKE_TO_LOCAL(ToLocal, JSTypedArray, TypedArray)
349
350TYPED_ARRAYS(MAKE_TO_LOCAL_TYPED_ARRAY)
351
Steve Blocka7e24c12009-10-30 11:49:00 +0000352MAKE_TO_LOCAL(ToLocal, FunctionTemplateInfo, FunctionTemplate)
353MAKE_TO_LOCAL(ToLocal, ObjectTemplateInfo, ObjectTemplate)
354MAKE_TO_LOCAL(ToLocal, SignatureInfo, Signature)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000355MAKE_TO_LOCAL(AccessorSignatureToLocal, FunctionTemplateInfo, AccessorSignature)
Steve Blocka7e24c12009-10-30 11:49:00 +0000356MAKE_TO_LOCAL(ToLocal, TypeSwitchInfo, TypeSwitch)
357MAKE_TO_LOCAL(MessageToLocal, Object, Message)
Kristian Monsen25f61362010-05-21 11:50:48 +0100358MAKE_TO_LOCAL(StackTraceToLocal, JSArray, StackTrace)
359MAKE_TO_LOCAL(StackFrameToLocal, JSObject, StackFrame)
Steve Blocka7e24c12009-10-30 11:49:00 +0000360MAKE_TO_LOCAL(NumberToLocal, Object, Number)
361MAKE_TO_LOCAL(IntegerToLocal, Object, Integer)
362MAKE_TO_LOCAL(Uint32ToLocal, Object, Uint32)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000363MAKE_TO_LOCAL(ExternalToLocal, JSObject, External)
364MAKE_TO_LOCAL(ToLocal, DeclaredAccessorDescriptor, DeclaredAccessorDescriptor)
Steve Blocka7e24c12009-10-30 11:49:00 +0000365
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000366#undef MAKE_TO_LOCAL_TYPED_ARRAY
Steve Blocka7e24c12009-10-30 11:49:00 +0000367#undef MAKE_TO_LOCAL
368
369
370// Implementations of OpenHandle
371
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000372#define MAKE_OPEN_HANDLE(From, To) \
373 v8::internal::Handle<v8::internal::To> Utils::OpenHandle( \
374 const v8::From* that, bool allow_empty_handle) { \
375 EXTRA_CHECK(allow_empty_handle || that != NULL); \
376 EXTRA_CHECK(that == NULL || \
377 (*reinterpret_cast<v8::internal::Object* const*>(that))->Is##To()); \
378 return v8::internal::Handle<v8::internal::To>( \
Steve Blocka7e24c12009-10-30 11:49:00 +0000379 reinterpret_cast<v8::internal::To**>(const_cast<v8::From*>(that))); \
380 }
381
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000382OPEN_HANDLE_LIST(MAKE_OPEN_HANDLE)
Steve Blocka7e24c12009-10-30 11:49:00 +0000383
384#undef MAKE_OPEN_HANDLE
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000385#undef OPEN_HANDLE_LIST
Steve Blocka7e24c12009-10-30 11:49:00 +0000386
387
388namespace internal {
389
Steve Block44f0eee2011-05-26 01:26:41 +0100390// Tracks string usage to help make better decisions when
391// externalizing strings.
392//
393// Implementation note: internally this class only tracks fresh
394// strings and keeps a single use counter for them.
395class StringTracker {
396 public:
397 // Records that the given string's characters were copied to some
398 // external buffer. If this happens often we should honor
399 // externalization requests for the string.
400 void RecordWrite(Handle<String> string) {
401 Address address = reinterpret_cast<Address>(*string);
402 Address top = isolate_->heap()->NewSpaceTop();
403 if (IsFreshString(address, top)) {
404 IncrementUseCount(top);
405 }
406 }
407
408 // Estimates freshness and use frequency of the given string based
409 // on how close it is to the new space top and the recorded usage
410 // history.
411 inline bool IsFreshUnusedString(Handle<String> string) {
412 Address address = reinterpret_cast<Address>(*string);
413 Address top = isolate_->heap()->NewSpaceTop();
414 return IsFreshString(address, top) && IsUseCountLow(top);
415 }
416
417 private:
418 StringTracker() : use_count_(0), last_top_(NULL), isolate_(NULL) { }
419
420 static inline bool IsFreshString(Address string, Address top) {
421 return top - kFreshnessLimit <= string && string <= top;
422 }
423
424 inline bool IsUseCountLow(Address top) {
425 if (last_top_ != top) return true;
426 return use_count_ < kUseLimit;
427 }
428
429 inline void IncrementUseCount(Address top) {
430 if (last_top_ != top) {
431 use_count_ = 0;
432 last_top_ = top;
433 }
434 ++use_count_;
435 }
436
437 // Single use counter shared by all fresh strings.
438 int use_count_;
439
440 // Last new space top when the use count above was valid.
441 Address last_top_;
442
443 Isolate* isolate_;
444
445 // How close to the new space top a fresh string has to be.
446 static const int kFreshnessLimit = 1024;
447
448 // The number of uses required to consider a string useful.
449 static const int kUseLimit = 32;
450
451 friend class Isolate;
452
453 DISALLOW_COPY_AND_ASSIGN(StringTracker);
454};
455
456
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000457class DeferredHandles {
458 public:
459 ~DeferredHandles();
460
461 private:
462 DeferredHandles(Object** first_block_limit, Isolate* isolate)
463 : next_(NULL),
464 previous_(NULL),
465 first_block_limit_(first_block_limit),
466 isolate_(isolate) {
467 isolate->LinkDeferredHandles(this);
468 }
469
470 void Iterate(ObjectVisitor* v);
471
472 List<Object**> blocks_;
473 DeferredHandles* next_;
474 DeferredHandles* previous_;
475 Object** first_block_limit_;
476 Isolate* isolate_;
477
478 friend class HandleScopeImplementer;
479 friend class Isolate;
480};
481
482
Steve Blocka7e24c12009-10-30 11:49:00 +0000483// This class is here in order to be able to declare it a friend of
484// HandleScope. Moving these methods to be members of HandleScope would be
Steve Block44f0eee2011-05-26 01:26:41 +0100485// neat in some ways, but it would expose internal implementation details in
Steve Blocka7e24c12009-10-30 11:49:00 +0000486// our public header file, which is undesirable.
487//
Steve Block44f0eee2011-05-26 01:26:41 +0100488// An isolate has a single instance of this class to hold the current thread's
489// data. In multithreaded V8 programs this data is copied in and out of storage
Steve Blocka7e24c12009-10-30 11:49:00 +0000490// so that the currently executing thread always has its own copy of this
491// data.
Ben Murdoch257744e2011-11-30 15:57:28 +0000492class HandleScopeImplementer {
Steve Blocka7e24c12009-10-30 11:49:00 +0000493 public:
Ben Murdoch257744e2011-11-30 15:57:28 +0000494 explicit HandleScopeImplementer(Isolate* isolate)
495 : isolate_(isolate),
496 blocks_(0),
Steve Blocka7e24c12009-10-30 11:49:00 +0000497 entered_contexts_(0),
498 saved_contexts_(0),
499 spare_(NULL),
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000500 call_depth_(0),
501 last_handle_before_deferred_block_(NULL) { }
Steve Blocka7e24c12009-10-30 11:49:00 +0000502
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000503 ~HandleScopeImplementer() {
504 DeleteArray(spare_);
505 }
506
Steve Blocka7e24c12009-10-30 11:49:00 +0000507 // Threading support for handle data.
508 static int ArchiveSpacePerThread();
Steve Block44f0eee2011-05-26 01:26:41 +0100509 char* RestoreThread(char* from);
510 char* ArchiveThread(char* to);
511 void FreeThreadResources();
Steve Blocka7e24c12009-10-30 11:49:00 +0000512
513 // Garbage collection support.
Steve Block44f0eee2011-05-26 01:26:41 +0100514 void Iterate(v8::internal::ObjectVisitor* v);
Steve Blocka7e24c12009-10-30 11:49:00 +0000515 static char* Iterate(v8::internal::ObjectVisitor* v, char* data);
516
517
518 inline internal::Object** GetSpareOrNewBlock();
John Reck59135872010-11-02 12:39:01 -0700519 inline void DeleteExtensions(internal::Object** prev_limit);
Steve Blocka7e24c12009-10-30 11:49:00 +0000520
521 inline void IncrementCallDepth() {call_depth_++;}
522 inline void DecrementCallDepth() {call_depth_--;}
523 inline bool CallDepthIsZero() { return call_depth_ == 0; }
524
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000525 inline void EnterContext(Handle<Context> context);
526 inline void LeaveContext();
527 inline bool LastEnteredContextWas(Handle<Context> context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000528
529 // Returns the last entered context or an empty handle if no
530 // contexts have been entered.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000531 inline Handle<Context> LastEnteredContext();
Steve Blocka7e24c12009-10-30 11:49:00 +0000532
533 inline void SaveContext(Context* context);
534 inline Context* RestoreContext();
535 inline bool HasSavedContexts();
536
537 inline List<internal::Object**>* blocks() { return &blocks_; }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000538 Isolate* isolate() const { return isolate_; }
539
540 void ReturnBlock(Object** block) {
541 DCHECK(block != NULL);
542 if (spare_ != NULL) DeleteArray(spare_);
543 spare_ = block;
544 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000545
546 private:
547 void ResetAfterArchive() {
548 blocks_.Initialize(0);
549 entered_contexts_.Initialize(0);
550 saved_contexts_.Initialize(0);
551 spare_ = NULL;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000552 last_handle_before_deferred_block_ = NULL;
Steve Blocka7e24c12009-10-30 11:49:00 +0000553 call_depth_ = 0;
554 }
555
556 void Free() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000557 DCHECK(blocks_.length() == 0);
558 DCHECK(entered_contexts_.length() == 0);
559 DCHECK(saved_contexts_.length() == 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000560 blocks_.Free();
561 entered_contexts_.Free();
562 saved_contexts_.Free();
563 if (spare_ != NULL) {
564 DeleteArray(spare_);
565 spare_ = NULL;
566 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000567 DCHECK(call_depth_ == 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000568 }
569
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000570 void BeginDeferredScope();
571 DeferredHandles* Detach(Object** prev_limit);
572
Ben Murdoch257744e2011-11-30 15:57:28 +0000573 Isolate* isolate_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000574 List<internal::Object**> blocks_;
575 // Used as a stack to keep track of entered contexts.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000576 List<Context*> entered_contexts_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000577 // Used as a stack to keep track of saved contexts.
578 List<Context*> saved_contexts_;
579 Object** spare_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000580 int call_depth_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000581 Object** last_handle_before_deferred_block_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000582 // This is only used for threading support.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000583 HandleScopeData handle_scope_data_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000584
585 void IterateThis(ObjectVisitor* v);
586 char* RestoreThreadHelper(char* from);
587 char* ArchiveThreadHelper(char* to);
588
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000589 friend class DeferredHandles;
590 friend class DeferredHandleScope;
591
Steve Blocka7e24c12009-10-30 11:49:00 +0000592 DISALLOW_COPY_AND_ASSIGN(HandleScopeImplementer);
593};
594
595
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100596const int kHandleBlockSize = v8::internal::KB - 2; // fit in one page
Steve Blocka7e24c12009-10-30 11:49:00 +0000597
598
599void HandleScopeImplementer::SaveContext(Context* context) {
600 saved_contexts_.Add(context);
601}
602
603
604Context* HandleScopeImplementer::RestoreContext() {
605 return saved_contexts_.RemoveLast();
606}
607
608
609bool HandleScopeImplementer::HasSavedContexts() {
610 return !saved_contexts_.is_empty();
611}
612
613
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000614void HandleScopeImplementer::EnterContext(Handle<Context> context) {
615 entered_contexts_.Add(*context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000616}
617
618
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000619void HandleScopeImplementer::LeaveContext() {
Steve Blocka7e24c12009-10-30 11:49:00 +0000620 entered_contexts_.RemoveLast();
Steve Blocka7e24c12009-10-30 11:49:00 +0000621}
622
623
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000624bool HandleScopeImplementer::LastEnteredContextWas(Handle<Context> context) {
625 return !entered_contexts_.is_empty() && entered_contexts_.last() == *context;
626}
627
628
629Handle<Context> HandleScopeImplementer::LastEnteredContext() {
630 if (entered_contexts_.is_empty()) return Handle<Context>::null();
631 return Handle<Context>(entered_contexts_.last());
Steve Blocka7e24c12009-10-30 11:49:00 +0000632}
633
634
635// If there's a spare block, use it for growing the current scope.
636internal::Object** HandleScopeImplementer::GetSpareOrNewBlock() {
637 internal::Object** block = (spare_ != NULL) ?
638 spare_ :
639 NewArray<internal::Object*>(kHandleBlockSize);
640 spare_ = NULL;
641 return block;
642}
643
644
John Reck59135872010-11-02 12:39:01 -0700645void HandleScopeImplementer::DeleteExtensions(internal::Object** prev_limit) {
646 while (!blocks_.is_empty()) {
647 internal::Object** block_start = blocks_.last();
648 internal::Object** block_limit = block_start + kHandleBlockSize;
Steve Blocka7e24c12009-10-30 11:49:00 +0000649#ifdef DEBUG
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000650 // SealHandleScope may make the prev_limit to point inside the block.
651 if (block_start <= prev_limit && prev_limit <= block_limit) {
652#ifdef ENABLE_HANDLE_ZAPPING
653 internal::HandleScope::ZapRange(prev_limit, block_limit);
654#endif
655 break;
656 }
John Reck59135872010-11-02 12:39:01 -0700657#else
658 if (prev_limit == block_limit) break;
Steve Blocka7e24c12009-10-30 11:49:00 +0000659#endif
John Reck59135872010-11-02 12:39:01 -0700660
661 blocks_.RemoveLast();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000662#ifdef ENABLE_HANDLE_ZAPPING
663 internal::HandleScope::ZapRange(block_start, block_limit);
Steve Blocka7e24c12009-10-30 11:49:00 +0000664#endif
John Reck59135872010-11-02 12:39:01 -0700665 if (spare_ != NULL) {
666 DeleteArray(spare_);
667 }
668 spare_ = block_start;
669 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000670 DCHECK((blocks_.is_empty() && prev_limit == NULL) ||
John Reck59135872010-11-02 12:39:01 -0700671 (!blocks_.is_empty() && prev_limit != NULL));
Steve Blocka7e24c12009-10-30 11:49:00 +0000672}
673
Ben Murdochb0fe1622011-05-05 13:52:32 +0100674
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000675// Interceptor functions called from generated inline caches to notify
676// CPU profiler that external callbacks are invoked.
677void InvokeAccessorGetterCallback(
678 v8::Local<v8::Name> property,
679 const v8::PropertyCallbackInfo<v8::Value>& info,
680 v8::AccessorNameGetterCallback getter);
681
682void InvokeFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>& info,
683 v8::FunctionCallback callback);
684
Ben Murdochb0fe1622011-05-05 13:52:32 +0100685class Testing {
686 public:
687 static v8::Testing::StressType stress_type() { return stress_type_; }
688 static void set_stress_type(v8::Testing::StressType stress_type) {
689 stress_type_ = stress_type;
690 }
691
692 private:
693 static v8::Testing::StressType stress_type_;
694};
695
Steve Blocka7e24c12009-10-30 11:49:00 +0000696} } // namespace v8::internal
697
698#endif // V8_API_H_