blob: d95ca9117022d8d33c3bdfc5cc9dc32c8e7762e5 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
2// 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
31#include "apiutils.h"
32
33namespace v8 {
34namespace internal {
35
36// ----------------------------------------------------------------------------
37// A Handle provides a reference to an object that survives relocation by
38// the garbage collector.
39// Handles are only valid within a HandleScope.
40// When a handle is created for an object a cell is allocated in the heap.
41
42template<class T>
43class Handle {
44 public:
Steve Block6ded16b2010-05-10 14:33:55 +010045 INLINE(explicit Handle(T** location)) { location_ = location; }
Steve Blocka7e24c12009-10-30 11:49:00 +000046 INLINE(explicit Handle(T* obj));
47
48 INLINE(Handle()) : location_(NULL) {}
49
50 // Constructor for handling automatic up casting.
51 // Ex. Handle<JSFunction> can be passed when Handle<Object> is expected.
52 template <class S> Handle(Handle<S> handle) {
53#ifdef DEBUG
54 T* a = NULL;
55 S* b = NULL;
56 a = b; // Fake assignment to enforce type checks.
57 USE(a);
58#endif
59 location_ = reinterpret_cast<T**>(handle.location());
60 }
61
62 INLINE(T* operator ->() const) { return operator*(); }
63
64 // Check if this handle refers to the exact same object as the other handle.
65 bool is_identical_to(const Handle<T> other) const {
66 return operator*() == *other;
67 }
68
69 // Provides the C++ dereference operator.
70 INLINE(T* operator*() const);
71
72 // Returns the address to where the raw pointer is stored.
73 T** location() const {
74 ASSERT(location_ == NULL ||
75 reinterpret_cast<Address>(*location_) != kZapValue);
76 return location_;
77 }
78
79 template <class S> static Handle<T> cast(Handle<S> that) {
80 T::cast(*that);
81 return Handle<T>(reinterpret_cast<T**>(that.location()));
82 }
83
84 static Handle<T> null() { return Handle<T>(); }
85 bool is_null() { return location_ == NULL; }
86
87 // Closes the given scope, but lets this handle escape. See
88 // implementation in api.h.
89 inline Handle<T> EscapeFrom(v8::HandleScope* scope);
90
91 private:
92 T** location_;
93};
94
95
96// A stack-allocated class that governs a number of local handles.
97// After a handle scope has been created, all local handles will be
98// allocated within that handle scope until either the handle scope is
99// deleted or another handle scope is created. If there is already a
100// handle scope and a new one is created, all allocations will take
101// place in the new handle scope until it is deleted. After that,
102// new handles will again be allocated in the original handle scope.
103//
104// After the handle scope of a local handle has been deleted the
105// garbage collector will no longer track the object stored in the
106// handle and may deallocate it. The behavior of accessing a handle
107// for which the handle scope has been deleted is undefined.
108class HandleScope {
109 public:
John Reck59135872010-11-02 12:39:01 -0700110 HandleScope() : prev_next_(current_.next), prev_limit_(current_.limit) {
111 current_.level++;
Steve Blocka7e24c12009-10-30 11:49:00 +0000112 }
113
114 ~HandleScope() {
John Reck59135872010-11-02 12:39:01 -0700115 current_.next = prev_next_;
116 current_.level--;
117 if (current_.limit != prev_limit_) {
118 current_.limit = prev_limit_;
119 DeleteExtensions();
120 }
121#ifdef DEBUG
122 ZapRange(prev_next_, prev_limit_);
123#endif
Steve Blocka7e24c12009-10-30 11:49:00 +0000124 }
125
126 // Counts the number of allocated handles.
127 static int NumberOfHandles();
128
129 // Creates a new handle with the given value.
130 template <typename T>
131 static inline T** CreateHandle(T* value) {
132 internal::Object** cur = current_.next;
133 if (cur == current_.limit) cur = Extend();
134 // Update the current next field, set the value in the created
135 // handle, and return the result.
136 ASSERT(cur < current_.limit);
137 current_.next = cur + 1;
138
139 T** result = reinterpret_cast<T**>(cur);
140 *result = value;
141 return result;
142 }
143
Steve Blockd0582a62009-12-15 09:54:21 +0000144 // Deallocates any extensions used by the current scope.
145 static void DeleteExtensions();
146
Steve Blockd0582a62009-12-15 09:54:21 +0000147 static Address current_next_address();
148 static Address current_limit_address();
John Reck59135872010-11-02 12:39:01 -0700149 static Address current_level_address();
Steve Blockd0582a62009-12-15 09:54:21 +0000150
Steve Blocka7e24c12009-10-30 11:49:00 +0000151 private:
152 // Prevent heap allocation or illegal handle scopes.
153 HandleScope(const HandleScope&);
154 void operator=(const HandleScope&);
155 void* operator new(size_t size);
156 void operator delete(void* size_t);
157
158 static v8::ImplementationUtilities::HandleScopeData current_;
John Reck59135872010-11-02 12:39:01 -0700159 Object** const prev_next_;
160 Object** const prev_limit_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000161
162 // Extend the handle scope making room for more handles.
163 static internal::Object** Extend();
164
Steve Blocka7e24c12009-10-30 11:49:00 +0000165 // Zaps the handles in the half-open interval [start, end).
166 static void ZapRange(internal::Object** start, internal::Object** end);
167
168 friend class v8::HandleScope;
169 friend class v8::ImplementationUtilities;
170};
171
172
173// ----------------------------------------------------------------------------
174// Handle operations.
175// They might invoke garbage collection. The result is an handle to
176// an object of expected type, or the handle is an error if running out
177// of space or encountering an internal error.
178
179void NormalizeProperties(Handle<JSObject> object,
180 PropertyNormalizationMode mode,
181 int expected_additional_properties);
182void NormalizeElements(Handle<JSObject> object);
183void TransformToFastProperties(Handle<JSObject> object,
184 int unused_property_fields);
John Reck59135872010-11-02 12:39:01 -0700185void NumberDictionarySet(Handle<NumberDictionary> dictionary,
186 uint32_t index,
187 Handle<Object> value,
188 PropertyDetails details);
Steve Block8defd9f2010-07-08 12:39:36 +0100189
190// Flattens a string.
Steve Blocka7e24c12009-10-30 11:49:00 +0000191void FlattenString(Handle<String> str);
192
Steve Block8defd9f2010-07-08 12:39:36 +0100193// Flattens a string and returns the underlying external or sequential
194// string.
195Handle<String> FlattenGetString(Handle<String> str);
196
Steve Blocka7e24c12009-10-30 11:49:00 +0000197Handle<Object> SetProperty(Handle<JSObject> object,
198 Handle<String> key,
199 Handle<Object> value,
200 PropertyAttributes attributes);
201
202Handle<Object> SetProperty(Handle<Object> object,
203 Handle<Object> key,
204 Handle<Object> value,
205 PropertyAttributes attributes);
206
207Handle<Object> ForceSetProperty(Handle<JSObject> object,
208 Handle<Object> key,
209 Handle<Object> value,
210 PropertyAttributes attributes);
211
Andrei Popescu31002712010-02-23 13:46:05 +0000212Handle<Object> SetNormalizedProperty(Handle<JSObject> object,
213 Handle<String> key,
214 Handle<Object> value,
215 PropertyDetails details);
216
Steve Blocka7e24c12009-10-30 11:49:00 +0000217Handle<Object> ForceDeleteProperty(Handle<JSObject> object,
218 Handle<Object> key);
219
Ben Murdoch086aeea2011-05-13 15:57:08 +0100220Handle<Object> SetLocalPropertyIgnoreAttributes(
221 Handle<JSObject> object,
222 Handle<String> key,
223 Handle<Object> value,
Steve Blocka7e24c12009-10-30 11:49:00 +0000224 PropertyAttributes attributes);
225
Steve Block1e0659c2011-05-24 12:43:12 +0100226// Used to set local properties on the object we totally control
227// and which therefore has no accessors and alikes.
228void SetLocalPropertyNoThrow(Handle<JSObject> object,
229 Handle<String> key,
230 Handle<Object> value,
231 PropertyAttributes attributes = NONE);
232
Steve Blocka7e24c12009-10-30 11:49:00 +0000233Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object,
234 Handle<String> key,
235 Handle<Object> value,
236 PropertyAttributes attributes);
237
238Handle<Object> SetElement(Handle<JSObject> object,
239 uint32_t index,
240 Handle<Object> value);
241
Ben Murdoch086aeea2011-05-13 15:57:08 +0100242Handle<Object> SetOwnElement(Handle<JSObject> object,
243 uint32_t index,
244 Handle<Object> value);
245
Steve Blocka7e24c12009-10-30 11:49:00 +0000246Handle<Object> GetProperty(Handle<JSObject> obj,
247 const char* name);
248
249Handle<Object> GetProperty(Handle<Object> obj,
250 Handle<Object> key);
251
Steve Block6ded16b2010-05-10 14:33:55 +0100252Handle<Object> GetElement(Handle<Object> obj,
253 uint32_t index);
254
Steve Blocka7e24c12009-10-30 11:49:00 +0000255Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver,
256 Handle<JSObject> holder,
257 Handle<String> name,
258 PropertyAttributes* attributes);
259
260Handle<Object> GetPrototype(Handle<Object> obj);
261
Andrei Popescu402d9372010-02-26 13:31:12 +0000262Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
263
Steve Blocka7e24c12009-10-30 11:49:00 +0000264// Return the object's hidden properties object. If the object has no hidden
265// properties and create_if_needed is true, then a new hidden property object
266// will be allocated. Otherwise the Heap::undefined_value is returned.
267Handle<Object> GetHiddenProperties(Handle<JSObject> obj, bool create_if_needed);
268
269Handle<Object> DeleteElement(Handle<JSObject> obj, uint32_t index);
270Handle<Object> DeleteProperty(Handle<JSObject> obj, Handle<String> prop);
271
272Handle<Object> LookupSingleCharacterStringFromCode(uint32_t index);
273
274Handle<JSObject> Copy(Handle<JSObject> obj);
275
Leon Clarkef7060e22010-06-03 12:02:55 +0100276Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info);
277
Steve Blocka7e24c12009-10-30 11:49:00 +0000278Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
279 Handle<JSArray> array);
280
281// Get the JS object corresponding to the given script; create it
282// if none exists.
283Handle<JSValue> GetScriptWrapper(Handle<Script> script);
284
285// Script line number computations.
286void InitScriptLineEnds(Handle<Script> script);
Steve Block6ded16b2010-05-10 14:33:55 +0100287// For string calculates an array of line end positions. If the string
288// does not end with a new line character, this character may optionally be
289// imagined.
290Handle<FixedArray> CalculateLineEnds(Handle<String> string,
291 bool with_imaginary_last_new_line);
Steve Blocka7e24c12009-10-30 11:49:00 +0000292int GetScriptLineNumber(Handle<Script> script, int code_position);
Steve Block6ded16b2010-05-10 14:33:55 +0100293// The safe version does not make heap allocations but may work much slower.
294int GetScriptLineNumberSafe(Handle<Script> script, int code_position);
Steve Blocka7e24c12009-10-30 11:49:00 +0000295
296// Computes the enumerable keys from interceptors. Used for debug mirrors and
297// by GetKeysInFixedArrayFor below.
298v8::Handle<v8::Array> GetKeysForNamedInterceptor(Handle<JSObject> receiver,
299 Handle<JSObject> object);
300v8::Handle<v8::Array> GetKeysForIndexedInterceptor(Handle<JSObject> receiver,
301 Handle<JSObject> object);
302
303enum KeyCollectionType { LOCAL_ONLY, INCLUDE_PROTOS };
304
305// Computes the enumerable keys for a JSObject. Used for implementing
306// "for (n in object) { }".
307Handle<FixedArray> GetKeysInFixedArrayFor(Handle<JSObject> object,
308 KeyCollectionType type);
309Handle<JSArray> GetKeysFor(Handle<JSObject> object);
Steve Blockd0582a62009-12-15 09:54:21 +0000310Handle<FixedArray> GetEnumPropertyKeys(Handle<JSObject> object,
311 bool cache_result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000312
313// Computes the union of keys and return the result.
314// Used for implementing "for (n in object) { }"
315Handle<FixedArray> UnionOfKeys(Handle<FixedArray> first,
316 Handle<FixedArray> second);
317
Steve Block6ded16b2010-05-10 14:33:55 +0100318Handle<String> SubString(Handle<String> str,
319 int start,
320 int end,
321 PretenureFlag pretenure = NOT_TENURED);
Steve Blocka7e24c12009-10-30 11:49:00 +0000322
323
324// Sets the expected number of properties for the function's instances.
325void SetExpectedNofProperties(Handle<JSFunction> func, int nof);
326
327// Sets the prototype property for a function instance.
328void SetPrototypeProperty(Handle<JSFunction> func, Handle<JSObject> value);
329
330// Sets the expected number of properties based on estimate from compiler.
331void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared,
332 int estimate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000333
334
335Handle<JSGlobalProxy> ReinitializeJSGlobalProxy(
336 Handle<JSFunction> constructor,
337 Handle<JSGlobalProxy> global);
338
339Handle<Object> SetPrototype(Handle<JSFunction> function,
340 Handle<Object> prototype);
341
342
Steve Blockd0582a62009-12-15 09:54:21 +0000343// Does lazy compilation of the given function. Returns true on success and
344// false if the compilation resulted in a stack overflow.
Steve Blocka7e24c12009-10-30 11:49:00 +0000345enum ClearExceptionFlag { KEEP_EXCEPTION, CLEAR_EXCEPTION };
346
Leon Clarke4515c472010-02-03 11:58:03 +0000347bool EnsureCompiled(Handle<SharedFunctionInfo> shared,
348 ClearExceptionFlag flag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000349
Leon Clarke4515c472010-02-03 11:58:03 +0000350bool CompileLazyShared(Handle<SharedFunctionInfo> shared,
351 ClearExceptionFlag flag);
352
Ben Murdochf87a2032010-10-22 12:50:53 +0100353bool CompileLazy(Handle<JSFunction> function, ClearExceptionFlag flag);
Leon Clarke4515c472010-02-03 11:58:03 +0000354
Ben Murdochf87a2032010-10-22 12:50:53 +0100355bool CompileLazyInLoop(Handle<JSFunction> function, ClearExceptionFlag flag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000356
Ben Murdochb0fe1622011-05-05 13:52:32 +0100357bool CompileOptimized(Handle<JSFunction> function, int osr_ast_id);
358
Steve Blocka7e24c12009-10-30 11:49:00 +0000359class NoHandleAllocation BASE_EMBEDDED {
360 public:
361#ifndef DEBUG
362 NoHandleAllocation() {}
363 ~NoHandleAllocation() {}
364#else
365 inline NoHandleAllocation();
366 inline ~NoHandleAllocation();
367 private:
John Reck59135872010-11-02 12:39:01 -0700368 int level_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000369#endif
370};
371
372
373// ----------------------------------------------------------------------------
374
375
376// Stack allocated wrapper call for optimizing adding multiple
377// properties to an object.
378class OptimizedObjectForAddingMultipleProperties BASE_EMBEDDED {
379 public:
380 OptimizedObjectForAddingMultipleProperties(Handle<JSObject> object,
381 int expected_property_count,
382 bool condition = true);
383 ~OptimizedObjectForAddingMultipleProperties();
384 private:
385 bool has_been_transformed_; // Tells whether the object has been transformed.
386 int unused_property_fields_; // Captures the unused number of field.
387 Handle<JSObject> object_; // The object being optimized.
388};
389
390
391} } // namespace v8::internal
392
393#endif // V8_HANDLES_H_