2 * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Cameron Zwarich (cwzwarich@uwaterloo.ca)
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15 * its contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include "JSGlobalObject.h"
33 #include "JSCallbackConstructor.h"
34 #include "JSCallbackFunction.h"
35 #include "JSCallbackObject.h"
37 #include "Arguments.h"
38 #include "ArrayConstructor.h"
39 #include "ArrayPrototype.h"
40 #include "BooleanConstructor.h"
41 #include "BooleanPrototype.h"
42 #include "CodeBlock.h"
43 #include "DateConstructor.h"
44 #include "DatePrototype.h"
45 #include "ErrorConstructor.h"
46 #include "ErrorPrototype.h"
47 #include "FunctionConstructor.h"
48 #include "FunctionPrototype.h"
49 #include "JSFunction.h"
50 #include "JSGlobalObjectFunctions.h"
52 #include "JSONObject.h"
53 #include "Interpreter.h"
55 #include "MathObject.h"
56 #include "NativeErrorConstructor.h"
57 #include "NativeErrorPrototype.h"
58 #include "NumberConstructor.h"
59 #include "NumberPrototype.h"
60 #include "ObjectConstructor.h"
61 #include "ObjectPrototype.h"
63 #include "RegExpConstructor.h"
64 #include "RegExpMatchesArray.h"
65 #include "RegExpObject.h"
66 #include "RegExpPrototype.h"
67 #include "ScopeChainMark.h"
68 #include "StringConstructor.h"
69 #include "StringPrototype.h"
72 #include "JSGlobalObject.lut.h"
76 const ClassInfo
JSGlobalObject::s_info
= { "GlobalObject", &JSVariableObject::s_info
, 0, ExecState::globalObjectTable
};
78 /* Source for JSGlobalObject.lut.h
79 @begin globalObjectTable
80 parseInt globalFuncParseInt DontEnum|Function 2
81 parseFloat globalFuncParseFloat DontEnum|Function 1
82 isNaN globalFuncIsNaN DontEnum|Function 1
83 isFinite globalFuncIsFinite DontEnum|Function 1
84 escape globalFuncEscape DontEnum|Function 1
85 unescape globalFuncUnescape DontEnum|Function 1
86 decodeURI globalFuncDecodeURI DontEnum|Function 1
87 decodeURIComponent globalFuncDecodeURIComponent DontEnum|Function 1
88 encodeURI globalFuncEncodeURI DontEnum|Function 1
89 encodeURIComponent globalFuncEncodeURIComponent DontEnum|Function 1
93 ASSERT_CLASS_FITS_IN_CELL(JSGlobalObject
);
95 // Default number of ticks before a timeout check should be done.
96 static const int initialTickCountThreshold
= 255;
98 // Preferred number of milliseconds between each timeout check
99 static const int preferredScriptCheckTimeInterval
= 1000;
101 template <typename T
> static inline void visitIfNeeded(SlotVisitor
& visitor
, WriteBarrier
<T
>* v
)
107 JSGlobalObject::~JSGlobalObject()
109 ASSERT(JSLock::currentThreadIsHoldingLock());
112 m_debugger
->detach(this);
114 Profiler
** profiler
= Profiler::enabledProfilerReference();
115 if (UNLIKELY(*profiler
!= 0)) {
116 (*profiler
)->stopProfiling(this);
120 void JSGlobalObject::init(JSObject
* thisValue
)
122 ASSERT(JSLock::currentThreadIsHoldingLock());
124 structure()->disableSpecificFunctionTracking();
126 m_globalData
= Heap::heap(this)->globalData();
127 m_globalScopeChain
.set(*m_globalData
, this, new (m_globalData
.get()) ScopeChainNode(0, this, m_globalData
.get(), this, thisValue
));
129 JSGlobalObject::globalExec()->init(0, 0, m_globalScopeChain
.get(), CallFrame::noCaller(), 0, 0);
138 void JSGlobalObject::put(ExecState
* exec
, const Identifier
& propertyName
, JSValue value
, PutPropertySlot
& slot
)
140 ASSERT(!Heap::heap(value
) || Heap::heap(value
) == Heap::heap(this));
142 if (symbolTablePut(exec
->globalData(), propertyName
, value
))
144 JSVariableObject::put(exec
, propertyName
, value
, slot
);
147 void JSGlobalObject::putWithAttributes(ExecState
* exec
, const Identifier
& propertyName
, JSValue value
, unsigned attributes
)
149 ASSERT(!Heap::heap(value
) || Heap::heap(value
) == Heap::heap(this));
151 if (symbolTablePutWithAttributes(exec
->globalData(), propertyName
, value
, attributes
))
154 JSValue valueBefore
= getDirect(exec
->globalData(), propertyName
);
155 PutPropertySlot slot
;
156 JSVariableObject::put(exec
, propertyName
, value
, slot
);
158 JSValue valueAfter
= getDirect(exec
->globalData(), propertyName
);
160 JSObject::putWithAttributes(exec
, propertyName
, valueAfter
, attributes
);
164 void JSGlobalObject::defineGetter(ExecState
* exec
, const Identifier
& propertyName
, JSObject
* getterFunc
, unsigned attributes
)
167 if (!symbolTableGet(propertyName
, slot
))
168 JSVariableObject::defineGetter(exec
, propertyName
, getterFunc
, attributes
);
171 void JSGlobalObject::defineSetter(ExecState
* exec
, const Identifier
& propertyName
, JSObject
* setterFunc
, unsigned attributes
)
174 if (!symbolTableGet(propertyName
, slot
))
175 JSVariableObject::defineSetter(exec
, propertyName
, setterFunc
, attributes
);
178 static inline JSObject
* lastInPrototypeChain(JSObject
* object
)
180 JSObject
* o
= object
;
181 while (o
->prototype().isObject())
182 o
= asObject(o
->prototype());
186 void JSGlobalObject::reset(JSValue prototype
)
188 ExecState
* exec
= JSGlobalObject::globalExec();
190 m_functionPrototype
.set(exec
->globalData(), this, new (exec
) FunctionPrototype(exec
, this, FunctionPrototype::createStructure(exec
->globalData(), jsNull()))); // The real prototype will be set once ObjectPrototype is created.
191 m_functionStructure
.set(exec
->globalData(), this, JSFunction::createStructure(exec
->globalData(), m_functionPrototype
.get()));
192 m_internalFunctionStructure
.set(exec
->globalData(), this, InternalFunction::createStructure(exec
->globalData(), m_functionPrototype
.get()));
193 JSFunction
* callFunction
= 0;
194 JSFunction
* applyFunction
= 0;
195 m_functionPrototype
->addFunctionProperties(exec
, this, m_functionStructure
.get(), &callFunction
, &applyFunction
);
196 m_callFunction
.set(exec
->globalData(), this, callFunction
);
197 m_applyFunction
.set(exec
->globalData(), this, applyFunction
);
198 m_objectPrototype
.set(exec
->globalData(), this, new (exec
) ObjectPrototype(exec
, this, ObjectPrototype::createStructure(exec
->globalData(), jsNull())));
199 m_functionPrototype
->structure()->setPrototypeWithoutTransition(exec
->globalData(), m_objectPrototype
.get());
201 m_emptyObjectStructure
.set(exec
->globalData(), this, m_objectPrototype
->inheritorID(exec
->globalData()));
202 m_nullPrototypeObjectStructure
.set(exec
->globalData(), this, createEmptyObjectStructure(exec
->globalData(), jsNull()));
204 m_callbackFunctionStructure
.set(exec
->globalData(), this, JSCallbackFunction::createStructure(exec
->globalData(), m_functionPrototype
.get()));
205 m_argumentsStructure
.set(exec
->globalData(), this, Arguments::createStructure(exec
->globalData(), m_objectPrototype
.get()));
206 m_callbackConstructorStructure
.set(exec
->globalData(), this, JSCallbackConstructor::createStructure(exec
->globalData(), m_objectPrototype
.get()));
207 m_callbackObjectStructure
.set(exec
->globalData(), this, JSCallbackObject
<JSObjectWithGlobalObject
>::createStructure(exec
->globalData(), m_objectPrototype
.get()));
209 m_arrayPrototype
.set(exec
->globalData(), this, new (exec
) ArrayPrototype(this, ArrayPrototype::createStructure(exec
->globalData(), m_objectPrototype
.get())));
210 m_arrayStructure
.set(exec
->globalData(), this, JSArray::createStructure(exec
->globalData(), m_arrayPrototype
.get()));
211 m_regExpMatchesArrayStructure
.set(exec
->globalData(), this, RegExpMatchesArray::createStructure(exec
->globalData(), m_arrayPrototype
.get()));
213 m_stringPrototype
.set(exec
->globalData(), this, new (exec
) StringPrototype(exec
, this, StringPrototype::createStructure(exec
->globalData(), m_objectPrototype
.get())));
214 m_stringObjectStructure
.set(exec
->globalData(), this, StringObject::createStructure(exec
->globalData(), m_stringPrototype
.get()));
216 m_booleanPrototype
.set(exec
->globalData(), this, new (exec
) BooleanPrototype(exec
, this, BooleanPrototype::createStructure(exec
->globalData(), m_objectPrototype
.get())));
217 m_booleanObjectStructure
.set(exec
->globalData(), this, BooleanObject::createStructure(exec
->globalData(), m_booleanPrototype
.get()));
219 m_numberPrototype
.set(exec
->globalData(), this, new (exec
) NumberPrototype(exec
, this, NumberPrototype::createStructure(exec
->globalData(), m_objectPrototype
.get())));
220 m_numberObjectStructure
.set(exec
->globalData(), this, NumberObject::createStructure(exec
->globalData(), m_numberPrototype
.get()));
222 m_datePrototype
.set(exec
->globalData(), this, new (exec
) DatePrototype(exec
, this, DatePrototype::createStructure(exec
->globalData(), m_objectPrototype
.get())));
223 m_dateStructure
.set(exec
->globalData(), this, DateInstance::createStructure(exec
->globalData(), m_datePrototype
.get()));
225 RegExp
* emptyRegex
= RegExp::create(&exec
->globalData(), "", NoFlags
);
227 m_regExpPrototype
.set(exec
->globalData(), this, new (exec
) RegExpPrototype(exec
, this, RegExpPrototype::createStructure(exec
->globalData(), m_objectPrototype
.get()), emptyRegex
));
228 m_regExpStructure
.set(exec
->globalData(), this, RegExpObject::createStructure(exec
->globalData(), m_regExpPrototype
.get()));
230 m_methodCallDummy
.set(exec
->globalData(), this, constructEmptyObject(exec
));
232 ErrorPrototype
* errorPrototype
= new (exec
) ErrorPrototype(exec
, this, ErrorPrototype::createStructure(exec
->globalData(), m_objectPrototype
.get()));
233 m_errorStructure
.set(exec
->globalData(), this, ErrorInstance::createStructure(exec
->globalData(), errorPrototype
));
237 JSCell
* objectConstructor
= new (exec
) ObjectConstructor(exec
, this, ObjectConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_objectPrototype
.get());
238 JSCell
* functionConstructor
= new (exec
) FunctionConstructor(exec
, this, FunctionConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_functionPrototype
.get());
239 JSCell
* arrayConstructor
= new (exec
) ArrayConstructor(exec
, this, ArrayConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_arrayPrototype
.get());
240 JSCell
* stringConstructor
= new (exec
) StringConstructor(exec
, this, StringConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_stringPrototype
.get());
241 JSCell
* booleanConstructor
= new (exec
) BooleanConstructor(exec
, this, BooleanConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_booleanPrototype
.get());
242 JSCell
* numberConstructor
= new (exec
) NumberConstructor(exec
, this, NumberConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_numberPrototype
.get());
243 JSCell
* dateConstructor
= new (exec
) DateConstructor(exec
, this, DateConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_datePrototype
.get());
245 m_regExpConstructor
.set(exec
->globalData(), this, new (exec
) RegExpConstructor(exec
, this, RegExpConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), m_regExpPrototype
.get()));
247 m_errorConstructor
.set(exec
->globalData(), this, new (exec
) ErrorConstructor(exec
, this, ErrorConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get()), errorPrototype
));
249 Structure
* nativeErrorPrototypeStructure
= NativeErrorPrototype::createStructure(exec
->globalData(), errorPrototype
);
250 Structure
* nativeErrorStructure
= NativeErrorConstructor::createStructure(exec
->globalData(), m_functionPrototype
.get());
251 m_evalErrorConstructor
.set(exec
->globalData(), this, new (exec
) NativeErrorConstructor(exec
, this, nativeErrorStructure
, nativeErrorPrototypeStructure
, "EvalError"));
252 m_rangeErrorConstructor
.set(exec
->globalData(), this, new (exec
) NativeErrorConstructor(exec
, this, nativeErrorStructure
, nativeErrorPrototypeStructure
, "RangeError"));
253 m_referenceErrorConstructor
.set(exec
->globalData(), this, new (exec
) NativeErrorConstructor(exec
, this, nativeErrorStructure
, nativeErrorPrototypeStructure
, "ReferenceError"));
254 m_syntaxErrorConstructor
.set(exec
->globalData(), this, new (exec
) NativeErrorConstructor(exec
, this, nativeErrorStructure
, nativeErrorPrototypeStructure
, "SyntaxError"));
255 m_typeErrorConstructor
.set(exec
->globalData(), this, new (exec
) NativeErrorConstructor(exec
, this, nativeErrorStructure
, nativeErrorPrototypeStructure
, "TypeError"));
256 m_URIErrorConstructor
.set(exec
->globalData(), this, new (exec
) NativeErrorConstructor(exec
, this, nativeErrorStructure
, nativeErrorPrototypeStructure
, "URIError"));
258 m_objectPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, objectConstructor
, DontEnum
);
259 m_functionPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, functionConstructor
, DontEnum
);
260 m_arrayPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, arrayConstructor
, DontEnum
);
261 m_booleanPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, booleanConstructor
, DontEnum
);
262 m_stringPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, stringConstructor
, DontEnum
);
263 m_numberPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, numberConstructor
, DontEnum
);
264 m_datePrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, dateConstructor
, DontEnum
);
265 m_regExpPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, m_regExpConstructor
.get(), DontEnum
);
266 errorPrototype
->putDirectFunctionWithoutTransition(exec
->globalData(), exec
->propertyNames().constructor
, m_errorConstructor
.get(), DontEnum
);
268 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "Object"), objectConstructor
, DontEnum
);
269 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "Function"), functionConstructor
, DontEnum
);
270 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "Array"), arrayConstructor
, DontEnum
);
271 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "Boolean"), booleanConstructor
, DontEnum
);
272 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "String"), stringConstructor
, DontEnum
);
273 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "Number"), numberConstructor
, DontEnum
);
274 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "Date"), dateConstructor
, DontEnum
);
275 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "RegExp"), m_regExpConstructor
.get(), DontEnum
);
276 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "Error"), m_errorConstructor
.get(), DontEnum
);
277 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "EvalError"), m_evalErrorConstructor
.get(), DontEnum
);
278 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "RangeError"), m_rangeErrorConstructor
.get(), DontEnum
);
279 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "ReferenceError"), m_referenceErrorConstructor
.get(), DontEnum
);
280 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "SyntaxError"), m_syntaxErrorConstructor
.get(), DontEnum
);
281 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "TypeError"), m_typeErrorConstructor
.get(), DontEnum
);
282 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, "URIError"), m_URIErrorConstructor
.get(), DontEnum
);
284 m_evalFunction
.set(exec
->globalData(), this, new (exec
) JSFunction(exec
, this, m_functionStructure
.get(), 1, exec
->propertyNames().eval
, globalFuncEval
));
285 putDirectFunctionWithoutTransition(exec
, m_evalFunction
.get(), DontEnum
);
287 GlobalPropertyInfo staticGlobals
[] = {
288 GlobalPropertyInfo(Identifier(exec
, "Math"), new (exec
) MathObject(exec
, this, MathObject::createStructure(exec
->globalData(), m_objectPrototype
.get())), DontEnum
| DontDelete
),
289 GlobalPropertyInfo(Identifier(exec
, "NaN"), jsNaN(), DontEnum
| DontDelete
| ReadOnly
),
290 GlobalPropertyInfo(Identifier(exec
, "Infinity"), jsNumber(Inf
), DontEnum
| DontDelete
| ReadOnly
),
291 GlobalPropertyInfo(Identifier(exec
, "undefined"), jsUndefined(), DontEnum
| DontDelete
| ReadOnly
),
292 GlobalPropertyInfo(Identifier(exec
, "JSON"), new (exec
) JSONObject(this, JSONObject::createStructure(exec
->globalData(), m_objectPrototype
.get())), DontEnum
| DontDelete
)
294 addStaticGlobals(staticGlobals
, WTF_ARRAY_LENGTH(staticGlobals
));
296 resetPrototype(exec
->globalData(), prototype
);
299 // Set prototype, and also insert the object prototype at the end of the chain.
300 void JSGlobalObject::resetPrototype(JSGlobalData
& globalData
, JSValue prototype
)
302 setPrototype(globalData
, prototype
);
304 JSObject
* oldLastInPrototypeChain
= lastInPrototypeChain(this);
305 JSObject
* objectPrototype
= m_objectPrototype
.get();
306 if (oldLastInPrototypeChain
!= objectPrototype
)
307 oldLastInPrototypeChain
->setPrototype(globalData
, objectPrototype
);
310 void JSGlobalObject::visitChildren(SlotVisitor
& visitor
)
312 ASSERT_GC_OBJECT_INHERITS(this, &s_info
);
313 COMPILE_ASSERT(StructureFlags
& OverridesVisitChildren
, OverridesVisitChildrenWithoutSettingFlag
);
314 ASSERT(structure()->typeInfo().overridesVisitChildren());
315 JSVariableObject::visitChildren(visitor
);
317 visitIfNeeded(visitor
, &m_globalScopeChain
);
318 visitIfNeeded(visitor
, &m_methodCallDummy
);
320 visitIfNeeded(visitor
, &m_regExpConstructor
);
321 visitIfNeeded(visitor
, &m_errorConstructor
);
322 visitIfNeeded(visitor
, &m_evalErrorConstructor
);
323 visitIfNeeded(visitor
, &m_rangeErrorConstructor
);
324 visitIfNeeded(visitor
, &m_referenceErrorConstructor
);
325 visitIfNeeded(visitor
, &m_syntaxErrorConstructor
);
326 visitIfNeeded(visitor
, &m_typeErrorConstructor
);
327 visitIfNeeded(visitor
, &m_URIErrorConstructor
);
329 visitIfNeeded(visitor
, &m_evalFunction
);
330 visitIfNeeded(visitor
, &m_callFunction
);
331 visitIfNeeded(visitor
, &m_applyFunction
);
333 visitIfNeeded(visitor
, &m_objectPrototype
);
334 visitIfNeeded(visitor
, &m_functionPrototype
);
335 visitIfNeeded(visitor
, &m_arrayPrototype
);
336 visitIfNeeded(visitor
, &m_booleanPrototype
);
337 visitIfNeeded(visitor
, &m_stringPrototype
);
338 visitIfNeeded(visitor
, &m_numberPrototype
);
339 visitIfNeeded(visitor
, &m_datePrototype
);
340 visitIfNeeded(visitor
, &m_regExpPrototype
);
342 visitIfNeeded(visitor
, &m_argumentsStructure
);
343 visitIfNeeded(visitor
, &m_arrayStructure
);
344 visitIfNeeded(visitor
, &m_booleanObjectStructure
);
345 visitIfNeeded(visitor
, &m_callbackConstructorStructure
);
346 visitIfNeeded(visitor
, &m_callbackFunctionStructure
);
347 visitIfNeeded(visitor
, &m_callbackObjectStructure
);
348 visitIfNeeded(visitor
, &m_dateStructure
);
349 visitIfNeeded(visitor
, &m_emptyObjectStructure
);
350 visitIfNeeded(visitor
, &m_nullPrototypeObjectStructure
);
351 visitIfNeeded(visitor
, &m_errorStructure
);
352 visitIfNeeded(visitor
, &m_functionStructure
);
353 visitIfNeeded(visitor
, &m_numberObjectStructure
);
354 visitIfNeeded(visitor
, &m_regExpMatchesArrayStructure
);
355 visitIfNeeded(visitor
, &m_regExpStructure
);
356 visitIfNeeded(visitor
, &m_stringObjectStructure
);
357 visitIfNeeded(visitor
, &m_internalFunctionStructure
);
359 if (m_registerArray
) {
360 // Outside the execution of global code, when our variables are torn off,
361 // we can mark the torn-off array.
362 visitor
.appendValues(m_registerArray
.get(), m_registerArraySize
);
363 } else if (m_registers
) {
364 // During execution of global code, when our variables are in the register file,
365 // the symbol table tells us how many variables there are, and registers
366 // points to where they end, and the registers used for execution begin.
367 visitor
.appendValues(m_registers
- symbolTable().size(), symbolTable().size());
371 ExecState
* JSGlobalObject::globalExec()
373 return CallFrame::create(m_globalCallFrame
+ RegisterFile::CallFrameHeaderSize
);
376 bool JSGlobalObject::isDynamicScope(bool&) const
381 void JSGlobalObject::disableEval()
383 ASSERT(m_isEvalEnabled
);
384 m_isEvalEnabled
= false;
387 void JSGlobalObject::copyGlobalsFrom(RegisterFile
& registerFile
)
389 ASSERT(!m_registerArray
);
390 ASSERT(!m_registerArraySize
);
392 int numGlobals
= registerFile
.numGlobals();
398 OwnArrayPtr
<WriteBarrier
<Unknown
> > registerArray
= copyRegisterArray(globalData(), reinterpret_cast<WriteBarrier
<Unknown
>*>(registerFile
.lastGlobal()), numGlobals
, numGlobals
);
399 WriteBarrier
<Unknown
>* registers
= registerArray
.get() + numGlobals
;
400 setRegisters(registers
, registerArray
.release(), numGlobals
);
403 void JSGlobalObject::copyGlobalsTo(RegisterFile
& registerFile
)
405 JSGlobalObject
* lastGlobalObject
= registerFile
.globalObject();
406 if (lastGlobalObject
&& lastGlobalObject
!= this)
407 lastGlobalObject
->copyGlobalsFrom(registerFile
);
409 registerFile
.setGlobalObject(this);
410 registerFile
.setNumGlobals(symbolTable().size());
412 if (m_registerArray
) {
413 // The register file is always a gc root so no barrier is needed here
414 memcpy(registerFile
.start() - m_registerArraySize
, m_registerArray
.get(), m_registerArraySize
* sizeof(WriteBarrier
<Unknown
>));
415 setRegisters(reinterpret_cast<WriteBarrier
<Unknown
>*>(registerFile
.start()), nullptr, 0);
419 void JSGlobalObject::resizeRegisters(int oldSize
, int newSize
)
421 ASSERT(oldSize
<= newSize
);
422 if (newSize
== oldSize
)
424 ASSERT(newSize
&& newSize
> oldSize
);
425 if (m_registerArray
|| !m_registers
) {
426 ASSERT(static_cast<size_t>(oldSize
) == m_registerArraySize
);
427 OwnArrayPtr
<WriteBarrier
<Unknown
> > registerArray
= adoptArrayPtr(new WriteBarrier
<Unknown
>[newSize
]);
428 for (int i
= 0; i
< oldSize
; i
++)
429 registerArray
[newSize
- oldSize
+ i
].set(globalData(), this, m_registerArray
[i
].get());
430 WriteBarrier
<Unknown
>* registers
= registerArray
.get() + newSize
;
431 setRegisters(registers
, registerArray
.release(), newSize
);
433 ASSERT(static_cast<size_t>(newSize
) < globalData().interpreter
->registerFile().maxGlobals());
434 globalData().interpreter
->registerFile().setNumGlobals(newSize
);
437 for (int i
= -newSize
; i
< -oldSize
; ++i
)
438 m_registers
[i
].setUndefined();
441 void* JSGlobalObject::operator new(size_t size
, JSGlobalData
* globalData
)
443 return globalData
->heap
.allocate(size
);
446 void JSGlobalObject::addStaticGlobals(GlobalPropertyInfo
* globals
, int count
)
448 size_t oldSize
= m_registerArraySize
;
449 size_t newSize
= oldSize
+ count
;
450 OwnArrayPtr
<WriteBarrier
<Unknown
> > registerArray
= adoptArrayPtr(new WriteBarrier
<Unknown
>[newSize
]);
451 if (m_registerArray
) {
452 // memcpy is safe here as we're copying barriers we already own from the existing array
453 memcpy(registerArray
.get() + count
, m_registerArray
.get(), oldSize
* sizeof(Register
));
456 WriteBarrier
<Unknown
>* registers
= registerArray
.get() + newSize
;
457 setRegisters(registers
, registerArray
.release(), newSize
);
459 for (int i
= 0, index
= -static_cast<int>(oldSize
) - 1; i
< count
; ++i
, --index
) {
460 GlobalPropertyInfo
& global
= globals
[i
];
461 ASSERT(global
.attributes
& DontDelete
);
462 SymbolTableEntry
newEntry(index
, global
.attributes
);
463 symbolTable().add(global
.identifier
.impl(), newEntry
);
464 registerAt(index
).set(globalData(), this, global
.value
);
468 bool JSGlobalObject::getOwnPropertySlot(ExecState
* exec
, const Identifier
& propertyName
, PropertySlot
& slot
)
470 if (getStaticFunctionSlot
<JSVariableObject
>(exec
, ExecState::globalObjectTable(exec
), this, propertyName
, slot
))
472 return symbolTableGet(propertyName
, slot
);
475 bool JSGlobalObject::getOwnPropertyDescriptor(ExecState
* exec
, const Identifier
& propertyName
, PropertyDescriptor
& descriptor
)
477 if (getStaticFunctionDescriptor
<JSVariableObject
>(exec
, ExecState::globalObjectTable(exec
), this, propertyName
, descriptor
))
479 return symbolTableGet(propertyName
, descriptor
);
482 void JSGlobalObject::WeakMapsFinalizer::finalize(Handle
<Unknown
> handle
, void*)
484 JSGlobalObject
* globalObject
= asGlobalObject(handle
.get());
485 globalObject
->m_weakMaps
.clear();
488 JSGlobalObject::WeakMapsFinalizer
* JSGlobalObject::weakMapsFinalizer()
490 static WeakMapsFinalizer
* finalizer
= new WeakMapsFinalizer();
494 DynamicGlobalObjectScope::DynamicGlobalObjectScope(JSGlobalData
& globalData
, JSGlobalObject
* dynamicGlobalObject
)
495 : m_dynamicGlobalObjectSlot(globalData
.dynamicGlobalObject
)
496 , m_savedDynamicGlobalObject(m_dynamicGlobalObjectSlot
)
498 if (!m_dynamicGlobalObjectSlot
) {
499 #if ENABLE(ASSEMBLER)
500 if (ExecutableAllocator::underMemoryPressure())
501 globalData
.recompileAllJSFunctions();
504 m_dynamicGlobalObjectSlot
= dynamicGlobalObject
;
506 // Reset the date cache between JS invocations to force the VM
507 // to observe time zone changes.
508 globalData
.resetDateCache();
512 void slowValidateCell(JSGlobalObject
* globalObject
)
514 if (!globalObject
->isGlobalObject())
516 ASSERT_GC_OBJECT_INHERITS(globalObject
, &JSGlobalObject::s_info
);