blob: aa9d8b99995a13db4076e0c4c9c748875100f993 [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
226Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object,
227 Handle<String> key,
228 Handle<Object> value,
229 PropertyAttributes attributes);
230
231Handle<Object> SetElement(Handle<JSObject> object,
232 uint32_t index,
233 Handle<Object> value);
234
Ben Murdoch086aeea2011-05-13 15:57:08 +0100235Handle<Object> SetOwnElement(Handle<JSObject> object,
236 uint32_t index,
237 Handle<Object> value);
238
Steve Blocka7e24c12009-10-30 11:49:00 +0000239Handle<Object> GetProperty(Handle<JSObject> obj,
240 const char* name);
241
242Handle<Object> GetProperty(Handle<Object> obj,
243 Handle<Object> key);
244
Steve Block6ded16b2010-05-10 14:33:55 +0100245Handle<Object> GetElement(Handle<Object> obj,
246 uint32_t index);
247
Steve Blocka7e24c12009-10-30 11:49:00 +0000248Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver,
249 Handle<JSObject> holder,
250 Handle<String> name,
251 PropertyAttributes* attributes);
252
253Handle<Object> GetPrototype(Handle<Object> obj);
254
Andrei Popescu402d9372010-02-26 13:31:12 +0000255Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
256
Steve Blocka7e24c12009-10-30 11:49:00 +0000257// Return the object's hidden properties object. If the object has no hidden
258// properties and create_if_needed is true, then a new hidden property object
259// will be allocated. Otherwise the Heap::undefined_value is returned.
260Handle<Object> GetHiddenProperties(Handle<JSObject> obj, bool create_if_needed);
261
262Handle<Object> DeleteElement(Handle<JSObject> obj, uint32_t index);
263Handle<Object> DeleteProperty(Handle<JSObject> obj, Handle<String> prop);
264
265Handle<Object> LookupSingleCharacterStringFromCode(uint32_t index);
266
267Handle<JSObject> Copy(Handle<JSObject> obj);
268
Leon Clarkef7060e22010-06-03 12:02:55 +0100269Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info);
270
Steve Blocka7e24c12009-10-30 11:49:00 +0000271Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
272 Handle<JSArray> array);
273
274// Get the JS object corresponding to the given script; create it
275// if none exists.
276Handle<JSValue> GetScriptWrapper(Handle<Script> script);
277
278// Script line number computations.
279void InitScriptLineEnds(Handle<Script> script);
Steve Block6ded16b2010-05-10 14:33:55 +0100280// For string calculates an array of line end positions. If the string
281// does not end with a new line character, this character may optionally be
282// imagined.
283Handle<FixedArray> CalculateLineEnds(Handle<String> string,
284 bool with_imaginary_last_new_line);
Steve Blocka7e24c12009-10-30 11:49:00 +0000285int GetScriptLineNumber(Handle<Script> script, int code_position);
Steve Block6ded16b2010-05-10 14:33:55 +0100286// The safe version does not make heap allocations but may work much slower.
287int GetScriptLineNumberSafe(Handle<Script> script, int code_position);
Steve Blocka7e24c12009-10-30 11:49:00 +0000288
289// Computes the enumerable keys from interceptors. Used for debug mirrors and
290// by GetKeysInFixedArrayFor below.
291v8::Handle<v8::Array> GetKeysForNamedInterceptor(Handle<JSObject> receiver,
292 Handle<JSObject> object);
293v8::Handle<v8::Array> GetKeysForIndexedInterceptor(Handle<JSObject> receiver,
294 Handle<JSObject> object);
295
296enum KeyCollectionType { LOCAL_ONLY, INCLUDE_PROTOS };
297
298// Computes the enumerable keys for a JSObject. Used for implementing
299// "for (n in object) { }".
300Handle<FixedArray> GetKeysInFixedArrayFor(Handle<JSObject> object,
301 KeyCollectionType type);
302Handle<JSArray> GetKeysFor(Handle<JSObject> object);
Steve Blockd0582a62009-12-15 09:54:21 +0000303Handle<FixedArray> GetEnumPropertyKeys(Handle<JSObject> object,
304 bool cache_result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000305
306// Computes the union of keys and return the result.
307// Used for implementing "for (n in object) { }"
308Handle<FixedArray> UnionOfKeys(Handle<FixedArray> first,
309 Handle<FixedArray> second);
310
Steve Block6ded16b2010-05-10 14:33:55 +0100311Handle<String> SubString(Handle<String> str,
312 int start,
313 int end,
314 PretenureFlag pretenure = NOT_TENURED);
Steve Blocka7e24c12009-10-30 11:49:00 +0000315
316
317// Sets the expected number of properties for the function's instances.
318void SetExpectedNofProperties(Handle<JSFunction> func, int nof);
319
320// Sets the prototype property for a function instance.
321void SetPrototypeProperty(Handle<JSFunction> func, Handle<JSObject> value);
322
323// Sets the expected number of properties based on estimate from compiler.
324void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared,
325 int estimate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000326
327
328Handle<JSGlobalProxy> ReinitializeJSGlobalProxy(
329 Handle<JSFunction> constructor,
330 Handle<JSGlobalProxy> global);
331
332Handle<Object> SetPrototype(Handle<JSFunction> function,
333 Handle<Object> prototype);
334
335
Steve Blockd0582a62009-12-15 09:54:21 +0000336// Does lazy compilation of the given function. Returns true on success and
337// false if the compilation resulted in a stack overflow.
Steve Blocka7e24c12009-10-30 11:49:00 +0000338enum ClearExceptionFlag { KEEP_EXCEPTION, CLEAR_EXCEPTION };
339
Leon Clarke4515c472010-02-03 11:58:03 +0000340bool EnsureCompiled(Handle<SharedFunctionInfo> shared,
341 ClearExceptionFlag flag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000342
Leon Clarke4515c472010-02-03 11:58:03 +0000343bool CompileLazyShared(Handle<SharedFunctionInfo> shared,
344 ClearExceptionFlag flag);
345
Ben Murdochf87a2032010-10-22 12:50:53 +0100346bool CompileLazy(Handle<JSFunction> function, ClearExceptionFlag flag);
Leon Clarke4515c472010-02-03 11:58:03 +0000347
Ben Murdochf87a2032010-10-22 12:50:53 +0100348bool CompileLazyInLoop(Handle<JSFunction> function, ClearExceptionFlag flag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000349
Ben Murdochb0fe1622011-05-05 13:52:32 +0100350bool CompileOptimized(Handle<JSFunction> function, int osr_ast_id);
351
Steve Blocka7e24c12009-10-30 11:49:00 +0000352class NoHandleAllocation BASE_EMBEDDED {
353 public:
354#ifndef DEBUG
355 NoHandleAllocation() {}
356 ~NoHandleAllocation() {}
357#else
358 inline NoHandleAllocation();
359 inline ~NoHandleAllocation();
360 private:
John Reck59135872010-11-02 12:39:01 -0700361 int level_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000362#endif
363};
364
365
366// ----------------------------------------------------------------------------
367
368
369// Stack allocated wrapper call for optimizing adding multiple
370// properties to an object.
371class OptimizedObjectForAddingMultipleProperties BASE_EMBEDDED {
372 public:
373 OptimizedObjectForAddingMultipleProperties(Handle<JSObject> object,
374 int expected_property_count,
375 bool condition = true);
376 ~OptimizedObjectForAddingMultipleProperties();
377 private:
378 bool has_been_transformed_; // Tells whether the object has been transformed.
379 int unused_property_fields_; // Captures the unused number of field.
380 Handle<JSObject> object_; // The object being optimized.
381};
382
383
384} } // namespace v8::internal
385
386#endif // V8_HANDLES_H_