blob: 13c6dd67f71e4aca1c7b59e6057f143a29347fd3 [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 Murdoch3fb3ca82011-12-02 17:19:32 +0000173Handle<NumberDictionary> NormalizeElements(Handle<JSObject> object);
Steve Blocka7e24c12009-10-30 11:49:00 +0000174void TransformToFastProperties(Handle<JSObject> object,
175 int unused_property_fields);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000176MUST_USE_RESULT Handle<NumberDictionary> NumberDictionarySet(
177 Handle<NumberDictionary> dictionary,
178 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 Blocka7e24c12009-10-30 11:49:00 +0000227Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object,
228 Handle<String> key,
229 Handle<Object> value,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100230 PropertyAttributes attributes,
231 StrictModeFlag strict_mode);
Steve Blocka7e24c12009-10-30 11:49:00 +0000232
Steve Block44f0eee2011-05-26 01:26:41 +0100233MUST_USE_RESULT Handle<Object> SetElement(Handle<JSObject> object,
234 uint32_t index,
235 Handle<Object> value,
236 StrictModeFlag strict_mode);
Steve Blocka7e24c12009-10-30 11:49:00 +0000237
Ben Murdoch086aeea2011-05-13 15:57:08 +0100238Handle<Object> SetOwnElement(Handle<JSObject> object,
239 uint32_t index,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100240 Handle<Object> value,
241 StrictModeFlag strict_mode);
Ben Murdoch086aeea2011-05-13 15:57:08 +0100242
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000243Handle<Object> GetProperty(Handle<JSReceiver> obj,
Steve Blocka7e24c12009-10-30 11:49:00 +0000244 const char* name);
245
246Handle<Object> GetProperty(Handle<Object> obj,
247 Handle<Object> key);
248
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000249Handle<Object> GetProperty(Handle<JSReceiver> obj,
Ben Murdoch8b112d22011-06-08 16:22:53 +0100250 Handle<String> name,
251 LookupResult* result);
252
253
Steve Block6ded16b2010-05-10 14:33:55 +0100254Handle<Object> GetElement(Handle<Object> obj,
255 uint32_t index);
256
Steve Blocka7e24c12009-10-30 11:49:00 +0000257Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver,
258 Handle<JSObject> holder,
259 Handle<String> name,
260 PropertyAttributes* attributes);
261
262Handle<Object> GetPrototype(Handle<Object> obj);
263
Andrei Popescu402d9372010-02-26 13:31:12 +0000264Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
265
Steve Blocka7e24c12009-10-30 11:49:00 +0000266// Return the object's hidden properties object. If the object has no hidden
267// properties and create_if_needed is true, then a new hidden property object
268// will be allocated. Otherwise the Heap::undefined_value is returned.
269Handle<Object> GetHiddenProperties(Handle<JSObject> obj, bool create_if_needed);
270
271Handle<Object> DeleteElement(Handle<JSObject> obj, uint32_t index);
272Handle<Object> DeleteProperty(Handle<JSObject> obj, Handle<String> prop);
273
274Handle<Object> LookupSingleCharacterStringFromCode(uint32_t index);
275
276Handle<JSObject> Copy(Handle<JSObject> obj);
277
Leon Clarkef7060e22010-06-03 12:02:55 +0100278Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info);
279
Steve Blocka7e24c12009-10-30 11:49:00 +0000280Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
281 Handle<JSArray> array);
282
283// Get the JS object corresponding to the given script; create it
284// if none exists.
285Handle<JSValue> GetScriptWrapper(Handle<Script> script);
286
287// Script line number computations.
288void InitScriptLineEnds(Handle<Script> script);
Steve Block6ded16b2010-05-10 14:33:55 +0100289// For string calculates an array of line end positions. If the string
290// does not end with a new line character, this character may optionally be
291// imagined.
292Handle<FixedArray> CalculateLineEnds(Handle<String> string,
293 bool with_imaginary_last_new_line);
Steve Blocka7e24c12009-10-30 11:49:00 +0000294int GetScriptLineNumber(Handle<Script> script, int code_position);
Steve Block6ded16b2010-05-10 14:33:55 +0100295// The safe version does not make heap allocations but may work much slower.
296int GetScriptLineNumberSafe(Handle<Script> script, int code_position);
Steve Blocka7e24c12009-10-30 11:49:00 +0000297
298// Computes the enumerable keys from interceptors. Used for debug mirrors and
299// by GetKeysInFixedArrayFor below.
300v8::Handle<v8::Array> GetKeysForNamedInterceptor(Handle<JSObject> receiver,
301 Handle<JSObject> object);
302v8::Handle<v8::Array> GetKeysForIndexedInterceptor(Handle<JSObject> receiver,
303 Handle<JSObject> object);
304
305enum KeyCollectionType { LOCAL_ONLY, INCLUDE_PROTOS };
306
307// Computes the enumerable keys for a JSObject. Used for implementing
308// "for (n in object) { }".
309Handle<FixedArray> GetKeysInFixedArrayFor(Handle<JSObject> object,
310 KeyCollectionType type);
311Handle<JSArray> GetKeysFor(Handle<JSObject> object);
Steve Blockd0582a62009-12-15 09:54:21 +0000312Handle<FixedArray> GetEnumPropertyKeys(Handle<JSObject> object,
313 bool cache_result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000314
315// Computes the union of keys and return the result.
316// Used for implementing "for (n in object) { }"
317Handle<FixedArray> UnionOfKeys(Handle<FixedArray> first,
318 Handle<FixedArray> second);
319
Steve Block6ded16b2010-05-10 14:33:55 +0100320Handle<String> SubString(Handle<String> str,
321 int start,
322 int end,
323 PretenureFlag pretenure = NOT_TENURED);
Steve Blocka7e24c12009-10-30 11:49:00 +0000324
325
326// Sets the expected number of properties for the function's instances.
327void SetExpectedNofProperties(Handle<JSFunction> func, int nof);
328
329// Sets the prototype property for a function instance.
330void SetPrototypeProperty(Handle<JSFunction> func, Handle<JSObject> value);
331
332// Sets the expected number of properties based on estimate from compiler.
333void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared,
334 int estimate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000335
336
337Handle<JSGlobalProxy> ReinitializeJSGlobalProxy(
338 Handle<JSFunction> constructor,
339 Handle<JSGlobalProxy> global);
340
341Handle<Object> SetPrototype(Handle<JSFunction> function,
342 Handle<Object> prototype);
343
Steve Block44f0eee2011-05-26 01:26:41 +0100344Handle<Object> PreventExtensions(Handle<JSObject> object);
Steve Blocka7e24c12009-10-30 11:49:00 +0000345
Steve Blockd0582a62009-12-15 09:54:21 +0000346// Does lazy compilation of the given function. Returns true on success and
347// false if the compilation resulted in a stack overflow.
Steve Blocka7e24c12009-10-30 11:49:00 +0000348enum ClearExceptionFlag { KEEP_EXCEPTION, CLEAR_EXCEPTION };
349
Leon Clarke4515c472010-02-03 11:58:03 +0000350bool EnsureCompiled(Handle<SharedFunctionInfo> shared,
351 ClearExceptionFlag flag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000352
Leon Clarke4515c472010-02-03 11:58:03 +0000353bool CompileLazyShared(Handle<SharedFunctionInfo> shared,
354 ClearExceptionFlag flag);
355
Ben Murdochf87a2032010-10-22 12:50:53 +0100356bool CompileLazy(Handle<JSFunction> function, ClearExceptionFlag flag);
Leon Clarke4515c472010-02-03 11:58:03 +0000357
Ben Murdochf87a2032010-10-22 12:50:53 +0100358bool CompileLazyInLoop(Handle<JSFunction> function, ClearExceptionFlag flag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000359
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100360bool CompileOptimized(Handle<JSFunction> function,
361 int osr_ast_id,
362 ClearExceptionFlag flag);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100363
Steve Blocka7e24c12009-10-30 11:49:00 +0000364class NoHandleAllocation BASE_EMBEDDED {
365 public:
366#ifndef DEBUG
367 NoHandleAllocation() {}
368 ~NoHandleAllocation() {}
369#else
370 inline NoHandleAllocation();
371 inline ~NoHandleAllocation();
372 private:
John Reck59135872010-11-02 12:39:01 -0700373 int level_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000374#endif
375};
376
Steve Blocka7e24c12009-10-30 11:49:00 +0000377} } // namespace v8::internal
378
379#endif // V8_HANDLES_H_