X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/ba379fdc102753d6be2c4d937058fe40257329fe..4be4e30906bcb8ee30b4d189205cb70bad6707ce:/runtime/Operations.cpp diff --git a/runtime/Operations.cpp b/runtime/Operations.cpp index 093bbec..d6cc0ff 100644 --- a/runtime/Operations.cpp +++ b/runtime/Operations.cpp @@ -29,10 +29,6 @@ #include #include -#if HAVE(FLOAT_H) -#include -#endif - namespace JSC { bool JSValue::equalSlowCase(ExecState* exec, JSValue v1, JSValue v2) @@ -40,16 +36,9 @@ bool JSValue::equalSlowCase(ExecState* exec, JSValue v1, JSValue v2) return equalSlowCaseInline(exec, v1, v2); } -bool JSValue::strictEqualSlowCase(JSValue v1, JSValue v2) -{ - return strictEqualSlowCaseInline(v1, v2); -} - -NEVER_INLINE JSValue throwOutOfMemoryError(ExecState* exec) +bool JSValue::strictEqualSlowCase(ExecState* exec, JSValue v1, JSValue v2) { - JSObject* error = Error::create(exec, GeneralError, "Out of memory"); - exec->setException(error); - return error; + return strictEqualSlowCaseInline(exec, v1, v2); } NEVER_INLINE JSValue jsAddSlowCase(CallFrame* callFrame, JSValue v1, JSValue v2) @@ -58,51 +47,57 @@ NEVER_INLINE JSValue jsAddSlowCase(CallFrame* callFrame, JSValue v1, JSValue v2) JSValue p1 = v1.toPrimitive(callFrame); JSValue p2 = v2.toPrimitive(callFrame); - if (p1.isString() || p2.isString()) { - RefPtr value = concatenate(p1.toString(callFrame).rep(), p2.toString(callFrame).rep()); - if (!value) - return throwOutOfMemoryError(callFrame); - return jsString(callFrame, value.release()); - } + if (p1.isString()) + return jsString(callFrame, asString(p1), p2.toString(callFrame)); + + if (p2.isString()) + return jsString(callFrame, p1.toString(callFrame), asString(p2)); - return jsNumber(callFrame, p1.toNumber(callFrame) + p2.toNumber(callFrame)); + return jsNumber(p1.toNumber(callFrame) + p2.toNumber(callFrame)); } -JSValue jsTypeStringForValue(CallFrame* callFrame, JSValue v) +JSValue jsTypeStringForValue(VM& vm, JSGlobalObject* globalObject, JSValue v) { if (v.isUndefined()) - return jsNontrivialString(callFrame, "undefined"); + return vm.smallStrings.undefinedString(); if (v.isBoolean()) - return jsNontrivialString(callFrame, "boolean"); + return vm.smallStrings.booleanString(); if (v.isNumber()) - return jsNontrivialString(callFrame, "number"); + return vm.smallStrings.numberString(); if (v.isString()) - return jsNontrivialString(callFrame, "string"); + return vm.smallStrings.stringString(); if (v.isObject()) { // Return "undefined" for objects that should be treated // as null when doing comparisons. - if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined()) - return jsNontrivialString(callFrame, "undefined"); + if (asObject(v)->structure()->masqueradesAsUndefined(globalObject)) + return vm.smallStrings.undefinedString(); CallData callData; - if (asObject(v)->getCallData(callData) != CallTypeNone) - return jsNontrivialString(callFrame, "function"); + JSObject* object = asObject(v); + if (object->methodTable()->getCallData(object, callData) != CallTypeNone) + return vm.smallStrings.functionString(); } - return jsNontrivialString(callFrame, "object"); + return vm.smallStrings.objectString(); +} + +JSValue jsTypeStringForValue(CallFrame* callFrame, JSValue v) +{ + return jsTypeStringForValue(callFrame->vm(), callFrame->lexicalGlobalObject(), v); } -bool jsIsObjectType(JSValue v) +bool jsIsObjectType(CallFrame* callFrame, JSValue v) { if (!v.isCell()) return v.isNull(); - JSType type = asCell(v)->structure()->typeInfo().type(); - if (type == NumberType || type == StringType) + JSType type = v.asCell()->structure()->typeInfo().type(); + if (type == StringType) return false; - if (type == ObjectType) { - if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined()) + if (type >= ObjectType) { + if (asObject(v)->structure()->masqueradesAsUndefined(callFrame->lexicalGlobalObject())) return false; CallData callData; - if (asObject(v)->getCallData(callData) != CallTypeNone) + JSObject* object = asObject(v); + if (object->methodTable()->getCallData(object, callData) != CallTypeNone) return false; } return true; @@ -112,7 +107,8 @@ bool jsIsFunctionType(JSValue v) { if (v.isObject()) { CallData callData; - if (asObject(v)->getCallData(callData) != CallTypeNone) + JSObject* object = asObject(v); + if (object->methodTable()->getCallData(object, callData) != CallTypeNone) return true; } return false;