X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/6fe7ccc865dc7d7541b93c5bcaf6368d2c98a174..217a6308cd6a1dc049a0bb69263bd4c91f91c4d0:/runtime/NumberConstructor.cpp diff --git a/runtime/NumberConstructor.cpp b/runtime/NumberConstructor.cpp index e1ff62f..14e149d 100644 --- a/runtime/NumberConstructor.cpp +++ b/runtime/NumberConstructor.cpp @@ -25,16 +25,15 @@ #include "Lookup.h" #include "NumberObject.h" #include "NumberPrototype.h" +#include "Operations.h" namespace JSC { -ASSERT_CLASS_FITS_IN_CELL(NumberConstructor); - -static JSValue numberConstructorNaNValue(ExecState*, JSValue, const Identifier&); -static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier&); -static JSValue numberConstructorPosInfinity(ExecState*, JSValue, const Identifier&); -static JSValue numberConstructorMaxValue(ExecState*, JSValue, const Identifier&); -static JSValue numberConstructorMinValue(ExecState*, JSValue, const Identifier&); +static JSValue numberConstructorNaNValue(ExecState*, JSValue, PropertyName); +static JSValue numberConstructorNegInfinity(ExecState*, JSValue, PropertyName); +static JSValue numberConstructorPosInfinity(ExecState*, JSValue, PropertyName); +static JSValue numberConstructorMaxValue(ExecState*, JSValue, PropertyName); +static JSValue numberConstructorMinValue(ExecState*, JSValue, PropertyName); } // namespace JSC @@ -63,52 +62,52 @@ NumberConstructor::NumberConstructor(JSGlobalObject* globalObject, Structure* st void NumberConstructor::finishCreation(ExecState* exec, NumberPrototype* numberPrototype) { - Base::finishCreation(exec->globalData(), Identifier(exec, numberPrototype->s_info.className)); + Base::finishCreation(exec->vm(), numberPrototype->s_info.className); ASSERT(inherits(&s_info)); // Number.Prototype - putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly); + putDirectWithoutTransition(exec->vm(), exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly); // no. of arguments for constructor - putDirectWithoutTransition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete); + putDirectWithoutTransition(exec->vm(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete); } -bool NumberConstructor::getOwnPropertySlot(JSCell* cell, ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +bool NumberConstructor::getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, ExecState::numberConstructorTable(exec), jsCast(cell), propertyName, slot); } -bool NumberConstructor::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +bool NumberConstructor::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, ExecState::numberConstructorTable(exec), jsCast(object), propertyName, descriptor); } -void NumberConstructor::put(JSCell* cell, ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) +void NumberConstructor::put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, ExecState::numberConstructorTable(exec), jsCast(cell), slot); } -static JSValue numberConstructorNaNValue(ExecState*, JSValue, const Identifier&) +static JSValue numberConstructorNaNValue(ExecState*, JSValue, PropertyName) { return jsNaN(); } -static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier&) +static JSValue numberConstructorNegInfinity(ExecState*, JSValue, PropertyName) { return jsNumber(-std::numeric_limits::infinity()); } -static JSValue numberConstructorPosInfinity(ExecState*, JSValue, const Identifier&) +static JSValue numberConstructorPosInfinity(ExecState*, JSValue, PropertyName) { return jsNumber(std::numeric_limits::infinity()); } -static JSValue numberConstructorMaxValue(ExecState*, JSValue, const Identifier&) +static JSValue numberConstructorMaxValue(ExecState*, JSValue, PropertyName) { return jsNumber(1.7976931348623157E+308); } -static JSValue numberConstructorMinValue(ExecState*, JSValue, const Identifier&) +static JSValue numberConstructorMinValue(ExecState*, JSValue, PropertyName) { return jsNumber(5E-324); } @@ -116,9 +115,9 @@ static JSValue numberConstructorMinValue(ExecState*, JSValue, const Identifier&) // ECMA 15.7.1 static EncodedJSValue JSC_HOST_CALL constructWithNumberConstructor(ExecState* exec) { - NumberObject* object = NumberObject::create(exec->globalData(), asInternalFunction(exec->callee())->globalObject()->numberObjectStructure()); + NumberObject* object = NumberObject::create(exec->vm(), asInternalFunction(exec->callee())->globalObject()->numberObjectStructure()); double n = exec->argumentCount() ? exec->argument(0).toNumber(exec) : 0; - object->setInternalValue(exec->globalData(), jsNumber(n)); + object->setInternalValue(exec->vm(), jsNumber(n)); return JSValue::encode(object); }