| /* |
| * Copyright (C) 2007, 2008 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 "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 "GlobalEvalFunction.h" |
| #include "JSGlobalObjectFunctions.h" |
| #include "JSLock.h" |
| #include "Machine.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 "PrototypeFunction.h" |
| #include "RegExpConstructor.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; |
| |
| static inline void markIfNeeded(JSValue* v) |
| { |
| if (v && !v->marked()) |
| v->mark(); |
| } |
| |
| static inline void markIfNeeded(const RefPtr<StructureID>& s) |
| { |
| if (s) |
| s->mark(); |
| } |
| |
| JSGlobalObject::~JSGlobalObject() |
| { |
| ASSERT(JSLock::currentThreadIsHoldingLock()); |
| |
| if (d()->debugger) |
| d()->debugger->detach(this); |
| |
| Profiler** profiler = Profiler::enabledProfilerReference(); |
| if (UNLIKELY(*profiler != 0)) { |
| (*profiler)->stopProfiling(globalExec(), UString()); |
| } |
| |
| d()->next->d()->prev = d()->prev; |
| d()->prev->d()->next = d()->next; |
| JSGlobalObject*& headObject = head(); |
| if (headObject == this) |
| headObject = d()->next; |
| if (headObject == this) |
| headObject = 0; |
| |
| HashSet<ProgramCodeBlock*>::const_iterator end = codeBlocks().end(); |
| for (HashSet<ProgramCodeBlock*>::const_iterator it = codeBlocks().begin(); it != end; ++it) |
| (*it)->globalObject = 0; |
| |
| RegisterFile& registerFile = globalData()->machine->registerFile(); |
| if (registerFile.globalObject() == this) { |
| registerFile.setGlobalObject(0); |
| registerFile.setNumGlobals(0); |
| } |
| delete d(); |
| } |
| |
| void JSGlobalObject::init(JSObject* thisValue) |
| { |
| ASSERT(JSLock::currentThreadIsHoldingLock()); |
| |
| d()->globalData = Heap::heap(this)->globalData(); |
| |
| if (JSGlobalObject*& headObject = head()) { |
| d()->prev = headObject; |
| d()->next = headObject->d()->next; |
| headObject->d()->next->d()->prev = this; |
| headObject->d()->next = this; |
| } else |
| headObject = d()->next = d()->prev = this; |
| |
| d()->recursion = 0; |
| d()->debugger = 0; |
| globalData()->machine->initTimeout(); |
| |
| d()->globalExec.set(new ExecState(this, thisValue, d()->globalScopeChain.node())); |
| |
| d()->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(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(propertyName, value, attributes)) |
| return; |
| |
| JSValue* valueBefore = getDirect(propertyName); |
| PutPropertySlot slot; |
| JSVariableObject::put(exec, propertyName, value, slot); |
| if (!valueBefore) { |
| if (JSValue* valueAfter = getDirect(propertyName)) |
| putDirect(propertyName, valueAfter, attributes); |
| } |
| } |
| |
| void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc) |
| { |
| PropertySlot slot; |
| if (!symbolTableGet(propertyName, slot)) |
| JSVariableObject::defineGetter(exec, propertyName, getterFunc); |
| } |
| |
| void JSGlobalObject::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunc) |
| { |
| PropertySlot slot; |
| if (!symbolTableGet(propertyName, slot)) |
| JSVariableObject::defineSetter(exec, propertyName, setterFunc); |
| } |
| |
| static inline JSObject* lastInPrototypeChain(JSObject* object) |
| { |
| JSObject* o = object; |
| while (o->prototype()->isObject()) |
| o = static_cast<JSObject*>(o->prototype()); |
| return o; |
| } |
| |
| void JSGlobalObject::reset(JSValue* prototype) |
| { |
| // Clear before inititalizing, to avoid calling mark() on stale pointers -- |
| // which would be wasteful -- or uninitialized pointers -- which would be |
| // dangerous. (The allocations below may cause a GC.) |
| |
| ASSERT(!hasCustomProperties()); |
| symbolTable().clear(); |
| setRegisterArray(0, 0); |
| |
| ExecState* exec = d()->globalExec.get(); |
| |
| // Prototypes |
| |
| d()->functionPrototype = new (exec) FunctionPrototype(exec); |
| d()->functionStructure = StructureID::create(d()->functionPrototype); |
| d()->callbackFunctionStructure = StructureID::create(d()->functionPrototype); |
| d()->prototypeFunctionStructure = StructureID::create(d()->functionPrototype); |
| d()->callbackFunctionStructure = StructureID::create(d()->functionPrototype); |
| d()->functionPrototype->addFunctionProperties(exec, d()->prototypeFunctionStructure.get()); |
| d()->objectPrototype = new (exec) ObjectPrototype(exec, d()->prototypeFunctionStructure.get()); |
| d()->emptyObjectStructure = d()->objectPrototype->inheritorID(); |
| d()->functionPrototype->setPrototype(d()->objectPrototype); |
| d()->argumentsStructure = StructureID::create(d()->objectPrototype); |
| d()->callbackConstructorStructure = StructureID::create(d()->objectPrototype); |
| d()->callbackObjectStructure = StructureID::create(d()->objectPrototype); |
| d()->arrayPrototype = new (exec) ArrayPrototype(StructureID::create(d()->objectPrototype)); |
| d()->arrayStructure = StructureID::create(d()->arrayPrototype); |
| d()->regExpMatchesArrayStructure = StructureID::create(d()->arrayPrototype); |
| d()->stringPrototype = new (exec) StringPrototype(exec, StructureID::create(d()->objectPrototype)); |
| d()->stringObjectStructure = StructureID::create(d()->stringPrototype); |
| d()->booleanPrototype = new (exec) BooleanPrototype(exec, StructureID::create(d()->objectPrototype), d()->prototypeFunctionStructure.get()); |
| d()->booleanObjectStructure = StructureID::create(d()->booleanPrototype); |
| d()->numberPrototype = new (exec) NumberPrototype(exec, StructureID::create(d()->objectPrototype), d()->prototypeFunctionStructure.get()); |
| d()->numberObjectStructure = StructureID::create(d()->numberPrototype); |
| d()->datePrototype = new (exec) DatePrototype(exec, StructureID::create(d()->objectPrototype)); |
| d()->dateStructure = StructureID::create(d()->datePrototype); |
| d()->regExpPrototype = new (exec) RegExpPrototype(exec, StructureID::create(d()->objectPrototype), d()->prototypeFunctionStructure.get()); |
| d()->regExpStructure = StructureID::create(d()->regExpPrototype); |
| ErrorPrototype* errorPrototype = new (exec) ErrorPrototype(exec, StructureID::create(d()->objectPrototype), d()->prototypeFunctionStructure.get()); |
| d()->errorStructure = StructureID::create(errorPrototype); |
| |
| RefPtr<StructureID> nativeErrorPrototypeStructure = StructureID::create(errorPrototype); |
| |
| NativeErrorPrototype* evalErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "EvalError", "EvalError"); |
| NativeErrorPrototype* rangeErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "RangeError", "RangeError"); |
| NativeErrorPrototype* referenceErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "ReferenceError", "ReferenceError"); |
| NativeErrorPrototype* syntaxErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "SyntaxError", "SyntaxError"); |
| NativeErrorPrototype* typeErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "TypeError", "TypeError"); |
| NativeErrorPrototype* URIErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "URIError", "URIError"); |
| |
| // Constructors |
| |
| JSValue* objectConstructor = new (exec) ObjectConstructor(exec, StructureID::create(d()->functionPrototype), d()->objectPrototype); |
| JSValue* functionConstructor = new (exec) FunctionConstructor(exec, StructureID::create(d()->functionPrototype), d()->functionPrototype); |
| JSValue* arrayConstructor = new (exec) ArrayConstructor(exec, StructureID::create(d()->functionPrototype), d()->arrayPrototype); |
| JSValue* stringConstructor = new (exec) StringConstructor(exec, StructureID::create(d()->functionPrototype), d()->prototypeFunctionStructure.get(), d()->stringPrototype); |
| JSValue* booleanConstructor = new (exec) BooleanConstructor(exec, StructureID::create(d()->functionPrototype), d()->booleanPrototype); |
| JSValue* numberConstructor = new (exec) NumberConstructor(exec, StructureID::create(d()->functionPrototype), d()->numberPrototype); |
| JSValue* dateConstructor = new (exec) DateConstructor(exec, StructureID::create(d()->functionPrototype), d()->prototypeFunctionStructure.get(), d()->datePrototype); |
| |
| d()->regExpConstructor = new (exec) RegExpConstructor(exec, StructureID::create(d()->functionPrototype), d()->regExpPrototype); |
| |
| d()->errorConstructor = new (exec) ErrorConstructor(exec, StructureID::create(d()->functionPrototype), errorPrototype); |
| |
| RefPtr<StructureID> nativeErrorStructure = StructureID::create(d()->functionPrototype); |
| |
| d()->evalErrorConstructor = new (exec) NativeErrorConstructor(exec, nativeErrorStructure, evalErrorPrototype); |
| d()->rangeErrorConstructor = new (exec) NativeErrorConstructor(exec, nativeErrorStructure, rangeErrorPrototype); |
| d()->referenceErrorConstructor = new (exec) NativeErrorConstructor(exec, nativeErrorStructure, referenceErrorPrototype); |
| d()->syntaxErrorConstructor = new (exec) NativeErrorConstructor(exec, nativeErrorStructure, syntaxErrorPrototype); |
| d()->typeErrorConstructor = new (exec) NativeErrorConstructor(exec, nativeErrorStructure, typeErrorPrototype); |
| d()->URIErrorConstructor = new (exec) NativeErrorConstructor(exec, nativeErrorStructure, URIErrorPrototype); |
| |
| d()->functionPrototype->putDirect(exec->propertyNames().constructor, functionConstructor, DontEnum); |
| |
| d()->objectPrototype->putDirect(exec->propertyNames().constructor, objectConstructor, DontEnum); |
| d()->functionPrototype->putDirect(exec->propertyNames().constructor, functionConstructor, DontEnum); |
| d()->arrayPrototype->putDirect(exec->propertyNames().constructor, arrayConstructor, DontEnum); |
| d()->booleanPrototype->putDirect(exec->propertyNames().constructor, booleanConstructor, DontEnum); |
| d()->stringPrototype->putDirect(exec->propertyNames().constructor, stringConstructor, DontEnum); |
| d()->numberPrototype->putDirect(exec->propertyNames().constructor, numberConstructor, DontEnum); |
| d()->datePrototype->putDirect(exec->propertyNames().constructor, dateConstructor, DontEnum); |
| d()->regExpPrototype->putDirect(exec->propertyNames().constructor, d()->regExpConstructor, DontEnum); |
| errorPrototype->putDirect(exec->propertyNames().constructor, d()->errorConstructor, DontEnum); |
| evalErrorPrototype->putDirect(exec->propertyNames().constructor, d()->evalErrorConstructor, DontEnum); |
| rangeErrorPrototype->putDirect(exec->propertyNames().constructor, d()->rangeErrorConstructor, DontEnum); |
| referenceErrorPrototype->putDirect(exec->propertyNames().constructor, d()->referenceErrorConstructor, DontEnum); |
| syntaxErrorPrototype->putDirect(exec->propertyNames().constructor, d()->syntaxErrorConstructor, DontEnum); |
| typeErrorPrototype->putDirect(exec->propertyNames().constructor, d()->typeErrorConstructor, DontEnum); |
| URIErrorPrototype->putDirect(exec->propertyNames().constructor, d()->URIErrorConstructor, DontEnum); |
| |
| // Set global constructors |
| |
| // FIXME: These properties could be handled by a static hash table. |
| |
| putDirect(Identifier(exec, "Object"), objectConstructor, DontEnum); |
| putDirect(Identifier(exec, "Function"), functionConstructor, DontEnum); |
| putDirect(Identifier(exec, "Array"), arrayConstructor, DontEnum); |
| putDirect(Identifier(exec, "Boolean"), booleanConstructor, DontEnum); |
| putDirect(Identifier(exec, "String"), stringConstructor, DontEnum); |
| putDirect(Identifier(exec, "Number"), numberConstructor, DontEnum); |
| putDirect(Identifier(exec, "Date"), dateConstructor, DontEnum); |
| putDirect(Identifier(exec, "RegExp"), d()->regExpConstructor, DontEnum); |
| putDirect(Identifier(exec, "Error"), d()->errorConstructor, DontEnum); |
| putDirect(Identifier(exec, "EvalError"), d()->evalErrorConstructor); |
| putDirect(Identifier(exec, "RangeError"), d()->rangeErrorConstructor); |
| putDirect(Identifier(exec, "ReferenceError"), d()->referenceErrorConstructor); |
| putDirect(Identifier(exec, "SyntaxError"), d()->syntaxErrorConstructor); |
| putDirect(Identifier(exec, "TypeError"), d()->typeErrorConstructor); |
| putDirect(Identifier(exec, "URIError"), d()->URIErrorConstructor); |
| |
| // Set global values. |
| GlobalPropertyInfo staticGlobals[] = { |
| GlobalPropertyInfo(Identifier(exec, "Math"), new (exec) MathObject(exec, StructureID::create(d()->objectPrototype)), DontEnum | DontDelete), |
| GlobalPropertyInfo(Identifier(exec, "NaN"), jsNaN(exec), DontEnum | DontDelete), |
| GlobalPropertyInfo(Identifier(exec, "Infinity"), jsNumber(exec, Inf), DontEnum | DontDelete), |
| GlobalPropertyInfo(Identifier(exec, "undefined"), jsUndefined(), DontEnum | DontDelete) |
| }; |
| |
| addStaticGlobals(staticGlobals, sizeof(staticGlobals) / sizeof(GlobalPropertyInfo)); |
| |
| // Set global functions. |
| |
| d()->evalFunction = new (exec) GlobalEvalFunction(exec, StructureID::create(d()->functionPrototype), 1, exec->propertyNames().eval, globalFuncEval, this); |
| putDirectFunction(exec, d()->evalFunction, DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 2, Identifier(exec, "parseInt"), globalFuncParseInt), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "parseFloat"), globalFuncParseFloat), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "isNaN"), globalFuncIsNaN), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "isFinite"), globalFuncIsFinite), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "escape"), globalFuncEscape), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "unescape"), globalFuncUnescape), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "decodeURI"), globalFuncDecodeURI), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "decodeURIComponent"), globalFuncDecodeURIComponent), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "encodeURI"), globalFuncEncodeURI), DontEnum); |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "encodeURIComponent"), globalFuncEncodeURIComponent), DontEnum); |
| #ifndef NDEBUG |
| putDirectFunction(exec, new (exec) PrototypeFunction(exec, d()->prototypeFunctionStructure.get(), 1, Identifier(exec, "kjsprint"), globalFuncKJSPrint), DontEnum); |
| #endif |
| |
| resetPrototype(prototype); |
| } |
| |
| // Set prototype, and also insert the object prototype at the end of the chain. |
| void JSGlobalObject::resetPrototype(JSValue* prototype) |
| { |
| setPrototype(prototype); |
| lastInPrototypeChain(this)->setPrototype(d()->objectPrototype); |
| } |
| |
| void JSGlobalObject::setTimeoutTime(unsigned timeoutTime) |
| { |
| globalData()->machine->setTimeoutTime(timeoutTime); |
| } |
| |
| void JSGlobalObject::startTimeoutCheck() |
| { |
| globalData()->machine->startTimeoutCheck(); |
| } |
| |
| void JSGlobalObject::stopTimeoutCheck() |
| { |
| globalData()->machine->stopTimeoutCheck(); |
| } |
| |
| void JSGlobalObject::mark() |
| { |
| JSVariableObject::mark(); |
| |
| HashSet<ProgramCodeBlock*>::const_iterator end = codeBlocks().end(); |
| for (HashSet<ProgramCodeBlock*>::const_iterator it = codeBlocks().begin(); it != end; ++it) |
| (*it)->mark(); |
| |
| RegisterFile& registerFile = globalData()->machine->registerFile(); |
| if (registerFile.globalObject() == this) |
| registerFile.markGlobals(globalData()->heap); |
| |
| markIfNeeded(d()->globalExec->exception()); |
| |
| markIfNeeded(d()->regExpConstructor); |
| markIfNeeded(d()->errorConstructor); |
| markIfNeeded(d()->evalErrorConstructor); |
| markIfNeeded(d()->rangeErrorConstructor); |
| markIfNeeded(d()->referenceErrorConstructor); |
| markIfNeeded(d()->syntaxErrorConstructor); |
| markIfNeeded(d()->typeErrorConstructor); |
| markIfNeeded(d()->URIErrorConstructor); |
| |
| markIfNeeded(d()->evalFunction); |
| |
| markIfNeeded(d()->objectPrototype); |
| markIfNeeded(d()->functionPrototype); |
| markIfNeeded(d()->booleanPrototype); |
| markIfNeeded(d()->stringPrototype); |
| markIfNeeded(d()->numberPrototype); |
| markIfNeeded(d()->datePrototype); |
| markIfNeeded(d()->regExpPrototype); |
| |
| markIfNeeded(d()->errorStructure); |
| |
| // No need to mark the other structures, because their prototypes are all |
| // guaranteed to be referenced elsewhere. |
| } |
| |
| JSGlobalObject* JSGlobalObject::toGlobalObject(ExecState*) const |
| { |
| return const_cast<JSGlobalObject*>(this); |
| } |
| |
| ExecState* JSGlobalObject::globalExec() |
| { |
| return d()->globalExec.get(); |
| } |
| |
| bool JSGlobalObject::isDynamicScope() const |
| { |
| return true; |
| } |
| |
| void JSGlobalObject::copyGlobalsFrom(RegisterFile& registerFile) |
| { |
| ASSERT(!d()->registerArray); |
| ASSERT(!d()->registerArraySize); |
| |
| int numGlobals = registerFile.numGlobals(); |
| if (!numGlobals) { |
| d()->registers = 0; |
| return; |
| } |
| copyRegisterArray(registerFile.lastGlobal(), 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 (d()->registerArray) { |
| memcpy(registerFile.base() - d()->registerArraySize, d()->registerArray.get(), d()->registerArraySize * sizeof(Register)); |
| setRegisterArray(0, 0); |
| } |
| |
| d()->registers = registerFile.base(); |
| } |
| |
| void* JSGlobalObject::operator new(size_t size, JSGlobalData* globalData) |
| { |
| #ifdef JAVASCRIPTCORE_BUILDING_ALL_IN_ONE_FILE |
| return globalData->heap->inlineAllocate(size); |
| #else |
| return globalData->heap->allocate(size); |
| #endif |
| } |
| |
| } // namespace JSC |