blob: 1d2a8c8e82829fd9f9143208006787cb3b372238 [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
Emily Bernierd0a1eb72015-03-24 16:35:39 -040057 void add(internal::Isolate* isolate,
58 v8::internal::Handle<v8::internal::Object> value);
Steve Blocka7e24c12009-10-30 11:49:00 +000059
60 int length();
61
62 v8::internal::Object* get(int index);
63 // Change the value at an index to undefined value. If the index is
64 // out of bounds, the request is ignored. Returns the old value.
65 void set(int index, v8::internal::Object* value);
66 private:
67 NeanderObject obj_;
68};
69
70
71NeanderObject::NeanderObject(v8::internal::Handle<v8::internal::Object> obj)
72 : value_(v8::internal::Handle<v8::internal::JSObject>::cast(obj)) { }
73
74
75NeanderObject::NeanderObject(v8::internal::Object* obj)
76 : value_(v8::internal::Handle<v8::internal::JSObject>(
77 v8::internal::JSObject::cast(obj))) { }
78
79
80NeanderArray::NeanderArray(v8::internal::Handle<v8::internal::Object> obj)
81 : obj_(obj) { }
82
83
84v8::internal::Object* NeanderObject::get(int offset) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000085 DCHECK(value()->HasFastObjectElements());
Steve Blocka7e24c12009-10-30 11:49:00 +000086 return v8::internal::FixedArray::cast(value()->elements())->get(offset);
87}
88
89
90void NeanderObject::set(int offset, v8::internal::Object* value) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000091 DCHECK(value_->HasFastObjectElements());
Steve Blocka7e24c12009-10-30 11:49:00 +000092 v8::internal::FixedArray::cast(value_->elements())->set(offset, value);
93}
94
95
Ben Murdoch3ef787d2012-04-12 10:51:47 +010096template <typename T> inline T ToCData(v8::internal::Object* obj) {
Steve Blocka7e24c12009-10-30 11:49:00 +000097 STATIC_ASSERT(sizeof(T) == sizeof(v8::internal::Address));
98 return reinterpret_cast<T>(
Ben Murdoch3ef787d2012-04-12 10:51:47 +010099 reinterpret_cast<intptr_t>(
100 v8::internal::Foreign::cast(obj)->foreign_address()));
Steve Blocka7e24c12009-10-30 11:49:00 +0000101}
102
103
104template <typename T>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000105inline v8::internal::Handle<v8::internal::Object> FromCData(
106 v8::internal::Isolate* isolate, T obj) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000107 STATIC_ASSERT(sizeof(T) == sizeof(v8::internal::Address));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000108 return isolate->factory()->NewForeign(
Steve Blocka7e24c12009-10-30 11:49:00 +0000109 reinterpret_cast<v8::internal::Address>(reinterpret_cast<intptr_t>(obj)));
110}
111
112
Steve Blockd0582a62009-12-15 09:54:21 +0000113class ApiFunction {
114 public:
115 explicit ApiFunction(v8::internal::Address addr) : addr_(addr) { }
116 v8::internal::Address address() { return addr_; }
117 private:
118 v8::internal::Address addr_;
119};
120
121
Steve Blocka7e24c12009-10-30 11:49:00 +0000122
123class RegisteredExtension {
124 public:
125 explicit RegisteredExtension(Extension* extension);
126 static void Register(RegisteredExtension* that);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000127 static void UnregisterAll();
Steve Blocka7e24c12009-10-30 11:49:00 +0000128 Extension* extension() { return extension_; }
129 RegisteredExtension* next() { return next_; }
Steve Blocka7e24c12009-10-30 11:49:00 +0000130 static RegisteredExtension* first_extension() { return first_extension_; }
131 private:
132 Extension* extension_;
133 RegisteredExtension* next_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000134 static RegisteredExtension* first_extension_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000135};
136
137
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000138#define OPEN_HANDLE_LIST(V) \
139 V(Template, TemplateInfo) \
140 V(FunctionTemplate, FunctionTemplateInfo) \
141 V(ObjectTemplate, ObjectTemplateInfo) \
142 V(Signature, SignatureInfo) \
143 V(AccessorSignature, FunctionTemplateInfo) \
144 V(TypeSwitch, TypeSwitchInfo) \
145 V(Data, Object) \
146 V(RegExp, JSRegExp) \
147 V(Object, JSObject) \
148 V(Array, JSArray) \
149 V(ArrayBuffer, JSArrayBuffer) \
150 V(ArrayBufferView, JSArrayBufferView) \
151 V(TypedArray, JSTypedArray) \
152 V(Uint8Array, JSTypedArray) \
153 V(Uint8ClampedArray, JSTypedArray) \
154 V(Int8Array, JSTypedArray) \
155 V(Uint16Array, JSTypedArray) \
156 V(Int16Array, JSTypedArray) \
157 V(Uint32Array, JSTypedArray) \
158 V(Int32Array, JSTypedArray) \
159 V(Float32Array, JSTypedArray) \
160 V(Float64Array, JSTypedArray) \
161 V(DataView, JSDataView) \
162 V(Name, Name) \
163 V(String, String) \
164 V(Symbol, Symbol) \
165 V(Script, JSFunction) \
166 V(UnboundScript, SharedFunctionInfo) \
167 V(Function, JSFunction) \
168 V(Message, JSMessageObject) \
169 V(Context, Context) \
170 V(External, Object) \
171 V(StackTrace, JSArray) \
172 V(StackFrame, JSObject) \
173 V(DeclaredAccessorDescriptor, DeclaredAccessorDescriptor)
174
175
Steve Blocka7e24c12009-10-30 11:49:00 +0000176class Utils {
177 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000178 static inline bool ApiCheck(bool condition,
179 const char* location,
180 const char* message) {
181 if (!condition) Utils::ReportApiFailure(location, message);
182 return condition;
183 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000184
185 static Local<FunctionTemplate> ToFunctionTemplate(NeanderObject obj);
186 static Local<ObjectTemplate> ToObjectTemplate(NeanderObject obj);
187
188 static inline Local<Context> ToLocal(
189 v8::internal::Handle<v8::internal::Context> obj);
190 static inline Local<Value> ToLocal(
191 v8::internal::Handle<v8::internal::Object> obj);
192 static inline Local<Function> ToLocal(
193 v8::internal::Handle<v8::internal::JSFunction> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000194 static inline Local<Name> ToLocal(
195 v8::internal::Handle<v8::internal::Name> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000196 static inline Local<String> ToLocal(
197 v8::internal::Handle<v8::internal::String> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000198 static inline Local<Symbol> ToLocal(
199 v8::internal::Handle<v8::internal::Symbol> obj);
Ben Murdochf87a2032010-10-22 12:50:53 +0100200 static inline Local<RegExp> ToLocal(
201 v8::internal::Handle<v8::internal::JSRegExp> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000202 static inline Local<Object> ToLocal(
203 v8::internal::Handle<v8::internal::JSObject> obj);
204 static inline Local<Array> ToLocal(
205 v8::internal::Handle<v8::internal::JSArray> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000206 static inline Local<ArrayBuffer> ToLocal(
207 v8::internal::Handle<v8::internal::JSArrayBuffer> obj);
208 static inline Local<ArrayBufferView> ToLocal(
209 v8::internal::Handle<v8::internal::JSArrayBufferView> obj);
210 static inline Local<DataView> ToLocal(
211 v8::internal::Handle<v8::internal::JSDataView> obj);
212
213 static inline Local<TypedArray> ToLocal(
214 v8::internal::Handle<v8::internal::JSTypedArray> obj);
215 static inline Local<Uint8Array> ToLocalUint8Array(
216 v8::internal::Handle<v8::internal::JSTypedArray> obj);
217 static inline Local<Uint8ClampedArray> ToLocalUint8ClampedArray(
218 v8::internal::Handle<v8::internal::JSTypedArray> obj);
219 static inline Local<Int8Array> ToLocalInt8Array(
220 v8::internal::Handle<v8::internal::JSTypedArray> obj);
221 static inline Local<Uint16Array> ToLocalUint16Array(
222 v8::internal::Handle<v8::internal::JSTypedArray> obj);
223 static inline Local<Int16Array> ToLocalInt16Array(
224 v8::internal::Handle<v8::internal::JSTypedArray> obj);
225 static inline Local<Uint32Array> ToLocalUint32Array(
226 v8::internal::Handle<v8::internal::JSTypedArray> obj);
227 static inline Local<Int32Array> ToLocalInt32Array(
228 v8::internal::Handle<v8::internal::JSTypedArray> obj);
229 static inline Local<Float32Array> ToLocalFloat32Array(
230 v8::internal::Handle<v8::internal::JSTypedArray> obj);
231 static inline Local<Float64Array> ToLocalFloat64Array(
232 v8::internal::Handle<v8::internal::JSTypedArray> obj);
233
Steve Blocka7e24c12009-10-30 11:49:00 +0000234 static inline Local<Message> MessageToLocal(
235 v8::internal::Handle<v8::internal::Object> obj);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400236 static inline Local<Promise> PromiseToLocal(
237 v8::internal::Handle<v8::internal::JSObject> obj);
Kristian Monsen25f61362010-05-21 11:50:48 +0100238 static inline Local<StackTrace> StackTraceToLocal(
239 v8::internal::Handle<v8::internal::JSArray> obj);
240 static inline Local<StackFrame> StackFrameToLocal(
241 v8::internal::Handle<v8::internal::JSObject> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000242 static inline Local<Number> NumberToLocal(
243 v8::internal::Handle<v8::internal::Object> obj);
244 static inline Local<Integer> IntegerToLocal(
245 v8::internal::Handle<v8::internal::Object> obj);
246 static inline Local<Uint32> Uint32ToLocal(
247 v8::internal::Handle<v8::internal::Object> obj);
248 static inline Local<FunctionTemplate> ToLocal(
249 v8::internal::Handle<v8::internal::FunctionTemplateInfo> obj);
250 static inline Local<ObjectTemplate> ToLocal(
251 v8::internal::Handle<v8::internal::ObjectTemplateInfo> obj);
252 static inline Local<Signature> ToLocal(
253 v8::internal::Handle<v8::internal::SignatureInfo> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000254 static inline Local<AccessorSignature> AccessorSignatureToLocal(
255 v8::internal::Handle<v8::internal::FunctionTemplateInfo> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000256 static inline Local<TypeSwitch> ToLocal(
257 v8::internal::Handle<v8::internal::TypeSwitchInfo> obj);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000258 static inline Local<External> ExternalToLocal(
259 v8::internal::Handle<v8::internal::JSObject> obj);
260 static inline Local<DeclaredAccessorDescriptor> ToLocal(
261 v8::internal::Handle<v8::internal::DeclaredAccessorDescriptor> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000262
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000263#define DECLARE_OPEN_HANDLE(From, To) \
264 static inline v8::internal::Handle<v8::internal::To> \
265 OpenHandle(const From* that, bool allow_empty_handle = false);
266
267OPEN_HANDLE_LIST(DECLARE_OPEN_HANDLE)
268
269#undef DECLARE_OPEN_HANDLE
270
271 template<class From, class To>
272 static inline Local<To> Convert(v8::internal::Handle<From> obj) {
273 DCHECK(obj.is_null() || !obj->IsTheHole());
274 return Local<To>(reinterpret_cast<To*>(obj.location()));
275 }
276
277 template <class T>
278 static inline v8::internal::Handle<v8::internal::Object> OpenPersistent(
279 const v8::Persistent<T>& persistent) {
280 return v8::internal::Handle<v8::internal::Object>(
281 reinterpret_cast<v8::internal::Object**>(persistent.val_));
282 }
283
284 template <class T>
285 static inline v8::internal::Handle<v8::internal::Object> OpenPersistent(
286 v8::Persistent<T>* persistent) {
287 return OpenPersistent(*persistent);
288 }
289
290 template <class From, class To>
291 static inline v8::internal::Handle<To> OpenHandle(v8::Local<From> handle) {
292 return OpenHandle(*handle);
293 }
294
295 private:
296 static void ReportApiFailure(const char* location, const char* message);
Steve Blocka7e24c12009-10-30 11:49:00 +0000297};
298
299
300template <class T>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000301v8::internal::Handle<T> v8::internal::Handle<T>::EscapeFrom(
302 v8::EscapableHandleScope* scope) {
303 v8::internal::Handle<T> handle;
304 if (!is_null()) {
305 handle = *this;
306 }
307 return Utils::OpenHandle(*scope->Escape(Utils::ToLocal(handle)), true);
308}
309
310
311template <class T>
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100312inline T* ToApi(v8::internal::Handle<v8::internal::Object> obj) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000313 return reinterpret_cast<T*>(obj.location());
314}
315
Steve Blocka7e24c12009-10-30 11:49:00 +0000316template <class T>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000317inline v8::Local<T> ToApiHandle(
318 v8::internal::Handle<v8::internal::Object> obj) {
319 return Utils::Convert<v8::internal::Object, T>(obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000320}
321
322
323// Implementations of ToLocal
324
325#define MAKE_TO_LOCAL(Name, From, To) \
326 Local<v8::To> Utils::Name(v8::internal::Handle<v8::internal::From> obj) { \
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000327 return Convert<v8::internal::From, v8::To>(obj); \
Steve Blocka7e24c12009-10-30 11:49:00 +0000328 }
329
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000330
331#define MAKE_TO_LOCAL_TYPED_ARRAY(Type, typeName, TYPE, ctype, size) \
332 Local<v8::Type##Array> Utils::ToLocal##Type##Array( \
333 v8::internal::Handle<v8::internal::JSTypedArray> obj) { \
334 DCHECK(obj->type() == kExternal##Type##Array); \
335 return Convert<v8::internal::JSTypedArray, v8::Type##Array>(obj); \
336 }
337
338
Steve Blocka7e24c12009-10-30 11:49:00 +0000339MAKE_TO_LOCAL(ToLocal, Context, Context)
340MAKE_TO_LOCAL(ToLocal, Object, Value)
341MAKE_TO_LOCAL(ToLocal, JSFunction, Function)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000342MAKE_TO_LOCAL(ToLocal, Name, Name)
Steve Blocka7e24c12009-10-30 11:49:00 +0000343MAKE_TO_LOCAL(ToLocal, String, String)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000344MAKE_TO_LOCAL(ToLocal, Symbol, Symbol)
Ben Murdochf87a2032010-10-22 12:50:53 +0100345MAKE_TO_LOCAL(ToLocal, JSRegExp, RegExp)
Steve Blocka7e24c12009-10-30 11:49:00 +0000346MAKE_TO_LOCAL(ToLocal, JSObject, Object)
347MAKE_TO_LOCAL(ToLocal, JSArray, Array)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000348MAKE_TO_LOCAL(ToLocal, JSArrayBuffer, ArrayBuffer)
349MAKE_TO_LOCAL(ToLocal, JSArrayBufferView, ArrayBufferView)
350MAKE_TO_LOCAL(ToLocal, JSDataView, DataView)
351MAKE_TO_LOCAL(ToLocal, JSTypedArray, TypedArray)
352
353TYPED_ARRAYS(MAKE_TO_LOCAL_TYPED_ARRAY)
354
Steve Blocka7e24c12009-10-30 11:49:00 +0000355MAKE_TO_LOCAL(ToLocal, FunctionTemplateInfo, FunctionTemplate)
356MAKE_TO_LOCAL(ToLocal, ObjectTemplateInfo, ObjectTemplate)
357MAKE_TO_LOCAL(ToLocal, SignatureInfo, Signature)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000358MAKE_TO_LOCAL(AccessorSignatureToLocal, FunctionTemplateInfo, AccessorSignature)
Steve Blocka7e24c12009-10-30 11:49:00 +0000359MAKE_TO_LOCAL(ToLocal, TypeSwitchInfo, TypeSwitch)
360MAKE_TO_LOCAL(MessageToLocal, Object, Message)
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400361MAKE_TO_LOCAL(PromiseToLocal, JSObject, Promise)
Kristian Monsen25f61362010-05-21 11:50:48 +0100362MAKE_TO_LOCAL(StackTraceToLocal, JSArray, StackTrace)
363MAKE_TO_LOCAL(StackFrameToLocal, JSObject, StackFrame)
Steve Blocka7e24c12009-10-30 11:49:00 +0000364MAKE_TO_LOCAL(NumberToLocal, Object, Number)
365MAKE_TO_LOCAL(IntegerToLocal, Object, Integer)
366MAKE_TO_LOCAL(Uint32ToLocal, Object, Uint32)
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000367MAKE_TO_LOCAL(ExternalToLocal, JSObject, External)
368MAKE_TO_LOCAL(ToLocal, DeclaredAccessorDescriptor, DeclaredAccessorDescriptor)
Steve Blocka7e24c12009-10-30 11:49:00 +0000369
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000370#undef MAKE_TO_LOCAL_TYPED_ARRAY
Steve Blocka7e24c12009-10-30 11:49:00 +0000371#undef MAKE_TO_LOCAL
372
373
374// Implementations of OpenHandle
375
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000376#define MAKE_OPEN_HANDLE(From, To) \
377 v8::internal::Handle<v8::internal::To> Utils::OpenHandle( \
378 const v8::From* that, bool allow_empty_handle) { \
379 EXTRA_CHECK(allow_empty_handle || that != NULL); \
380 EXTRA_CHECK(that == NULL || \
381 (*reinterpret_cast<v8::internal::Object* const*>(that))->Is##To()); \
382 return v8::internal::Handle<v8::internal::To>( \
Steve Blocka7e24c12009-10-30 11:49:00 +0000383 reinterpret_cast<v8::internal::To**>(const_cast<v8::From*>(that))); \
384 }
385
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000386OPEN_HANDLE_LIST(MAKE_OPEN_HANDLE)
Steve Blocka7e24c12009-10-30 11:49:00 +0000387
388#undef MAKE_OPEN_HANDLE
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000389#undef OPEN_HANDLE_LIST
Steve Blocka7e24c12009-10-30 11:49:00 +0000390
391
392namespace internal {
393
Steve Block44f0eee2011-05-26 01:26:41 +0100394// Tracks string usage to help make better decisions when
395// externalizing strings.
396//
397// Implementation note: internally this class only tracks fresh
398// strings and keeps a single use counter for them.
399class StringTracker {
400 public:
401 // Records that the given string's characters were copied to some
402 // external buffer. If this happens often we should honor
403 // externalization requests for the string.
404 void RecordWrite(Handle<String> string) {
405 Address address = reinterpret_cast<Address>(*string);
406 Address top = isolate_->heap()->NewSpaceTop();
407 if (IsFreshString(address, top)) {
408 IncrementUseCount(top);
409 }
410 }
411
412 // Estimates freshness and use frequency of the given string based
413 // on how close it is to the new space top and the recorded usage
414 // history.
415 inline bool IsFreshUnusedString(Handle<String> string) {
416 Address address = reinterpret_cast<Address>(*string);
417 Address top = isolate_->heap()->NewSpaceTop();
418 return IsFreshString(address, top) && IsUseCountLow(top);
419 }
420
421 private:
422 StringTracker() : use_count_(0), last_top_(NULL), isolate_(NULL) { }
423
424 static inline bool IsFreshString(Address string, Address top) {
425 return top - kFreshnessLimit <= string && string <= top;
426 }
427
428 inline bool IsUseCountLow(Address top) {
429 if (last_top_ != top) return true;
430 return use_count_ < kUseLimit;
431 }
432
433 inline void IncrementUseCount(Address top) {
434 if (last_top_ != top) {
435 use_count_ = 0;
436 last_top_ = top;
437 }
438 ++use_count_;
439 }
440
441 // Single use counter shared by all fresh strings.
442 int use_count_;
443
444 // Last new space top when the use count above was valid.
445 Address last_top_;
446
447 Isolate* isolate_;
448
449 // How close to the new space top a fresh string has to be.
450 static const int kFreshnessLimit = 1024;
451
452 // The number of uses required to consider a string useful.
453 static const int kUseLimit = 32;
454
455 friend class Isolate;
456
457 DISALLOW_COPY_AND_ASSIGN(StringTracker);
458};
459
460
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000461class DeferredHandles {
462 public:
463 ~DeferredHandles();
464
465 private:
466 DeferredHandles(Object** first_block_limit, Isolate* isolate)
467 : next_(NULL),
468 previous_(NULL),
469 first_block_limit_(first_block_limit),
470 isolate_(isolate) {
471 isolate->LinkDeferredHandles(this);
472 }
473
474 void Iterate(ObjectVisitor* v);
475
476 List<Object**> blocks_;
477 DeferredHandles* next_;
478 DeferredHandles* previous_;
479 Object** first_block_limit_;
480 Isolate* isolate_;
481
482 friend class HandleScopeImplementer;
483 friend class Isolate;
484};
485
486
Steve Blocka7e24c12009-10-30 11:49:00 +0000487// This class is here in order to be able to declare it a friend of
488// HandleScope. Moving these methods to be members of HandleScope would be
Steve Block44f0eee2011-05-26 01:26:41 +0100489// neat in some ways, but it would expose internal implementation details in
Steve Blocka7e24c12009-10-30 11:49:00 +0000490// our public header file, which is undesirable.
491//
Steve Block44f0eee2011-05-26 01:26:41 +0100492// An isolate has a single instance of this class to hold the current thread's
493// data. In multithreaded V8 programs this data is copied in and out of storage
Steve Blocka7e24c12009-10-30 11:49:00 +0000494// so that the currently executing thread always has its own copy of this
495// data.
Ben Murdoch257744e2011-11-30 15:57:28 +0000496class HandleScopeImplementer {
Steve Blocka7e24c12009-10-30 11:49:00 +0000497 public:
Ben Murdoch257744e2011-11-30 15:57:28 +0000498 explicit HandleScopeImplementer(Isolate* isolate)
499 : isolate_(isolate),
500 blocks_(0),
Steve Blocka7e24c12009-10-30 11:49:00 +0000501 entered_contexts_(0),
502 saved_contexts_(0),
503 spare_(NULL),
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000504 call_depth_(0),
505 last_handle_before_deferred_block_(NULL) { }
Steve Blocka7e24c12009-10-30 11:49:00 +0000506
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000507 ~HandleScopeImplementer() {
508 DeleteArray(spare_);
509 }
510
Steve Blocka7e24c12009-10-30 11:49:00 +0000511 // Threading support for handle data.
512 static int ArchiveSpacePerThread();
Steve Block44f0eee2011-05-26 01:26:41 +0100513 char* RestoreThread(char* from);
514 char* ArchiveThread(char* to);
515 void FreeThreadResources();
Steve Blocka7e24c12009-10-30 11:49:00 +0000516
517 // Garbage collection support.
Steve Block44f0eee2011-05-26 01:26:41 +0100518 void Iterate(v8::internal::ObjectVisitor* v);
Steve Blocka7e24c12009-10-30 11:49:00 +0000519 static char* Iterate(v8::internal::ObjectVisitor* v, char* data);
520
521
522 inline internal::Object** GetSpareOrNewBlock();
John Reck59135872010-11-02 12:39:01 -0700523 inline void DeleteExtensions(internal::Object** prev_limit);
Steve Blocka7e24c12009-10-30 11:49:00 +0000524
525 inline void IncrementCallDepth() {call_depth_++;}
526 inline void DecrementCallDepth() {call_depth_--;}
527 inline bool CallDepthIsZero() { return call_depth_ == 0; }
528
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000529 inline void EnterContext(Handle<Context> context);
530 inline void LeaveContext();
531 inline bool LastEnteredContextWas(Handle<Context> context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000532
533 // Returns the last entered context or an empty handle if no
534 // contexts have been entered.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000535 inline Handle<Context> LastEnteredContext();
Steve Blocka7e24c12009-10-30 11:49:00 +0000536
537 inline void SaveContext(Context* context);
538 inline Context* RestoreContext();
539 inline bool HasSavedContexts();
540
541 inline List<internal::Object**>* blocks() { return &blocks_; }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000542 Isolate* isolate() const { return isolate_; }
543
544 void ReturnBlock(Object** block) {
545 DCHECK(block != NULL);
546 if (spare_ != NULL) DeleteArray(spare_);
547 spare_ = block;
548 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000549
550 private:
551 void ResetAfterArchive() {
552 blocks_.Initialize(0);
553 entered_contexts_.Initialize(0);
554 saved_contexts_.Initialize(0);
555 spare_ = NULL;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000556 last_handle_before_deferred_block_ = NULL;
Steve Blocka7e24c12009-10-30 11:49:00 +0000557 call_depth_ = 0;
558 }
559
560 void Free() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000561 DCHECK(blocks_.length() == 0);
562 DCHECK(entered_contexts_.length() == 0);
563 DCHECK(saved_contexts_.length() == 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000564 blocks_.Free();
565 entered_contexts_.Free();
566 saved_contexts_.Free();
567 if (spare_ != NULL) {
568 DeleteArray(spare_);
569 spare_ = NULL;
570 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000571 DCHECK(call_depth_ == 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000572 }
573
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000574 void BeginDeferredScope();
575 DeferredHandles* Detach(Object** prev_limit);
576
Ben Murdoch257744e2011-11-30 15:57:28 +0000577 Isolate* isolate_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000578 List<internal::Object**> blocks_;
579 // Used as a stack to keep track of entered contexts.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000580 List<Context*> entered_contexts_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000581 // Used as a stack to keep track of saved contexts.
582 List<Context*> saved_contexts_;
583 Object** spare_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000584 int call_depth_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000585 Object** last_handle_before_deferred_block_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000586 // This is only used for threading support.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000587 HandleScopeData handle_scope_data_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000588
589 void IterateThis(ObjectVisitor* v);
590 char* RestoreThreadHelper(char* from);
591 char* ArchiveThreadHelper(char* to);
592
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000593 friend class DeferredHandles;
594 friend class DeferredHandleScope;
595
Steve Blocka7e24c12009-10-30 11:49:00 +0000596 DISALLOW_COPY_AND_ASSIGN(HandleScopeImplementer);
597};
598
599
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100600const int kHandleBlockSize = v8::internal::KB - 2; // fit in one page
Steve Blocka7e24c12009-10-30 11:49:00 +0000601
602
603void HandleScopeImplementer::SaveContext(Context* context) {
604 saved_contexts_.Add(context);
605}
606
607
608Context* HandleScopeImplementer::RestoreContext() {
609 return saved_contexts_.RemoveLast();
610}
611
612
613bool HandleScopeImplementer::HasSavedContexts() {
614 return !saved_contexts_.is_empty();
615}
616
617
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000618void HandleScopeImplementer::EnterContext(Handle<Context> context) {
619 entered_contexts_.Add(*context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000620}
621
622
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000623void HandleScopeImplementer::LeaveContext() {
Steve Blocka7e24c12009-10-30 11:49:00 +0000624 entered_contexts_.RemoveLast();
Steve Blocka7e24c12009-10-30 11:49:00 +0000625}
626
627
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000628bool HandleScopeImplementer::LastEnteredContextWas(Handle<Context> context) {
629 return !entered_contexts_.is_empty() && entered_contexts_.last() == *context;
630}
631
632
633Handle<Context> HandleScopeImplementer::LastEnteredContext() {
634 if (entered_contexts_.is_empty()) return Handle<Context>::null();
635 return Handle<Context>(entered_contexts_.last());
Steve Blocka7e24c12009-10-30 11:49:00 +0000636}
637
638
639// If there's a spare block, use it for growing the current scope.
640internal::Object** HandleScopeImplementer::GetSpareOrNewBlock() {
641 internal::Object** block = (spare_ != NULL) ?
642 spare_ :
643 NewArray<internal::Object*>(kHandleBlockSize);
644 spare_ = NULL;
645 return block;
646}
647
648
John Reck59135872010-11-02 12:39:01 -0700649void HandleScopeImplementer::DeleteExtensions(internal::Object** prev_limit) {
650 while (!blocks_.is_empty()) {
651 internal::Object** block_start = blocks_.last();
652 internal::Object** block_limit = block_start + kHandleBlockSize;
Steve Blocka7e24c12009-10-30 11:49:00 +0000653#ifdef DEBUG
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000654 // SealHandleScope may make the prev_limit to point inside the block.
655 if (block_start <= prev_limit && prev_limit <= block_limit) {
656#ifdef ENABLE_HANDLE_ZAPPING
657 internal::HandleScope::ZapRange(prev_limit, block_limit);
658#endif
659 break;
660 }
John Reck59135872010-11-02 12:39:01 -0700661#else
662 if (prev_limit == block_limit) break;
Steve Blocka7e24c12009-10-30 11:49:00 +0000663#endif
John Reck59135872010-11-02 12:39:01 -0700664
665 blocks_.RemoveLast();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000666#ifdef ENABLE_HANDLE_ZAPPING
667 internal::HandleScope::ZapRange(block_start, block_limit);
Steve Blocka7e24c12009-10-30 11:49:00 +0000668#endif
John Reck59135872010-11-02 12:39:01 -0700669 if (spare_ != NULL) {
670 DeleteArray(spare_);
671 }
672 spare_ = block_start;
673 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000674 DCHECK((blocks_.is_empty() && prev_limit == NULL) ||
John Reck59135872010-11-02 12:39:01 -0700675 (!blocks_.is_empty() && prev_limit != NULL));
Steve Blocka7e24c12009-10-30 11:49:00 +0000676}
677
Ben Murdochb0fe1622011-05-05 13:52:32 +0100678
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000679// Interceptor functions called from generated inline caches to notify
680// CPU profiler that external callbacks are invoked.
681void InvokeAccessorGetterCallback(
682 v8::Local<v8::Name> property,
683 const v8::PropertyCallbackInfo<v8::Value>& info,
684 v8::AccessorNameGetterCallback getter);
685
686void InvokeFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>& info,
687 v8::FunctionCallback callback);
688
Ben Murdochb0fe1622011-05-05 13:52:32 +0100689class Testing {
690 public:
691 static v8::Testing::StressType stress_type() { return stress_type_; }
692 static void set_stress_type(v8::Testing::StressType stress_type) {
693 stress_type_ = stress_type;
694 }
695
696 private:
697 static v8::Testing::StressType stress_type_;
698};
699
Steve Blocka7e24c12009-10-30 11:49:00 +0000700} } // namespace v8::internal
701
702#endif // V8_API_H_