blob: cfa65b3786b8675bd4be7371845402614aa00f95 [file] [log] [blame]
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001// Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +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#ifndef V8_HANDLES_H_
29#define V8_HANDLES_H_
30
Ben Murdoch257744e2011-11-30 15:57:28 +000031#include "allocation.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000032#include "apiutils.h"
33
34namespace v8 {
35namespace internal {
36
37// ----------------------------------------------------------------------------
38// A Handle provides a reference to an object that survives relocation by
39// the garbage collector.
40// Handles are only valid within a HandleScope.
41// When a handle is created for an object a cell is allocated in the heap.
42
Ben Murdoche0cee9b2011-05-25 10:26:03 +010043template<typename T>
Steve Blocka7e24c12009-10-30 11:49:00 +000044class Handle {
45 public:
Steve Block6ded16b2010-05-10 14:33:55 +010046 INLINE(explicit Handle(T** location)) { location_ = location; }
Steve Blocka7e24c12009-10-30 11:49:00 +000047 INLINE(explicit Handle(T* obj));
Steve Block44f0eee2011-05-26 01:26:41 +010048 INLINE(Handle(T* obj, Isolate* isolate));
Steve Blocka7e24c12009-10-30 11:49:00 +000049
50 INLINE(Handle()) : location_(NULL) {}
51
52 // Constructor for handling automatic up casting.
53 // Ex. Handle<JSFunction> can be passed when Handle<Object> is expected.
54 template <class S> Handle(Handle<S> handle) {
55#ifdef DEBUG
56 T* a = NULL;
57 S* b = NULL;
58 a = b; // Fake assignment to enforce type checks.
59 USE(a);
60#endif
61 location_ = reinterpret_cast<T**>(handle.location());
62 }
63
64 INLINE(T* operator ->() const) { return operator*(); }
65
66 // Check if this handle refers to the exact same object as the other handle.
67 bool is_identical_to(const Handle<T> other) const {
68 return operator*() == *other;
69 }
70
71 // Provides the C++ dereference operator.
72 INLINE(T* operator*() const);
73
74 // Returns the address to where the raw pointer is stored.
75 T** location() const {
76 ASSERT(location_ == NULL ||
77 reinterpret_cast<Address>(*location_) != kZapValue);
78 return location_;
79 }
80
81 template <class S> static Handle<T> cast(Handle<S> that) {
82 T::cast(*that);
83 return Handle<T>(reinterpret_cast<T**>(that.location()));
84 }
85
86 static Handle<T> null() { return Handle<T>(); }
Steve Block44f0eee2011-05-26 01:26:41 +010087 bool is_null() const { return location_ == NULL; }
Steve Blocka7e24c12009-10-30 11:49:00 +000088
89 // Closes the given scope, but lets this handle escape. See
90 // implementation in api.h.
91 inline Handle<T> EscapeFrom(v8::HandleScope* scope);
92
93 private:
94 T** location_;
95};
96
97
98// A stack-allocated class that governs a number of local handles.
99// After a handle scope has been created, all local handles will be
100// allocated within that handle scope until either the handle scope is
101// deleted or another handle scope is created. If there is already a
102// handle scope and a new one is created, all allocations will take
103// place in the new handle scope until it is deleted. After that,
104// new handles will again be allocated in the original handle scope.
105//
106// After the handle scope of a local handle has been deleted the
107// garbage collector will no longer track the object stored in the
108// handle and may deallocate it. The behavior of accessing a handle
109// for which the handle scope has been deleted is undefined.
110class HandleScope {
111 public:
Steve Block44f0eee2011-05-26 01:26:41 +0100112 inline HandleScope();
113 explicit inline HandleScope(Isolate* isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000114
Steve Block44f0eee2011-05-26 01:26:41 +0100115 inline ~HandleScope();
Steve Blocka7e24c12009-10-30 11:49:00 +0000116
117 // Counts the number of allocated handles.
118 static int NumberOfHandles();
119
120 // Creates a new handle with the given value.
121 template <typename T>
Steve Block44f0eee2011-05-26 01:26:41 +0100122 static inline T** CreateHandle(T* value, Isolate* isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000123
Steve Blockd0582a62009-12-15 09:54:21 +0000124 // Deallocates any extensions used by the current scope.
Steve Block44f0eee2011-05-26 01:26:41 +0100125 static void DeleteExtensions(Isolate* isolate);
Steve Blockd0582a62009-12-15 09:54:21 +0000126
Steve Blockd0582a62009-12-15 09:54:21 +0000127 static Address current_next_address();
128 static Address current_limit_address();
John Reck59135872010-11-02 12:39:01 -0700129 static Address current_level_address();
Steve Blockd0582a62009-12-15 09:54:21 +0000130
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100131 // Closes the HandleScope (invalidating all handles
132 // created in the scope of the HandleScope) and returns
133 // a Handle backed by the parent scope holding the
134 // value of the argument handle.
135 template <typename T>
Steve Block44f0eee2011-05-26 01:26:41 +0100136 Handle<T> CloseAndEscape(Handle<T> handle_value);
137
138 Isolate* isolate() { return isolate_; }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100139
Steve Blocka7e24c12009-10-30 11:49:00 +0000140 private:
141 // Prevent heap allocation or illegal handle scopes.
142 HandleScope(const HandleScope&);
143 void operator=(const HandleScope&);
144 void* operator new(size_t size);
145 void operator delete(void* size_t);
146
Steve Block44f0eee2011-05-26 01:26:41 +0100147 inline void CloseScope();
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100148
Steve Block44f0eee2011-05-26 01:26:41 +0100149 Isolate* isolate_;
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100150 Object** prev_next_;
151 Object** prev_limit_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000152
153 // Extend the handle scope making room for more handles.
154 static internal::Object** Extend();
155
Steve Blocka7e24c12009-10-30 11:49:00 +0000156 // Zaps the handles in the half-open interval [start, end).
157 static void ZapRange(internal::Object** start, internal::Object** end);
158
159 friend class v8::HandleScope;
160 friend class v8::ImplementationUtilities;
161};
162
163
164// ----------------------------------------------------------------------------
165// Handle operations.
166// They might invoke garbage collection. The result is an handle to
167// an object of expected type, or the handle is an error if running out
168// of space or encountering an internal error.
169
170void NormalizeProperties(Handle<JSObject> object,
171 PropertyNormalizationMode mode,
172 int expected_additional_properties);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000173Handle<NumberDictionary> NormalizeElements(Handle<JSObject> object);
Steve Blocka7e24c12009-10-30 11:49:00 +0000174void TransformToFastProperties(Handle<JSObject> object,
175 int unused_property_fields);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000176MUST_USE_RESULT Handle<NumberDictionary> NumberDictionarySet(
177 Handle<NumberDictionary> dictionary,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000178 uint32_t index,
179 Handle<Object> value,
180 PropertyDetails details);
Steve Block8defd9f2010-07-08 12:39:36 +0100181
182// Flattens a string.
Steve Blocka7e24c12009-10-30 11:49:00 +0000183void FlattenString(Handle<String> str);
184
Steve Block8defd9f2010-07-08 12:39:36 +0100185// Flattens a string and returns the underlying external or sequential
186// string.
187Handle<String> FlattenGetString(Handle<String> str);
188
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000189Handle<Object> SetProperty(Handle<JSReceiver> object,
Steve Blocka7e24c12009-10-30 11:49:00 +0000190 Handle<String> key,
191 Handle<Object> value,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100192 PropertyAttributes attributes,
193 StrictModeFlag strict_mode);
Steve Blocka7e24c12009-10-30 11:49:00 +0000194
195Handle<Object> SetProperty(Handle<Object> object,
196 Handle<Object> key,
197 Handle<Object> value,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100198 PropertyAttributes attributes,
199 StrictModeFlag strict_mode);
Steve Blocka7e24c12009-10-30 11:49:00 +0000200
201Handle<Object> ForceSetProperty(Handle<JSObject> object,
202 Handle<Object> key,
203 Handle<Object> value,
204 PropertyAttributes attributes);
205
Andrei Popescu31002712010-02-23 13:46:05 +0000206Handle<Object> SetNormalizedProperty(Handle<JSObject> object,
207 Handle<String> key,
208 Handle<Object> value,
209 PropertyDetails details);
210
Steve Blocka7e24c12009-10-30 11:49:00 +0000211Handle<Object> ForceDeleteProperty(Handle<JSObject> object,
212 Handle<Object> key);
213
Ben Murdoch086aeea2011-05-13 15:57:08 +0100214Handle<Object> SetLocalPropertyIgnoreAttributes(
215 Handle<JSObject> object,
216 Handle<String> key,
217 Handle<Object> value,
Steve Blocka7e24c12009-10-30 11:49:00 +0000218 PropertyAttributes attributes);
219
Steve Block1e0659c2011-05-24 12:43:12 +0100220// Used to set local properties on the object we totally control
221// and which therefore has no accessors and alikes.
222void SetLocalPropertyNoThrow(Handle<JSObject> object,
223 Handle<String> key,
224 Handle<Object> value,
225 PropertyAttributes attributes = NONE);
226
Steve Block44f0eee2011-05-26 01:26:41 +0100227MUST_USE_RESULT Handle<Object> SetElement(Handle<JSObject> object,
228 uint32_t index,
229 Handle<Object> value,
230 StrictModeFlag strict_mode);
Steve Blocka7e24c12009-10-30 11:49:00 +0000231
Ben Murdoch086aeea2011-05-13 15:57:08 +0100232Handle<Object> SetOwnElement(Handle<JSObject> object,
233 uint32_t index,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100234 Handle<Object> value,
235 StrictModeFlag strict_mode);
Ben Murdoch086aeea2011-05-13 15:57:08 +0100236
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000237Handle<Object> TransitionElementsKind(Handle<JSObject> object,
238 ElementsKind to_kind);
239
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000240Handle<Object> GetProperty(Handle<JSReceiver> obj,
Steve Blocka7e24c12009-10-30 11:49:00 +0000241 const char* name);
242
243Handle<Object> GetProperty(Handle<Object> obj,
244 Handle<Object> key);
245
246Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver,
247 Handle<JSObject> holder,
248 Handle<String> name,
249 PropertyAttributes* attributes);
250
251Handle<Object> GetPrototype(Handle<Object> obj);
252
Andrei Popescu402d9372010-02-26 13:31:12 +0000253Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
254
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000255// Sets a hidden property on an object. Returns obj on success, undefined
256// if trying to set the property on a detached proxy.
257Handle<Object> SetHiddenProperty(Handle<JSObject> obj,
258 Handle<String> key,
259 Handle<Object> value);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000260
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000261int GetIdentityHash(Handle<JSReceiver> obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000262
263Handle<Object> DeleteElement(Handle<JSObject> obj, uint32_t index);
264Handle<Object> DeleteProperty(Handle<JSObject> obj, Handle<String> prop);
265
266Handle<Object> LookupSingleCharacterStringFromCode(uint32_t index);
267
268Handle<JSObject> Copy(Handle<JSObject> obj);
269
Leon Clarkef7060e22010-06-03 12:02:55 +0100270Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info);
271
Steve Blocka7e24c12009-10-30 11:49:00 +0000272Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
273 Handle<JSArray> array);
274
275// Get the JS object corresponding to the given script; create it
276// if none exists.
277Handle<JSValue> GetScriptWrapper(Handle<Script> script);
278
279// Script line number computations.
280void InitScriptLineEnds(Handle<Script> script);
Steve Block6ded16b2010-05-10 14:33:55 +0100281// For string calculates an array of line end positions. If the string
282// does not end with a new line character, this character may optionally be
283// imagined.
284Handle<FixedArray> CalculateLineEnds(Handle<String> string,
285 bool with_imaginary_last_new_line);
Steve Blocka7e24c12009-10-30 11:49:00 +0000286int GetScriptLineNumber(Handle<Script> script, int code_position);
Steve Block6ded16b2010-05-10 14:33:55 +0100287// The safe version does not make heap allocations but may work much slower.
288int GetScriptLineNumberSafe(Handle<Script> script, int code_position);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000289int GetScriptColumnNumber(Handle<Script> script, int code_position);
Steve Blocka7e24c12009-10-30 11:49:00 +0000290
291// Computes the enumerable keys from interceptors. Used for debug mirrors and
292// by GetKeysInFixedArrayFor below.
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000293v8::Handle<v8::Array> GetKeysForNamedInterceptor(Handle<JSReceiver> receiver,
Steve Blocka7e24c12009-10-30 11:49:00 +0000294 Handle<JSObject> object);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000295v8::Handle<v8::Array> GetKeysForIndexedInterceptor(Handle<JSReceiver> receiver,
Steve Blocka7e24c12009-10-30 11:49:00 +0000296 Handle<JSObject> object);
297
298enum KeyCollectionType { LOCAL_ONLY, INCLUDE_PROTOS };
299
300// Computes the enumerable keys for a JSObject. Used for implementing
301// "for (n in object) { }".
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000302Handle<FixedArray> GetKeysInFixedArrayFor(Handle<JSReceiver> object,
303 KeyCollectionType type,
304 bool* threw);
305Handle<JSArray> GetKeysFor(Handle<JSReceiver> object, bool* threw);
Steve Blockd0582a62009-12-15 09:54:21 +0000306Handle<FixedArray> GetEnumPropertyKeys(Handle<JSObject> object,
307 bool cache_result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000308
309// Computes the union of keys and return the result.
310// Used for implementing "for (n in object) { }"
311Handle<FixedArray> UnionOfKeys(Handle<FixedArray> first,
312 Handle<FixedArray> second);
313
Steve Block6ded16b2010-05-10 14:33:55 +0100314Handle<String> SubString(Handle<String> str,
315 int start,
316 int end,
317 PretenureFlag pretenure = NOT_TENURED);
Steve Blocka7e24c12009-10-30 11:49:00 +0000318
319
320// Sets the expected number of properties for the function's instances.
321void SetExpectedNofProperties(Handle<JSFunction> func, int nof);
322
323// Sets the prototype property for a function instance.
324void SetPrototypeProperty(Handle<JSFunction> func, Handle<JSObject> value);
325
326// Sets the expected number of properties based on estimate from compiler.
327void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared,
328 int estimate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000329
330
331Handle<JSGlobalProxy> ReinitializeJSGlobalProxy(
332 Handle<JSFunction> constructor,
333 Handle<JSGlobalProxy> global);
334
335Handle<Object> SetPrototype(Handle<JSFunction> function,
336 Handle<Object> prototype);
337
Steve Block44f0eee2011-05-26 01:26:41 +0100338Handle<Object> PreventExtensions(Handle<JSObject> object);
Steve Blocka7e24c12009-10-30 11:49:00 +0000339
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000340Handle<ObjectHashSet> ObjectHashSetAdd(Handle<ObjectHashSet> table,
341 Handle<Object> key);
342
343Handle<ObjectHashSet> ObjectHashSetRemove(Handle<ObjectHashSet> table,
344 Handle<Object> key);
345
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000346Handle<ObjectHashTable> PutIntoObjectHashTable(Handle<ObjectHashTable> table,
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000347 Handle<Object> key,
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000348 Handle<Object> value);
349
Steve Blocka7e24c12009-10-30 11:49:00 +0000350class NoHandleAllocation BASE_EMBEDDED {
351 public:
352#ifndef DEBUG
353 NoHandleAllocation() {}
354 ~NoHandleAllocation() {}
355#else
356 inline NoHandleAllocation();
357 inline ~NoHandleAllocation();
358 private:
John Reck59135872010-11-02 12:39:01 -0700359 int level_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000360#endif
361};
362
Steve Blocka7e24c12009-10-30 11:49:00 +0000363} } // namespace v8::internal
364
365#endif // V8_HANDLES_H_