| /* |
| * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved. |
| * Copyright (C) 2008 Cameron Zwarich (cwzwarich@uwaterloo.ca) |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of |
| * its contributors may be used to endorse or promote products derived |
| * from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "JSGlobalObject.h" |
| |
| #include "JSCallbackConstructor.h" |
| #include "JSCallbackFunction.h" |
| #include "JSCallbackObject.h" |
| |
| #include "Arguments.h" |
| #include "ArrayConstructor.h" |
| #include "ArrayPrototype.h" |
| #include "BooleanConstructor.h" |
| #include "BooleanPrototype.h" |
| #include "CodeBlock.h" |
| #include "DateConstructor.h" |
| #include "DatePrototype.h" |
| #include "ErrorConstructor.h" |
| #include "ErrorPrototype.h" |
| #include "FunctionConstructor.h" |
| #include "FunctionPrototype.h" |
| #include "JSFunction.h" |
| #include "JSGlobalObjectFunctions.h" |
| #include "JSLock.h" |
| #include "JSONObject.h" |
| #include "Interpreter.h" |
| #include "MathObject.h" |
| #include "NativeErrorConstructor.h" |
| #include "NativeErrorPrototype.h" |
| #include "NumberConstructor.h" |
| #include "NumberPrototype.h" |
| #include "ObjectConstructor.h" |
| #include "ObjectPrototype.h" |
| #include "Profiler.h" |
| #include "RegExpConstructor.h" |
| #include "RegExpMatchesArray.h" |
| #include "RegExpObject.h" |
| #include "RegExpPrototype.h" |
| #include "ScopeChainMark.h" |
| #include "StringConstructor.h" |
| #include "StringPrototype.h" |
| #include "Debugger.h" |
| |
| namespace JSC { |
| |
| ASSERT_CLASS_FITS_IN_CELL(JSGlobalObject); |
| |
| // Default number of ticks before a timeout check should be done. |
| static const int initialTickCountThreshold = 255; |
| |
| // Preferred number of milliseconds between each timeout check |
| static const int preferredScriptCheckTimeInterval = 1000; |
| |
| template <typename T> static inline void markIfNeeded(MarkStack& markStack, WriteBarrier<T>* v) |
| { |
| if (*v) |
| markStack.append(v); |
| } |
| |
| JSGlobalObject::~JSGlobalObject() |
| { |
| ASSERT(JSLock::currentThreadIsHoldingLock()); |
| |
| if (m_debugger) |
| m_debugger->detach(this); |
| |
| Profiler** profiler = Profiler::enabledProfilerReference(); |
| if (UNLIKELY(*profiler != 0)) { |
| (*profiler)->stopProfiling(this); |
| } |
| } |
| |
| void JSGlobalObject::init(JSObject* thisValue) |
| { |
| ASSERT(JSLock::currentThreadIsHoldingLock()); |
| |
| structure()->disableSpecificFunctionTracking(); |
| |
| m_globalData = Heap::heap(this)->globalData(); |
| m_globalScopeChain.set(*m_globalData, this, new (m_globalData.get()) ScopeChainNode(0, this, m_globalData.get(), this, thisValue)); |
| |
| JSGlobalObject::globalExec()->init(0, 0, m_globalScopeChain.get(), CallFrame::noCaller(), 0, 0); |
| |
| m_debugger = 0; |
| |
| m_profileGroup = 0; |
| |
| reset(prototype()); |
| } |
| |
| void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) |
| { |
| ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this)); |
| |
| if (symbolTablePut(exec->globalData(), propertyName, value)) |
| return; |
| JSVariableObject::put(exec, propertyName, value, slot); |
| } |
| |
| void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) |
| { |
| ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this)); |
| |
| if (symbolTablePutWithAttributes(exec->globalData(), propertyName, value, attributes)) |
| return; |
| |
| JSValue valueBefore = getDirect(exec->globalData(), propertyName); |
| PutPropertySlot slot; |
| JSVariableObject::put(exec, propertyName, value, slot); |
| if (!valueBefore) { |
| JSValue valueAfter = getDirect(exec->globalData(), propertyName); |
| if (valueAfter) |
| JSObject::putWithAttributes(exec, propertyName, valueAfter, attributes); |
| } |
| } |
| |
| void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes) |
| { |
| PropertySlot slot; |
| if (!symbolTableGet(propertyName, slot)) |
| JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes); |
| } |
| |
| void JSGlobalObject::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunc, unsigned attributes) |
| { |
| PropertySlot slot; |
| if (!symbolTableGet(propertyName, slot)) |
| JSVariableObject::defineSetter(exec, propertyName, setterFunc, attributes); |
| } |
| |
| static inline JSObject* lastInPrototypeChain(JSObject* object) |
| { |
| JSObject* o = object; |
| while (o->prototype().isObject()) |
| o = asObject(o->prototype()); |
| return o; |
| } |
| |
| void JSGlobalObject::reset(JSValue prototype) |
| { |
| ExecState* exec = JSGlobalObject::globalExec(); |
| |
| // Prototypes |
| |
| 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. |
| m_functionStructure.set(exec->globalData(), this, JSFunction::createStructure(exec->globalData(), m_functionPrototype.get())); |
| m_internalFunctionStructure.set(exec->globalData(), this, InternalFunction::createStructure(exec->globalData(), m_functionPrototype.get())); |
| JSFunction* callFunction = 0; |
| JSFunction* applyFunction = 0; |
| m_functionPrototype->addFunctionProperties(exec, this, m_functionStructure.get(), &callFunction, &applyFunction); |
| m_callFunction.set(exec->globalData(), this, callFunction); |
| m_applyFunction.set(exec->globalData(), this, applyFunction); |
| m_objectPrototype.set(exec->globalData(), this, new (exec) ObjectPrototype(exec, this, ObjectPrototype::createStructure(exec->globalData(), jsNull()), m_functionStructure.get())); |
| m_functionPrototype->structure()->setPrototypeWithoutTransition(exec->globalData(), m_objectPrototype.get()); |
| |
| m_emptyObjectStructure.set(exec->globalData(), this, m_objectPrototype->inheritorID(exec->globalData())); |
| |
| m_callbackFunctionStructure.set(exec->globalData(), this, JSCallbackFunction::createStructure(exec->globalData(), m_functionPrototype.get())); |
| m_argumentsStructure.set(exec->globalData(), this, Arguments::createStructure(exec->globalData(), m_objectPrototype.get())); |
| m_callbackConstructorStructure.set(exec->globalData(), this, JSCallbackConstructor::createStructure(exec->globalData(), m_objectPrototype.get())); |
| m_callbackObjectStructure.set(exec->globalData(), this, JSCallbackObject<JSObjectWithGlobalObject>::createStructure(exec->globalData(), m_objectPrototype.get())); |
| |
| m_arrayPrototype.set(exec->globalData(), this, new (exec) ArrayPrototype(this, ArrayPrototype::createStructure(exec->globalData(), m_objectPrototype.get()))); |
| m_arrayStructure.set(exec->globalData(), this, JSArray::createStructure(exec->globalData(), m_arrayPrototype.get())); |
| m_regExpMatchesArrayStructure.set(exec->globalData(), this, RegExpMatchesArray::createStructure(exec->globalData(), m_arrayPrototype.get())); |
| |
| m_stringPrototype.set(exec->globalData(), this, new (exec) StringPrototype(exec, this, StringPrototype::createStructure(exec->globalData(), m_objectPrototype.get()))); |
| m_stringObjectStructure.set(exec->globalData(), this, StringObject::createStructure(exec->globalData(), m_stringPrototype.get())); |
| |
| m_booleanPrototype.set(exec->globalData(), this, new (exec) BooleanPrototype(exec, this, BooleanPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get())); |
| m_booleanObjectStructure.set(exec->globalData(), this, BooleanObject::createStructure(exec->globalData(), m_booleanPrototype.get())); |
| |
| m_numberPrototype.set(exec->globalData(), this, new (exec) NumberPrototype(exec, this, NumberPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get())); |
| m_numberObjectStructure.set(exec->globalData(), this, NumberObject::createStructure(exec->globalData(), m_numberPrototype.get())); |
| |
| m_datePrototype.set(exec->globalData(), this, new (exec) DatePrototype(exec, this, DatePrototype::createStructure(exec->globalData(), m_objectPrototype.get()))); |
| m_dateStructure.set(exec->globalData(), this, DateInstance::createStructure(exec->globalData(), m_datePrototype.get())); |
| |
| m_regExpPrototype.set(exec->globalData(), this, new (exec) RegExpPrototype(exec, this, RegExpPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get())); |
| m_regExpStructure.set(exec->globalData(), this, RegExpObject::createStructure(exec->globalData(), m_regExpPrototype.get())); |
| |
| m_methodCallDummy.set(exec->globalData(), this, constructEmptyObject(exec)); |
| |
| ErrorPrototype* errorPrototype = new (exec) ErrorPrototype(exec, this, ErrorPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get()); |
| m_errorStructure.set(exec->globalData(), this, ErrorInstance::createStructure(exec->globalData(), errorPrototype)); |
| |
| // Constructors |
| |
| JSCell* objectConstructor = new (exec) ObjectConstructor(exec, this, ObjectConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_objectPrototype.get()); |
| JSCell* functionConstructor = new (exec) FunctionConstructor(exec, this, FunctionConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_functionPrototype.get()); |
| JSCell* arrayConstructor = new (exec) ArrayConstructor(exec, this, ArrayConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_arrayPrototype.get(), m_functionStructure.get()); |
| JSCell* stringConstructor = new (exec) StringConstructor(exec, this, StringConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_functionStructure.get(), m_stringPrototype.get()); |
| JSCell* booleanConstructor = new (exec) BooleanConstructor(exec, this, BooleanConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_booleanPrototype.get()); |
| JSCell* numberConstructor = new (exec) NumberConstructor(exec, this, NumberConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_numberPrototype.get()); |
| JSCell* dateConstructor = new (exec) DateConstructor(exec, this, DateConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_functionStructure.get(), m_datePrototype.get()); |
| |
| m_regExpConstructor.set(exec->globalData(), this, new (exec) RegExpConstructor(exec, this, RegExpConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_regExpPrototype.get())); |
| |
| m_errorConstructor.set(exec->globalData(), this, new (exec) ErrorConstructor(exec, this, ErrorConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), errorPrototype)); |
| |
| Structure* nativeErrorPrototypeStructure = NativeErrorPrototype::createStructure(exec->globalData(), errorPrototype); |
| Structure* nativeErrorStructure = NativeErrorConstructor::createStructure(exec->globalData(), m_functionPrototype.get()); |
| m_evalErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "EvalError")); |
| m_rangeErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "RangeError")); |
| m_referenceErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "ReferenceError")); |
| m_syntaxErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "SyntaxError")); |
| m_typeErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "TypeError")); |
| m_URIErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "URIError")); |
| |
| m_objectPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, objectConstructor, DontEnum); |
| m_functionPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, functionConstructor, DontEnum); |
| m_arrayPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, arrayConstructor, DontEnum); |
| m_booleanPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, booleanConstructor, DontEnum); |
| m_stringPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, stringConstructor, DontEnum); |
| m_numberPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, numberConstructor, DontEnum); |
| m_datePrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, dateConstructor, DontEnum); |
| m_regExpPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, m_regExpConstructor.get(), DontEnum); |
| errorPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, m_errorConstructor.get(), DontEnum); |
| |
| // Set global constructors |
| |
| // FIXME: These properties could be handled by a static hash table. |
| |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Object"), objectConstructor, DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Function"), functionConstructor, DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Array"), arrayConstructor, DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Boolean"), booleanConstructor, DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "String"), stringConstructor, DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Number"), numberConstructor, DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Date"), dateConstructor, DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "RegExp"), m_regExpConstructor.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Error"), m_errorConstructor.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "EvalError"), m_evalErrorConstructor.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "RangeError"), m_rangeErrorConstructor.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "ReferenceError"), m_referenceErrorConstructor.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "SyntaxError"), m_syntaxErrorConstructor.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "TypeError"), m_typeErrorConstructor.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "URIError"), m_URIErrorConstructor.get(), DontEnum); |
| |
| // Set global values. |
| GlobalPropertyInfo staticGlobals[] = { |
| GlobalPropertyInfo(Identifier(exec, "Math"), new (exec) MathObject(exec, this, MathObject::createStructure(exec->globalData(), m_objectPrototype.get())), DontEnum | DontDelete), |
| GlobalPropertyInfo(Identifier(exec, "NaN"), jsNaN(), DontEnum | DontDelete | ReadOnly), |
| GlobalPropertyInfo(Identifier(exec, "Infinity"), jsNumber(Inf), DontEnum | DontDelete | ReadOnly), |
| GlobalPropertyInfo(Identifier(exec, "undefined"), jsUndefined(), DontEnum | DontDelete | ReadOnly), |
| GlobalPropertyInfo(Identifier(exec, "JSON"), new (exec) JSONObject(this, JSONObject::createStructure(exec->globalData(), m_objectPrototype.get())), DontEnum | DontDelete) |
| }; |
| |
| addStaticGlobals(staticGlobals, WTF_ARRAY_LENGTH(staticGlobals)); |
| |
| // Set global functions. |
| |
| m_evalFunction.set(exec->globalData(), this, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, exec->propertyNames().eval, globalFuncEval)); |
| putDirectFunctionWithoutTransition(exec, m_evalFunction.get(), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 2, Identifier(exec, "parseInt"), globalFuncParseInt), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "parseFloat"), globalFuncParseFloat), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "isNaN"), globalFuncIsNaN), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "isFinite"), globalFuncIsFinite), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "escape"), globalFuncEscape), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "unescape"), globalFuncUnescape), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "decodeURI"), globalFuncDecodeURI), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "decodeURIComponent"), globalFuncDecodeURIComponent), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "encodeURI"), globalFuncEncodeURI), DontEnum); |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "encodeURIComponent"), globalFuncEncodeURIComponent), DontEnum); |
| #ifndef NDEBUG |
| putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, Identifier(exec, "jscprint"), globalFuncJSCPrint), DontEnum); |
| #endif |
| |
| resetPrototype(exec->globalData(), prototype); |
| } |
| |
| // Set prototype, and also insert the object prototype at the end of the chain. |
| void JSGlobalObject::resetPrototype(JSGlobalData& globalData, JSValue prototype) |
| { |
| setPrototype(globalData, prototype); |
| |
| JSObject* oldLastInPrototypeChain = lastInPrototypeChain(this); |
| JSObject* objectPrototype = m_objectPrototype.get(); |
| if (oldLastInPrototypeChain != objectPrototype) |
| oldLastInPrototypeChain->setPrototype(globalData, objectPrototype); |
| } |
| |
| void JSGlobalObject::markChildren(MarkStack& markStack) |
| { |
| JSVariableObject::markChildren(markStack); |
| |
| markIfNeeded(markStack, &m_globalScopeChain); |
| markIfNeeded(markStack, &m_methodCallDummy); |
| |
| markIfNeeded(markStack, &m_regExpConstructor); |
| markIfNeeded(markStack, &m_errorConstructor); |
| markIfNeeded(markStack, &m_evalErrorConstructor); |
| markIfNeeded(markStack, &m_rangeErrorConstructor); |
| markIfNeeded(markStack, &m_referenceErrorConstructor); |
| markIfNeeded(markStack, &m_syntaxErrorConstructor); |
| markIfNeeded(markStack, &m_typeErrorConstructor); |
| markIfNeeded(markStack, &m_URIErrorConstructor); |
| |
| markIfNeeded(markStack, &m_evalFunction); |
| markIfNeeded(markStack, &m_callFunction); |
| markIfNeeded(markStack, &m_applyFunction); |
| |
| markIfNeeded(markStack, &m_objectPrototype); |
| markIfNeeded(markStack, &m_functionPrototype); |
| markIfNeeded(markStack, &m_arrayPrototype); |
| markIfNeeded(markStack, &m_booleanPrototype); |
| markIfNeeded(markStack, &m_stringPrototype); |
| markIfNeeded(markStack, &m_numberPrototype); |
| markIfNeeded(markStack, &m_datePrototype); |
| markIfNeeded(markStack, &m_regExpPrototype); |
| |
| markIfNeeded(markStack, &m_argumentsStructure); |
| markIfNeeded(markStack, &m_arrayStructure); |
| markIfNeeded(markStack, &m_booleanObjectStructure); |
| markIfNeeded(markStack, &m_callbackConstructorStructure); |
| markIfNeeded(markStack, &m_callbackFunctionStructure); |
| markIfNeeded(markStack, &m_callbackObjectStructure); |
| markIfNeeded(markStack, &m_dateStructure); |
| markIfNeeded(markStack, &m_emptyObjectStructure); |
| markIfNeeded(markStack, &m_errorStructure); |
| markIfNeeded(markStack, &m_functionStructure); |
| markIfNeeded(markStack, &m_numberObjectStructure); |
| markIfNeeded(markStack, &m_regExpMatchesArrayStructure); |
| markIfNeeded(markStack, &m_regExpStructure); |
| markIfNeeded(markStack, &m_stringObjectStructure); |
| markIfNeeded(markStack, &m_internalFunctionStructure); |
| |
| if (m_registerArray) { |
| // Outside the execution of global code, when our variables are torn off, |
| // we can mark the torn-off array. |
| markStack.appendValues(m_registerArray.get(), m_registerArraySize); |
| } else if (m_registers) { |
| // During execution of global code, when our variables are in the register file, |
| // the symbol table tells us how many variables there are, and registers |
| // points to where they end, and the registers used for execution begin. |
| markStack.appendValues(m_registers - symbolTable().size(), symbolTable().size()); |
| } |
| } |
| |
| ExecState* JSGlobalObject::globalExec() |
| { |
| return CallFrame::create(m_globalCallFrame + RegisterFile::CallFrameHeaderSize); |
| } |
| |
| bool JSGlobalObject::isDynamicScope(bool&) const |
| { |
| return true; |
| } |
| |
| void JSGlobalObject::copyGlobalsFrom(RegisterFile& registerFile) |
| { |
| ASSERT(!m_registerArray); |
| ASSERT(!m_registerArraySize); |
| |
| int numGlobals = registerFile.numGlobals(); |
| if (!numGlobals) { |
| m_registers = 0; |
| return; |
| } |
| |
| OwnArrayPtr<WriteBarrier<Unknown> > registerArray = copyRegisterArray(globalData(), reinterpret_cast<WriteBarrier<Unknown>*>(registerFile.lastGlobal()), numGlobals, numGlobals); |
| WriteBarrier<Unknown>* registers = registerArray.get() + numGlobals; |
| setRegisters(registers, registerArray.release(), numGlobals); |
| } |
| |
| void JSGlobalObject::copyGlobalsTo(RegisterFile& registerFile) |
| { |
| JSGlobalObject* lastGlobalObject = registerFile.globalObject(); |
| if (lastGlobalObject && lastGlobalObject != this) |
| lastGlobalObject->copyGlobalsFrom(registerFile); |
| |
| registerFile.setGlobalObject(this); |
| registerFile.setNumGlobals(symbolTable().size()); |
| |
| if (m_registerArray) { |
| // The register file is always a gc root so no barrier is needed here |
| memcpy(registerFile.start() - m_registerArraySize, m_registerArray.get(), m_registerArraySize * sizeof(WriteBarrier<Unknown>)); |
| setRegisters(reinterpret_cast<WriteBarrier<Unknown>*>(registerFile.start()), nullptr, 0); |
| } |
| } |
| |
| void JSGlobalObject::resizeRegisters(int oldSize, int newSize) |
| { |
| ASSERT(oldSize <= newSize); |
| if (newSize == oldSize) |
| return; |
| ASSERT(newSize && newSize > oldSize); |
| if (m_registerArray || !m_registers) { |
| ASSERT(static_cast<size_t>(oldSize) == m_registerArraySize); |
| OwnArrayPtr<WriteBarrier<Unknown> > registerArray = adoptArrayPtr(new WriteBarrier<Unknown>[newSize]); |
| for (int i = 0; i < oldSize; i++) |
| registerArray[newSize - oldSize + i].set(globalData(), this, m_registerArray[i].get()); |
| WriteBarrier<Unknown>* registers = registerArray.get() + newSize; |
| setRegisters(registers, registerArray.release(), newSize); |
| } else { |
| ASSERT(static_cast<size_t>(newSize) < globalData().interpreter->registerFile().maxGlobals()); |
| globalData().interpreter->registerFile().setNumGlobals(newSize); |
| } |
| |
| for (int i = -newSize; i < -oldSize; ++i) |
| m_registers[i].setUndefined(); |
| } |
| |
| void* JSGlobalObject::operator new(size_t size, JSGlobalData* globalData) |
| { |
| return globalData->heap.allocate(size); |
| } |
| |
| DynamicGlobalObjectScope::DynamicGlobalObjectScope(JSGlobalData& globalData, JSGlobalObject* dynamicGlobalObject) |
| : m_dynamicGlobalObjectSlot(globalData.dynamicGlobalObject) |
| , m_savedDynamicGlobalObject(m_dynamicGlobalObjectSlot) |
| { |
| if (!m_dynamicGlobalObjectSlot) { |
| #if ENABLE(ASSEMBLER) |
| if (ExecutableAllocator::underMemoryPressure()) |
| globalData.recompileAllJSFunctions(); |
| #endif |
| |
| m_dynamicGlobalObjectSlot = dynamicGlobalObject; |
| |
| // Reset the date cache between JS invocations to force the VM |
| // to observe time zone changes. |
| globalData.resetDateCache(); |
| } |
| } |
| |
| } // namespace JSC |