| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #include "RuntimeLanguagePch.h"
- #include "RuntimeMathPch.h"
- #include "Library/JavascriptNumberObject.h"
- #include "Library/JavascriptStringObject.h"
- #include "Library/DateImplementation.h"
- #include "Library/JavascriptDate.h"
- using namespace Js;
- static const double k_2to16 = 65536.0;
- static const double k_2to31 = 2147483648.0;
- static const double k_2to32 = 4294967296.0;
- // ES5 9.10 indicates that this method should throw a TypeError if the supplied value is Undefined or Null.
- // Our implementation returns FALSE in this scenario, expecting the caller to throw the TypeError.
- // This allows the caller to provide more context in the error message without having to unnecessarily
- // construct the message string before knowing whether or not the object is coercible.
- BOOL JavascriptConversion::CheckObjectCoercible(Var aValue, ScriptContext* scriptContext)
- {
- return !JavascriptOperators::IsUndefinedOrNull(aValue);
- }
- //ES5 9.11 Undefined, Null, Boolean, Number, String - return false
- //If Object has a [[Call]] internal method, then return true, otherwise return false
- bool JavascriptConversion::IsCallable(Var aValue)
- {
- if (!VarIs<RecyclableObject>(aValue))
- {
- return false;
- }
- return IsCallable(UnsafeVarTo<RecyclableObject>(aValue));
- }
- bool JavascriptConversion::IsCallable(_In_ RecyclableObject* aValue)
- {
- Assert(VarIsCorrectType(aValue));
- JavascriptMethod entryPoint = aValue->GetEntryPoint();
- return RecyclableObject::DefaultEntryPoint != entryPoint;
- }
- //----------------------------------------------------------------------------
- // ES5 9.12 SameValue algorithm implementation.
- // 1. If Type(x) is different from Type(y), return false.
- // 2. If Type(x) is Undefined, return true.
- // 3. If Type(x) is Null, return true.
- // 4. If Type(x) is Number, then.
- // a. If x is NaN and y is NaN, return true.
- // b. If x is +0 and y is -0, return false.
- // c. If x is -0 and y is +0, return false.
- // d. If x is the same number value as y, return true.
- // e. Return false.
- // 5. If Type(x) is String, then return true if x and y are exactly the same sequence of characters (same length and same characters in corresponding positions); otherwise, return false.
- // 6. If Type(x) is Boolean, return true if x and y are both true or both false; otherwise, return false.
- // 7. Return true if x and y refer to the same object. Otherwise, return false.
- //----------------------------------------------------------------------------
- template<bool zero>
- bool JavascriptConversion::SameValueCommon(Var aLeft, Var aRight)
- {
- if (aLeft == aRight)
- {
- return true;
- }
- TypeId leftType = JavascriptOperators::GetTypeId(aLeft);
- if (JavascriptOperators::IsUndefinedOrNullType(leftType))
- {
- return false;
- }
- TypeId rightType = JavascriptOperators::GetTypeId(aRight);
- double dblLeft, dblRight;
- switch (leftType)
- {
- case TypeIds_Integer:
- switch (rightType)
- {
- case TypeIds_Integer:
- return false;
- case TypeIds_Number:
- dblLeft = TaggedInt::ToDouble(aLeft);
- dblRight = JavascriptNumber::GetValue(aRight);
- goto CommonNumber;
- case TypeIds_Int64Number:
- {
- int leftValue = TaggedInt::ToInt32(aLeft);
- __int64 rightValue = UnsafeVarTo<JavascriptInt64Number>(aRight)->GetValue();
- return leftValue == rightValue;
- }
- case TypeIds_UInt64Number:
- {
- int leftValue = TaggedInt::ToInt32(aLeft);
- unsigned __int64 rightValue = VarTo<JavascriptInt64Number>(aRight)->GetValue();
- return leftValue == rightValue;
- }
- }
- break;
- case TypeIds_Int64Number:
- switch (rightType)
- {
- case TypeIds_Integer:
- {
- __int64 leftValue = UnsafeVarTo<JavascriptInt64Number>(aLeft)->GetValue();
- int rightValue = TaggedInt::ToInt32(aRight);
- return leftValue == rightValue;
- }
- case TypeIds_Number:
- dblLeft = (double)UnsafeVarTo<JavascriptInt64Number>(aLeft)->GetValue();
- dblRight = JavascriptNumber::GetValue(aRight);
- goto CommonNumber;
- case TypeIds_Int64Number:
- {
- __int64 leftValue = UnsafeVarTo<JavascriptInt64Number>(aLeft)->GetValue();
- __int64 rightValue = UnsafeVarTo<JavascriptInt64Number>(aRight)->GetValue();
- return leftValue == rightValue;
- }
- case TypeIds_UInt64Number:
- {
- __int64 leftValue = UnsafeVarTo<JavascriptInt64Number>(aLeft)->GetValue();
- unsigned __int64 rightValue = VarTo<JavascriptInt64Number>(aRight)->GetValue();
- return ((unsigned __int64)leftValue == rightValue);
- }
- }
- break;
- case TypeIds_UInt64Number:
- switch (rightType)
- {
- case TypeIds_Integer:
- {
- unsigned __int64 leftValue = UnsafeVarTo<JavascriptUInt64Number>(aLeft)->GetValue();
- __int64 rightValue = TaggedInt::ToInt32(aRight);
- return (leftValue == (unsigned __int64)rightValue);
- }
- case TypeIds_Number:
- dblLeft = (double)UnsafeVarTo<JavascriptUInt64Number>(aLeft)->GetValue();
- dblRight = JavascriptNumber::GetValue(aRight);
- goto CommonNumber;
- case TypeIds_Int64Number:
- {
- unsigned __int64 leftValue = UnsafeVarTo<JavascriptUInt64Number>(aLeft)->GetValue();
- __int64 rightValue = UnsafeVarTo<JavascriptInt64Number>(aRight)->GetValue();
- return (leftValue == (unsigned __int64)rightValue);
- }
- case TypeIds_UInt64Number:
- {
- unsigned __int64 leftValue = UnsafeVarTo<JavascriptUInt64Number>(aLeft)->GetValue();
- unsigned __int64 rightValue = VarTo<JavascriptInt64Number>(aRight)->GetValue();
- return leftValue == rightValue;
- }
- }
- break;
- case TypeIds_Number:
- switch (rightType)
- {
- case TypeIds_Integer:
- dblLeft = JavascriptNumber::GetValue(aLeft);
- dblRight = TaggedInt::ToDouble(aRight);
- goto CommonNumber;
- case TypeIds_Int64Number:
- dblLeft = JavascriptNumber::GetValue(aLeft);
- dblRight = (double)UnsafeVarTo<JavascriptInt64Number>(aRight)->GetValue();
- goto CommonNumber;
- case TypeIds_UInt64Number:
- dblLeft = JavascriptNumber::GetValue(aLeft);
- dblRight = (double)UnsafeVarTo<JavascriptUInt64Number>(aRight)->GetValue();
- goto CommonNumber;
- case TypeIds_Number:
- dblLeft = JavascriptNumber::GetValue(aLeft);
- dblRight = JavascriptNumber::GetValue(aRight);
- CommonNumber:
- if (JavascriptNumber::IsNan(dblLeft) && JavascriptNumber::IsNan(dblRight))
- {
- return true;
- }
- if (zero)
- {
- // SameValueZero(+0,-0) returns true;
- return dblLeft == dblRight;
- }
- else
- {
- // SameValue(+0,-0) returns false;
- return (NumberUtilities::LuLoDbl(dblLeft) == NumberUtilities::LuLoDbl(dblRight) &&
- NumberUtilities::LuHiDbl(dblLeft) == NumberUtilities::LuHiDbl(dblRight));
- }
- }
- break;
- case TypeIds_Boolean:
- return false;
- case TypeIds_String:
- switch (rightType)
- {
- case TypeIds_String:
- return JavascriptString::Equals(UnsafeVarTo<JavascriptString>(aLeft), UnsafeVarTo<JavascriptString>(aRight));
- }
- break;
- #if DBG
- case TypeIds_Symbol:
- if (rightType == TypeIds_Symbol)
- {
- JavascriptSymbol* leftSymbol = UnsafeVarTo<JavascriptSymbol>(aLeft);
- JavascriptSymbol* rightSymbol = UnsafeVarTo<JavascriptSymbol>(aRight);
- Assert(leftSymbol->GetValue() != rightSymbol->GetValue());
- }
- #endif
- default:
- break;
- }
- return false;
- }
- template bool JavascriptConversion::SameValueCommon<false>(Var aLeft, Var aRight);
- template bool JavascriptConversion::SameValueCommon<true>(Var aLeft, Var aRight);
- //----------------------------------------------------------------------------
- // ToObject() takes a value and converts it to an Object type
- // Implementation of ES5 9.9
- // The spec indicates that this method should throw a TypeError if the supplied value is Undefined or Null.
- // Our implementation returns FALSE in this scenario, expecting the caller to throw the TypeError.
- // This allows the caller to provide more context in the error message without having to unnecessarily
- // construct the message string before knowing whether or not the value can be converted to an object.
- //
- // Undefined Return FALSE.
- // Null Return FALSE.
- // Boolean Create a new Boolean object whose [[PrimitiveValue]]
- // internal property is set to the value of the boolean.
- // See 15.6 for a description of Boolean objects.
- // Return TRUE.
- // Number Create a new Number object whose [[PrimitiveValue]]
- // internal property is set to the value of the number.
- // See 15.7 for a description of Number objects.
- // Return TRUE.
- // String Create a new String object whose [[PrimitiveValue]]
- // internal property is set to the value of the string.
- // See 15.5 for a description of String objects.
- // Return TRUE.
- // Object The result is the input argument (no conversion).
- // Return TRUE.
- //----------------------------------------------------------------------------
- BOOL JavascriptConversion::ToObject(Var aValue, ScriptContext* scriptContext, RecyclableObject** object)
- {
- Assert(object);
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Undefined:
- case TypeIds_Null:
- return FALSE;
- case TypeIds_Number:
- case TypeIds_Integer:
- *object = scriptContext->GetLibrary()->CreateNumberObject(aValue);
- return TRUE;
- default:
- *object = VarTo<RecyclableObject>(aValue)->ToObject(scriptContext);
- return TRUE;
- }
- }
- //----------------------------------------------------------------------------
- // ToPropertyKey() takes a value and converts it to a property key
- // Implementation of ES6 7.1.14
- //----------------------------------------------------------------------------
- Var JavascriptConversion::ToPropertyKey(
- Var argument,
- _In_ ScriptContext* scriptContext,
- _Out_ const PropertyRecord** propertyRecord,
- _Out_opt_ PropertyString** propString)
- {
- Var key = JavascriptConversion::ToPrimitive<JavascriptHint::HintString>(argument, scriptContext);
- PropertyString * propertyString = nullptr;
- if (VarIs<JavascriptSymbol>(key))
- {
- // If we are looking up a property keyed by a symbol, we already have the PropertyId in the symbol
- *propertyRecord = UnsafeVarTo<JavascriptSymbol>(key)->GetValue();
- }
- else
- {
- // For all other types, convert the key into a string and use that as the property name
- JavascriptString * propName = JavascriptConversion::ToString(key, scriptContext);
- propName->GetPropertyRecord(propertyRecord);
- if (VarIs<PropertyString>(propName))
- {
- propertyString = UnsafeVarTo<PropertyString>(propName);
- }
- key = propName;
- }
- if (propString)
- {
- *propString = propertyString;
- }
- return key;
- }
- //----------------------------------------------------------------------------
- // ToPrimitive() takes a value and an optional argument and converts it to a non Object type
- // Implementation of ES5 9.1
- //
- // Undefined:The result equals the input argument (no conversion).
- // Null: The result equals the input argument (no conversion).
- // Boolean: The result equals the input argument (no conversion).
- // Number: The result equals the input argument (no conversion).
- // String: The result equals the input argument (no conversion).
- // Object: Return a default value for the Object.
- // The default value of an object is retrieved by calling the [[DefaultValue]]
- // internal method of the object, passing the optional hint PreferredType.
- // The behavior of the [[DefaultValue]] internal method is defined by this specification
- // for all native ECMAScript objects (8.12.9).
- //----------------------------------------------------------------------------
- template <JavascriptHint hint>
- Var JavascriptConversion::ToPrimitive(_In_ Var aValue, _In_ ScriptContext * requestContext)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Undefined:
- case TypeIds_Null:
- case TypeIds_Integer:
- case TypeIds_Boolean:
- case TypeIds_Number:
- case TypeIds_String:
- case TypeIds_Symbol:
- case TypeIds_BigInt:
- return aValue;
- case TypeIds_StringObject:
- {
- JavascriptStringObject * stringObject = UnsafeVarTo<JavascriptStringObject>(aValue);
- ScriptContext * objectScriptContext = stringObject->GetScriptContext();
- if (objectScriptContext->optimizationOverrides.GetSideEffects() & (hint == JavascriptHint::HintString ? SideEffects_ToString : SideEffects_ValueOf))
- {
- return MethodCallToPrimitive<hint>(stringObject, requestContext);
- }
- return CrossSite::MarshalVar(requestContext, stringObject->Unwrap(), objectScriptContext);
- }
- case TypeIds_NumberObject:
- {
- JavascriptNumberObject * numberObject = UnsafeVarTo<JavascriptNumberObject>(aValue);
- ScriptContext * objectScriptContext = numberObject->GetScriptContext();
- if (hint == JavascriptHint::HintString)
- {
- if (objectScriptContext->optimizationOverrides.GetSideEffects() & SideEffects_ToString)
- {
- return MethodCallToPrimitive<hint>(numberObject, requestContext);
- }
- return JavascriptNumber::ToStringRadix10(numberObject->GetValue(), requestContext);
- }
- else
- {
- if (objectScriptContext->optimizationOverrides.GetSideEffects() & SideEffects_ValueOf)
- {
- return MethodCallToPrimitive<hint>(numberObject, requestContext);
- }
- return CrossSite::MarshalVar(requestContext, numberObject->Unwrap(), objectScriptContext);
- }
- }
- case TypeIds_SymbolObject:
- {
- JavascriptSymbolObject* symbolObject = UnsafeVarTo<JavascriptSymbolObject>(aValue);
- ScriptContext* objectScriptContext = symbolObject->GetScriptContext();
- if (objectScriptContext->optimizationOverrides.GetSideEffects() & SideEffects_ToPrimitive)
- {
- return MethodCallToPrimitive<hint>(symbolObject, requestContext);
- }
- return CrossSite::MarshalVar(requestContext, symbolObject->Unwrap(), objectScriptContext);
- }
- case TypeIds_Date:
- {
- JavascriptDate* dateObject = UnsafeVarTo<JavascriptDate>(aValue);
- if(hint == JavascriptHint::HintNumber)
- {
- if (dateObject->GetScriptContext()->optimizationOverrides.GetSideEffects() & SideEffects_ValueOf)
- {
- // if no Method exists this function falls back to OrdinaryToPrimitive
- // if IsES6ToPrimitiveEnabled flag is off we also fall back to OrdinaryToPrimitive
- return MethodCallToPrimitive<hint>(dateObject, requestContext);
- }
- return JavascriptNumber::ToVarNoCheck(dateObject->GetTime(), requestContext);
- }
- else
- {
- if (dateObject->GetScriptContext()->optimizationOverrides.GetSideEffects() & SideEffects_ToString)
- {
- // if no Method exists this function falls back to OrdinaryToPrimitive
- // if IsES6ToPrimitiveEnabled flag is off we also fall back to OrdinaryToPrimitive
- return MethodCallToPrimitive<hint>(dateObject, requestContext);
- }
- return JavascriptDate::ToString(dateObject, requestContext);
- }
- }
- // convert to JavascriptNumber
- case TypeIds_Int64Number:
- return UnsafeVarTo<JavascriptInt64Number>(aValue)->ToJavascriptNumber();
- case TypeIds_UInt64Number:
- return UnsafeVarTo<JavascriptUInt64Number>(aValue)->ToJavascriptNumber();
- default:
- // if no Method exists this function falls back to OrdinaryToPrimitive
- // if IsES6ToPrimitiveEnabled flag is off we also fall back to OrdinaryToPrimitive
- return MethodCallToPrimitive<hint>(UnsafeVarTo<RecyclableObject>(aValue), requestContext);
- }
- }
- //----------------------------------------------------------------------------
- //https://tc39.github.io/ecma262/#sec-canonicalnumericindexstring
- //1. Assert : Type(argument) is String.
- //2. If argument is "-0", then return -0.
- //3. Let n be ToNumber(argument).
- //4. If SameValue(ToString(n), argument) is false, then return undefined.
- //5. Return n.
- //----------------------------------------------------------------------------
- BOOL JavascriptConversion::CanonicalNumericIndexString(JavascriptString *aValue, double *indexValue, ScriptContext * scriptContext)
- {
- if (JavascriptString::IsNegZero(aValue))
- {
- *indexValue = -0;
- return TRUE;
- }
- double indexDoubleValue = aValue->ToDouble();
- if (JavascriptString::Equals(JavascriptNumber::ToStringRadix10(indexDoubleValue, scriptContext), aValue))
- {
- *indexValue = indexDoubleValue;
- return TRUE;
- }
- return FALSE;
- }
- template <JavascriptHint hint>
- Var JavascriptConversion::MethodCallToPrimitive(_In_ RecyclableObject* value, _In_ ScriptContext * requestContext)
- {
- Var result = nullptr;
- ScriptContext *const scriptContext = value->GetScriptContext();
- //7.3.9 GetMethod(V, P)
- // The abstract operation GetMethod is used to get the value of a specific property of an ECMAScript language value when the value of the
- // property is expected to be a function. The operation is called with arguments V and P where V is the ECMAScript language value, P is the
- // property key. This abstract operation performs the following steps:
- // 1. Assert: IsPropertyKey(P) is true.
- // 2. Let func be ? GetV(V, P).
- // 3. If func is either undefined or null, return undefined.
- // 4. If IsCallable(func) is false, throw a TypeError exception.
- // 5. Return func.
- Var varMethod = nullptr;
- if (!requestContext->GetConfig()->IsES6ToPrimitiveEnabled()
- || JavascriptOperators::CheckIfObjectAndProtoChainHasNoSpecialProperties(value)
- || !JavascriptOperators::GetPropertyReference(value, PropertyIds::_symbolToPrimitive, &varMethod, requestContext)
- || JavascriptOperators::IsUndefinedOrNull(varMethod))
- {
- return OrdinaryToPrimitive<hint>(value, requestContext);
- }
- if (!VarIs<JavascriptFunction>(varMethod))
- {
- // Don't error if we disabled implicit calls
- JavascriptError::TryThrowTypeError(scriptContext, requestContext, JSERR_Property_NeedFunction, requestContext->GetPropertyName(PropertyIds::_symbolToPrimitive)->GetBuffer());
- return requestContext->GetLibrary()->GetNull();
- }
- // Let exoticToPrim be GetMethod(input, @@toPrimitive).
- JavascriptFunction* exoticToPrim = UnsafeVarTo<JavascriptFunction>(varMethod);
- JavascriptString* hintString = nullptr;
- if (hint == JavascriptHint::HintString)
- {
- hintString = requestContext->GetLibrary()->GetStringTypeDisplayString();
- }
- else if (hint == JavascriptHint::HintNumber)
- {
- hintString = requestContext->GetLibrary()->GetNumberTypeDisplayString();
- }
- else
- {
- hintString = requestContext->GetPropertyString(PropertyIds::default_);
- }
- // If exoticToPrim is not undefined, then
- Assert(nullptr != exoticToPrim);
- ThreadContext * threadContext = requestContext->GetThreadContext();
- result = threadContext->ExecuteImplicitCall(exoticToPrim, ImplicitCall_ToPrimitive, [=]()->Js::Var
- {
- // Stack object should have a pre-op bail on implicit call. We shouldn't see them here.
- Assert(!ThreadContext::IsOnStack(value));
- // Let result be the result of calling the[[Call]] internal method of exoticToPrim, with input as thisArgument and(hint) as argumentsList.
- return CALL_FUNCTION(threadContext, exoticToPrim, CallInfo(CallFlags_Value, 2), value, hintString);
- });
- if (!result)
- {
- // There was an implicit call and implicit calls are disabled. This would typically cause a bailout.
- Assert(threadContext->IsDisableImplicitCall());
- return requestContext->GetLibrary()->GetNull();
- }
- Assert(!CrossSite::NeedMarshalVar(result, requestContext));
- // If result is an ECMAScript language value and Type(result) is not Object, then return result.
- if (TaggedInt::Is(result) || !JavascriptOperators::IsObjectType(JavascriptOperators::GetTypeId(result)))
- {
- return result;
- }
- // Else, throw a TypeError exception.
- else
- {
- // Don't error if we disabled implicit calls
- JavascriptError::TryThrowTypeError(scriptContext, requestContext, JSERR_FunctionArgument_Invalid, _u("[Symbol.toPrimitive]"));
- return requestContext->GetLibrary()->GetNull();
- }
- }
- template <JavascriptHint hint>
- Var JavascriptConversion::OrdinaryToPrimitive(_In_ RecyclableObject* value, _In_ ScriptContext* requestContext)
- {
- Var result;
- if (!value->ToPrimitive(hint, &result, requestContext))
- {
- ScriptContext *const scriptContext = value->GetScriptContext();
- int32 hCode;
- switch (hint)
- {
- case JavascriptHint::HintNumber:
- hCode = JSERR_NeedNumber;
- break;
- case JavascriptHint::HintString:
- hCode = JSERR_NeedString;
- break;
- default:
- hCode = VBSERR_OLENoPropOrMethod;
- break;
- }
- JavascriptError::TryThrowTypeError(scriptContext, scriptContext, hCode);
- return requestContext->GetLibrary()->GetNull();
- }
- return result;
- }
- template Var JavascriptConversion::OrdinaryToPrimitive<JavascriptHint::HintNumber>(RecyclableObject* value, ScriptContext* requestContext);
- template Var JavascriptConversion::OrdinaryToPrimitive<JavascriptHint::HintString>(RecyclableObject* value, ScriptContext* requestContext);
- template Var JavascriptConversion::OrdinaryToPrimitive<JavascriptHint::None>(RecyclableObject* value, ScriptContext* requestContext);
- JavascriptString *JavascriptConversion::CoerseString(Var aValue, ScriptContext* scriptContext, const char16* apiNameForErrorMsg)
- {
- JIT_HELPER_REENTRANT_HEADER(Op_CoerseString);
- if (!JavascriptConversion::CheckObjectCoercible(aValue, scriptContext))
- {
- JavascriptError::ThrowTypeError(scriptContext, JSERR_This_NullOrUndefined, apiNameForErrorMsg);
- }
- return ToString(aValue, scriptContext);
- JIT_HELPER_END(Op_CoerseString);
- }
- //----------------------------------------------------------------------------
- // ToString - abstract operation
- // ES5 9.8
- //Input Type Result
- // Undefined
- // "undefined"
- // Null
- // "null"
- // Boolean
- // If the argument is true, then the result is "true". If the argument is false, then the result is "false".
- // Number
- // See 9.8.1 below.
- // String
- // Return the input argument (no conversion)
- // Object
- // Apply the following steps:
- // 1. Let primValue be ToPrimitive(input argument, hint String).
- // 2. Return ToString(primValue).
- //----------------------------------------------------------------------------
- JavascriptString *JavascriptConversion::ToString(Var aValue, ScriptContext* scriptContext)
- {
- JIT_HELPER_REENTRANT_HEADER(Op_ConvString);
- Assert(scriptContext->GetThreadContext()->IsScriptActive());
- BOOL fPrimitiveOnly = false;
- while(true)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Undefined:
- return scriptContext->GetLibrary()->GetUndefinedDisplayString();
- case TypeIds_Null:
- return scriptContext->GetLibrary()->GetNullDisplayString();
- case TypeIds_Integer:
- return scriptContext->GetIntegerString(aValue);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? scriptContext->GetLibrary()->GetTrueDisplayString() : scriptContext->GetLibrary()->GetFalseDisplayString();
- case TypeIds_Number:
- return JavascriptNumber::ToStringRadix10(JavascriptNumber::GetValue(aValue), scriptContext);
- case TypeIds_Int64Number:
- {
- __int64 value = UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue();
- if (!TaggedInt::IsOverflow(value))
- {
- return scriptContext->GetIntegerString((int)value);
- }
- else
- {
- return JavascriptInt64Number::ToString(aValue, scriptContext);
- }
- }
- case TypeIds_UInt64Number:
- {
- unsigned __int64 value = UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue();
- if (!TaggedInt::IsOverflow(value))
- {
- return scriptContext->GetIntegerString((uint)value);
- }
- else
- {
- return JavascriptUInt64Number::ToString(aValue, scriptContext);
- }
- }
- case TypeIds_String:
- {
- ScriptContext* aValueScriptContext = Js::UnsafeVarTo<Js::RecyclableObject>(aValue)->GetScriptContext();
- return UnsafeVarTo<JavascriptString>(CrossSite::MarshalVar(scriptContext,
- aValue, aValueScriptContext));
- }
- case TypeIds_Symbol:
- return UnsafeVarTo<JavascriptSymbol>(aValue)->ToString(scriptContext);
- case TypeIds_SymbolObject:
- return JavascriptSymbol::ToString(UnsafeVarTo<JavascriptSymbolObject>(aValue)->GetValue(), scriptContext);
- case TypeIds_GlobalObject:
- aValue = static_cast<Js::GlobalObject*>(aValue)->ToThis();
- // fall through
- default:
- {
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToString");
- if(fPrimitiveOnly)
- {
- AssertMsg(FALSE, "wrong call in ToString, no dynamic objects should get here");
- JavascriptError::ThrowError(scriptContext, VBSERR_InternalError);
- }
- fPrimitiveOnly = true;
- aValue = ToPrimitive<JavascriptHint::HintString>(aValue, scriptContext);
- }
- }
- }
- JIT_HELPER_END(Op_ConvString);
- }
- JavascriptString *JavascriptConversion::ToLocaleString(Var aValue, ScriptContext* scriptContext)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Undefined:
- return scriptContext->GetLibrary()->GetUndefinedDisplayString();
- case TypeIds_Null:
- return scriptContext->GetLibrary()->GetNullDisplayString();
- case TypeIds_Integer:
- return JavascriptNumber::ToLocaleString(TaggedInt::ToInt32(aValue), scriptContext);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? scriptContext->GetLibrary()->GetTrueDisplayString() : scriptContext->GetLibrary()->GetFalseDisplayString();
- case TypeIds_Int64Number:
- return JavascriptNumber::ToLocaleString((double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue(), scriptContext);
- case TypeIds_UInt64Number:
- return JavascriptNumber::ToLocaleString((double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue(), scriptContext);
- case TypeIds_Number:
- return JavascriptNumber::ToLocaleString(JavascriptNumber::GetValue(aValue), scriptContext);
- case TypeIds_Symbol:
- return UnsafeVarTo<JavascriptSymbol>(aValue)->ToString(scriptContext);
- default:
- {
- RecyclableObject* object = VarTo<RecyclableObject>(aValue);
- Var value = JavascriptOperators::GetProperty(object, PropertyIds::toLocaleString, scriptContext, NULL);
- if (JavascriptConversion::IsCallable(value))
- {
- RecyclableObject* toLocaleStringFunction = VarTo<RecyclableObject>(value);
- Var aResult = scriptContext->GetThreadContext()->ExecuteImplicitCall(toLocaleStringFunction, Js::ImplicitCall_ToPrimitive, [=]()->Js::Var
- {
- return CALL_FUNCTION(scriptContext->GetThreadContext(), toLocaleStringFunction, CallInfo(1), aValue);
- });
- if (VarIs<JavascriptString>(aResult))
- {
- return UnsafeVarTo<JavascriptString>(aResult);
- }
- else
- {
- return JavascriptConversion::ToString(aResult, scriptContext);
- }
- }
- JavascriptError::ThrowTypeError(scriptContext, JSERR_Property_NeedFunction, scriptContext->GetPropertyName(PropertyIds::toLocaleString)->GetBuffer());
- }
- }
- }
- //----------------------------------------------------------------------------
- // ToBoolean_Full:
- // (ES3.0: S9.2):
- //
- // Input Output
- // ----- ------
- // 'undefined' 'false'
- // 'null' 'false'
- // Boolean Value
- // Number 'false' if +0, -0, or Nan
- // 'true' otherwise
- // String 'false' if argument is ""
- // 'true' otherwise
- // Object 'true'
- // Falsy Object 'false'
- //----------------------------------------------------------------------------
- BOOL JavascriptConversion::ToBoolean_Full(Var aValue, ScriptContext* scriptContext)
- {
- AssertMsg(!TaggedInt::Is(aValue), "Should be detected");
- AssertMsg(VarIs<RecyclableObject>(aValue), "Should be handled already");
- auto type = UnsafeVarTo<RecyclableObject>(aValue)->GetType();
- switch (type->GetTypeId())
- {
- case TypeIds_Undefined:
- case TypeIds_Null:
- return false;
- case TypeIds_Symbol:
- return true;
- #if !FLOATVAR
- case TypeIds_Number:
- {
- double value = JavascriptNumber::GetValue(aValue);
- return (!JavascriptNumber::IsNan(value)) && (!JavascriptNumber::IsZero(value));
- }
- #endif
- case TypeIds_Int64Number:
- {
- __int64 value = UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue();
- return value != 0;
- }
- case TypeIds_UInt64Number:
- {
- unsigned __int64 value = UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue();
- return value != 0;
- }
- case TypeIds_String:
- {
- JavascriptString * pstValue = UnsafeVarTo<JavascriptString>(aValue);
- return pstValue->GetLength() > 0;
- }
- default:
- {
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToBoolean");
- // Falsy objects evaluate to false when converted to Boolean.
- return !type->IsFalsy();
- }
- }
- }
- void JavascriptConversion::ToFloat_Helper(Var aValue, float *pResult, ScriptContext* scriptContext)
- {
- JIT_HELPER_REENTRANT_HEADER(Op_ConvFloat_Helper);
- *pResult = (float)ToNumber_Full(aValue, scriptContext);
- JIT_HELPER_END(Op_ConvFloat_Helper);
- }
- void JavascriptConversion::ToNumber_Helper(Var aValue, double *pResult, ScriptContext* scriptContext)
- {
- JIT_HELPER_REENTRANT_HEADER(Op_ConvNumber_Helper);
- Assert(Js::JavascriptStackWalker::ValidateTopJitFrame(scriptContext));
- *pResult = ToNumber_Full(aValue, scriptContext);
- JIT_HELPER_END(Op_ConvNumber_Helper);
- }
- // Used for the JIT's float type specialization
- // Convert aValue to double, but only allow primitives. Return false otherwise.
- BOOL JavascriptConversion::ToNumber_FromPrimitive(Var aValue, double *pResult, BOOL allowUndefined, ScriptContext* scriptContext)
- {
- JIT_HELPER_REENTRANT_HEADER(Op_ConvNumber_FromPrimitive);
- Assert(Js::JavascriptStackWalker::ValidateTopJitFrame(scriptContext));
- Assert(!TaggedNumber::Is(aValue));
- RecyclableObject *obj = VarTo<RecyclableObject>(aValue);
- // NOTE: Don't allow strings, otherwise JIT's float type specialization has to worry about concats
- if (obj->GetTypeId() >= TypeIds_String)
- {
- return false;
- }
- if (!allowUndefined && obj->GetTypeId() == TypeIds_Undefined)
- {
- return false;
- }
- *pResult = ToNumber_Full(aValue, scriptContext);
- return true;
- JIT_HELPER_END(Op_ConvNumber_FromPrimitive);
- }
- //----------------------------------------------------------------------------
- // ToNumber_Full:
- // Implements ES6 Draft Rev 26 July 18, 2014
- //
- // Undefined: NaN
- // Null: 0
- // boolean: v==true ? 1 : 0 ;
- // number: v (original number)
- // String: conversion by spec algorithm
- // object: ToNumber(PrimitiveValue(v, hint_number))
- // Symbol: TypeError
- //----------------------------------------------------------------------------
- double JavascriptConversion::ToNumber_Full(Var aValue,ScriptContext* scriptContext)
- {
- AssertMsg(!TaggedInt::Is(aValue), "Should be detected");
- ScriptContext * objectScriptContext = VarIs<RecyclableObject>(aValue) ? UnsafeVarTo<RecyclableObject>(aValue)->GetScriptContext() : nullptr;
- BOOL fPrimitiveOnly = false;
- while(true)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Symbol:
- JavascriptError::TryThrowTypeError(objectScriptContext, scriptContext, JSERR_NeedNumber);
- // Fallthrough to return NaN if exceptions are disabled
- case TypeIds_Undefined:
- return JavascriptNumber::GetValue(scriptContext->GetLibrary()->GetNaN());
- case TypeIds_Null:
- return 0;
- case TypeIds_Integer:
- return TaggedInt::ToDouble(aValue);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? 1 : +0;
- case TypeIds_Number:
- return JavascriptNumber::GetValue(aValue);
- case TypeIds_Int64Number:
- return (double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue();
- case TypeIds_UInt64Number:
- return (double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue();
- case TypeIds_String:
- return UnsafeVarTo<JavascriptString>(aValue)->ToDouble();
- default:
- {
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToInteger");
- if(fPrimitiveOnly)
- {
- JavascriptError::ThrowError(scriptContext, VBSERR_OLENoPropOrMethod);
- }
- fPrimitiveOnly = true;
- aValue = ToPrimitive<JavascriptHint::HintNumber>(aValue, scriptContext);
- }
- }
- }
- }
- //----------------------------------------------------------------------------
- // second part of the ToInteger() implementation.(ES5.0: S9.4).
- //----------------------------------------------------------------------------
- double JavascriptConversion::ToInteger_Full(Var aValue,ScriptContext* scriptContext)
- {
- AssertMsg(!TaggedInt::Is(aValue), "Should be detected");
- ScriptContext * objectScriptContext = VarIs<RecyclableObject>(aValue) ? UnsafeVarTo<RecyclableObject>(aValue)->GetScriptContext() : nullptr;
- BOOL fPrimitiveOnly = false;
- while(true)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Symbol:
- JavascriptError::TryThrowTypeError(objectScriptContext, scriptContext, JSERR_NeedNumber);
- // Fallthrough to return 0 if exceptions are disabled
- case TypeIds_Undefined:
- case TypeIds_Null:
- return 0;
- case TypeIds_Integer:
- return TaggedInt::ToInt32(aValue);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? 1 : +0;
- case TypeIds_Number:
- return ToInteger(JavascriptNumber::GetValue(aValue));
- case TypeIds_Int64Number:
- return ToInteger((double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue());
- case TypeIds_UInt64Number:
- return ToInteger((double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue());
- case TypeIds_String:
- return ToInteger(UnsafeVarTo<JavascriptString>(aValue)->ToDouble());
- default:
- {
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToInteger");
- if(fPrimitiveOnly)
- {
- AssertMsg(FALSE, "wrong call in ToInteger_Full, no dynamic objects should get here");
- JavascriptError::ThrowError(scriptContext, VBSERR_OLENoPropOrMethod);
- }
- fPrimitiveOnly = true;
- aValue = ToPrimitive<JavascriptHint::HintNumber>(aValue, scriptContext);
- }
- }
- }
- }
- double JavascriptConversion::ToInteger(double val)
- {
- if(JavascriptNumber::IsNan(val))
- return 0;
- if(JavascriptNumber::IsPosInf(val) || JavascriptNumber::IsNegInf(val) ||
- JavascriptNumber::IsZero(val))
- {
- return val;
- }
- return ( ((val < 0) ? -1 : 1 ) * floor(fabs(val)));
- }
- //----------------------------------------------------------------------------
- // ToInt32() converts the given Var to an Int32 value, as described in
- // (ES3.0: S9.5).
- //----------------------------------------------------------------------------
- int32 JavascriptConversion::ToInt32_Full(Var aValue, ScriptContext* scriptContext)
- {
- JIT_HELPER_REENTRANT_HEADER(Conv_ToInt32_Full);
- Assert(Js::JavascriptStackWalker::ValidateTopJitFrame(scriptContext));
- AssertMsg(!TaggedInt::Is(aValue), "Should be detected");
- ScriptContext * objectScriptContext = VarIs<RecyclableObject>(aValue) ? UnsafeVarTo<RecyclableObject>(aValue)->GetScriptContext() : nullptr;
- // This is used when TaggedInt's overflow but remain under int32
- // so Number is our most critical case:
- TypeId typeId = JavascriptOperators::GetTypeId(aValue);
- if (typeId == TypeIds_Number)
- {
- return JavascriptMath::ToInt32Core(JavascriptNumber::GetValue(aValue));
- }
- switch (typeId)
- {
- case TypeIds_Symbol:
- JavascriptError::TryThrowTypeError(objectScriptContext, scriptContext, JSERR_NeedNumber);
- // Fallthrough to return 0 if exceptions are disabled
- case TypeIds_Undefined:
- case TypeIds_Null:
- return 0;
- case TypeIds_Integer:
- return TaggedInt::ToInt32(aValue);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? 1 : +0;
- case TypeIds_Int64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return JavascriptMath::ToInt32Core((double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue());
- case TypeIds_UInt64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return JavascriptMath::ToInt32Core((double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue());
- case TypeIds_String:
- {
- double result;
- if (UnsafeVarTo<JavascriptString>(aValue)->ToDouble(&result))
- {
- return JavascriptMath::ToInt32Core(result);
- }
- // If the string isn't a valid number, ToDouble returns NaN, and ToInt32 of that is 0
- return 0;
- }
- default:
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToInteger32");
- aValue = ToPrimitive<JavascriptHint::HintNumber>(aValue, scriptContext);
- }
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Symbol:
- JavascriptError::TryThrowTypeError(objectScriptContext, scriptContext, JSERR_NeedNumber);
- // Fallthrough to return 0 if exceptions are disabled
- case TypeIds_Undefined:
- case TypeIds_Null:
- return 0;
- case TypeIds_Integer:
- return TaggedInt::ToInt32(aValue);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? 1 : +0;
- case TypeIds_Number:
- return ToInt32(JavascriptNumber::GetValue(aValue));
- case TypeIds_Int64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return JavascriptMath::ToInt32Core((double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue());
- case TypeIds_UInt64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return JavascriptMath::ToInt32Core((double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue());
- case TypeIds_String:
- {
- double result;
- if (UnsafeVarTo<JavascriptString>(aValue)->ToDouble(&result))
- {
- return ToInt32(result);
- }
- // If the string isn't a valid number, ToDouble returns NaN, and ToInt32 of that is 0
- return 0;
- }
- default:
- AssertMsg(FALSE, "wrong call in ToInteger32_Full, no dynamic objects should get here.");
- JavascriptError::ThrowError(scriptContext, VBSERR_OLENoPropOrMethod);
- }
- JIT_HELPER_END(Conv_ToInt32_Full);
- }
- // a strict version of ToInt32 conversion that returns false for non int32 values like, inf, NaN, undef
- BOOL JavascriptConversion::ToInt32Finite(Var aValue, ScriptContext* scriptContext, int32* result)
- {
- ScriptContext * objectScriptContext = VarIs<RecyclableObject>(aValue) ? UnsafeVarTo<RecyclableObject>(aValue)->GetScriptContext() : nullptr;
- BOOL fPrimitiveOnly = false;
- while(true)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Symbol:
- JavascriptError::TryThrowTypeError(objectScriptContext, scriptContext, JSERR_NeedNumber);
- // Fallthrough to return false and set result to 0 if exceptions are disabled
- case TypeIds_Undefined:
- *result = 0;
- return false;
- case TypeIds_Null:
- *result = 0;
- return true;
- case TypeIds_Integer:
- *result = TaggedInt::ToInt32(aValue);
- return true;
- case TypeIds_Boolean:
- *result = UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? 1 : +0;
- return true;
- case TypeIds_Number:
- return ToInt32Finite(JavascriptNumber::GetValue(aValue), result);
- case TypeIds_Int64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return ToInt32Finite((double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue(), result);
- case TypeIds_UInt64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return ToInt32Finite((double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue(), result);
- case TypeIds_String:
- return ToInt32Finite(UnsafeVarTo<JavascriptString>(aValue)->ToDouble(), result);
- default:
- {
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToInteger32");
- if(fPrimitiveOnly)
- {
- AssertMsg(FALSE, "wrong call in ToInteger32_Full, no dynamic objects should get here");
- JavascriptError::ThrowError(scriptContext, VBSERR_OLENoPropOrMethod);
- }
- fPrimitiveOnly = true;
- aValue = ToPrimitive<JavascriptHint::HintNumber>(aValue, scriptContext);
- }
- }
- }
- }
- int32 JavascriptConversion::ToInt32(double T1)
- {
- return JavascriptMath::ToInt32Core(T1);
- }
- __int64 JavascriptConversion::ToInt64(Var aValue, ScriptContext* scriptContext)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Integer:
- {
- return TaggedInt::ToInt32(aValue);
- }
- case TypeIds_Int64Number:
- {
- JavascriptInt64Number* int64Number = UnsafeVarTo<JavascriptInt64Number>(aValue);
- return int64Number->GetValue();
- }
- case TypeIds_UInt64Number:
- {
- JavascriptUInt64Number* uint64Number = UnsafeVarTo<JavascriptUInt64Number>(aValue);
- return (__int64)uint64Number->GetValue();
- }
- case TypeIds_Number:
- return JavascriptMath::TryToInt64(JavascriptNumber::GetValue(aValue));
- default:
- return (unsigned __int64)JavascriptConversion::ToInt32_Full(aValue, scriptContext);
- }
- }
- unsigned __int64 JavascriptConversion::ToUInt64(Var aValue, ScriptContext* scriptContext)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Integer:
- {
- return (unsigned __int64)TaggedInt::ToInt32(aValue);
- }
- case TypeIds_Int64Number:
- {
- JavascriptInt64Number* int64Number = UnsafeVarTo<JavascriptInt64Number>(aValue);
- return (unsigned __int64)int64Number->GetValue();
- }
- case TypeIds_UInt64Number:
- {
- JavascriptUInt64Number* uint64Number = UnsafeVarTo<JavascriptUInt64Number>(aValue);
- return uint64Number->GetValue();
- }
- case TypeIds_Number:
- return static_cast<unsigned __int64>(JavascriptMath::TryToInt64(JavascriptNumber::GetValue(aValue)));
- default:
- return (unsigned __int64)JavascriptConversion::ToInt32_Full(aValue, scriptContext);
- }
- }
- BOOL JavascriptConversion::ToInt32Finite(double value, int32* result)
- {
- if((!NumberUtilities::IsFinite(value)) || JavascriptNumber::IsNan(value))
- {
- *result = 0;
- return false;
- }
- else
- {
- *result = JavascriptMath::ToInt32Core(value);
- return true;
- }
- }
- //----------------------------------------------------------------------------
- // (ES3.0: S9.6).
- //----------------------------------------------------------------------------
- uint32 JavascriptConversion::ToUInt32_Full(Var aValue, ScriptContext* scriptContext)
- {
- JIT_HELPER_REENTRANT_HEADER(Conv_ToUInt32_Full);
- AssertMsg(!TaggedInt::Is(aValue), "Should be detected");
- ScriptContext * objectScriptContext = VarIs<RecyclableObject>(aValue) ? UnsafeVarTo<RecyclableObject>(aValue)->GetScriptContext() : nullptr;
- BOOL fPrimitiveOnly = false;
- while(true)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Symbol:
- JavascriptError::TryThrowTypeError(objectScriptContext, scriptContext, JSERR_NeedNumber);
- // Fallthrough to return 0 if exceptions are disabled
- case TypeIds_Undefined:
- case TypeIds_Null:
- return 0;
- case TypeIds_Integer:
- return TaggedInt::ToUInt32(aValue);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? 1 : +0;
- case TypeIds_Number:
- return JavascriptMath::ToUInt32(JavascriptNumber::GetValue(aValue));
- case TypeIds_Int64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return JavascriptMath::ToUInt32((double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue());
- case TypeIds_UInt64Number:
- // we won't lose precision if the int64 is within 32bit boundary; otherwise we need to
- // treat it as double anyhow.
- return JavascriptMath::ToUInt32((double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue());
- case TypeIds_String:
- {
- double result;
- if (UnsafeVarTo<JavascriptString>(aValue)->ToDouble(&result))
- {
- return JavascriptMath::ToUInt32(result);
- }
- // If the string isn't a valid number, ToDouble returns NaN, and ToUInt32 of that is 0
- return 0;
- }
- default:
- {
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToUInt32");
- if(fPrimitiveOnly)
- {
- AssertMsg(FALSE, "wrong call in ToUInt32_Full, no dynamic objects should get here");
- JavascriptError::ThrowError(scriptContext, VBSERR_OLENoPropOrMethod);
- }
- fPrimitiveOnly = true;
- aValue = ToPrimitive<JavascriptHint::HintNumber>(aValue, scriptContext);
- }
- }
- }
- JIT_HELPER_END(Conv_ToUInt32_Full);
- }
- // Unable to put JIT_HELPER macro in .inl file, do instantiation here
- JIT_HELPER_TEMPLATE(Conv_ToUInt32, Conv_ToUInt32)
- JIT_HELPER_TEMPLATE(Conv_ToBoolean, Conv_ToBoolean)
- uint32 JavascriptConversion::ToUInt32(double T1)
- {
- JIT_HELPER_NOT_REENTRANT_NOLOCK_HEADER(Conv_ToUInt32Core);
- JIT_HELPER_SAME_ATTRIBUTES(Conv_ToInt32Core, Conv_ToUInt32Core);
- // Same as doing ToInt32 and reinterpret the bits as uint32
- return (uint32)JavascriptMath::ToInt32Core(T1);
- JIT_HELPER_END(Conv_ToUInt32Core);
- }
- //----------------------------------------------------------------------------
- // ToUInt16() converts the given Var to a UInt16 value, as described in
- // (ES3.0: S9.6).
- //----------------------------------------------------------------------------
- uint16 JavascriptConversion::ToUInt16_Full(IN Var aValue, ScriptContext* scriptContext)
- {
- AssertMsg(!TaggedInt::Is(aValue), "Should be detected");
- ScriptContext * objectScriptContext = VarIs<RecyclableObject>(aValue) ? UnsafeVarTo<RecyclableObject>(aValue)->GetScriptContext() : nullptr;
- BOOL fPrimitiveOnly = false;
- while(true)
- {
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_Symbol:
- JavascriptError::TryThrowTypeError(objectScriptContext, scriptContext, JSERR_NeedNumber);
- // Fallthrough to return 0 if exceptions are disabled
- case TypeIds_Undefined:
- case TypeIds_Null:
- return 0;
- case TypeIds_Integer:
- return TaggedInt::ToUInt16(aValue);
- case TypeIds_Boolean:
- return UnsafeVarTo<JavascriptBoolean>(aValue)->GetValue() ? 1 : +0;
- case TypeIds_Number:
- return ToUInt16(JavascriptNumber::GetValue(aValue));
- case TypeIds_Int64Number:
- // we won't lose precision if the int64 is within 16bit boundary; otherwise we need to
- // treat it as double anyhow.
- return ToUInt16((double)UnsafeVarTo<JavascriptInt64Number>(aValue)->GetValue());
- case TypeIds_UInt64Number:
- // we won't lose precision if the int64 is within 16bit boundary; otherwise we need to
- // treat it as double anyhow.
- return ToUInt16((double)UnsafeVarTo<JavascriptUInt64Number>(aValue)->GetValue());
- case TypeIds_String:
- {
- double result;
- if (UnsafeVarTo<JavascriptString>(aValue)->ToDouble(&result))
- {
- return ToUInt16(result);
- }
- // If the string isn't a valid number, ToDouble is NaN, and ToUInt16 of that is 0
- return 0;
- }
- default:
- {
- AssertMsg(JavascriptOperators::IsObject(aValue), "bad type object in conversion ToUIn16");
- if(fPrimitiveOnly)
- {
- AssertMsg(FALSE, "wrong call in ToUInt16, no dynamic objects should get here");
- JavascriptError::ThrowError(scriptContext, VBSERR_OLENoPropOrMethod);
- }
- fPrimitiveOnly = true;
- aValue = ToPrimitive<JavascriptHint::HintNumber>(aValue, scriptContext);
- }
- }
- }
- }
- uint16 JavascriptConversion::ToUInt16(double T1)
- {
- //
- // VC does the right thing here, if we first convert to uint32 and then to uint16
- // Spec says mod should be done.
- //
- uint32 result = JavascriptConversion::ToUInt32(T1);
- #if defined(_M_IX86) && _MSC_FULL_VER < 160030329
- // Well VC doesn't actually do the right thing... It takes (uint16)(uint32)double and removes the
- // middle uint32 cast to (uint16)double, which isn't the same thing. Somehow, it only seems to be a
- // problem for x86. Forcing a store to uint32 prevents the incorrect optimization.
- //
- // A bug has been filled in the Dev11 database: TF bug id #901495
- // Fixed in compiler 16.00.30329.00
- volatile uint32 volResult = result;
- #endif
- return (uint16) result;
- }
- int16 JavascriptConversion::ToInt16(double aValue)
- {
- return (int16)ToInt32(aValue);
- }
- int8 JavascriptConversion::ToInt8(double aValue)
- {
- return (int8)ToInt32(aValue);
- }
- uint8 JavascriptConversion::ToUInt8(double aValue)
- {
- return (uint8)ToUInt32(aValue);
- }
- JavascriptString * JavascriptConversion::ToPrimitiveString(Var aValue, ScriptContext * scriptContext)
- {
- JIT_HELPER_REENTRANT_HEADER(Op_ConvPrimitiveString);
- return ToString(ToPrimitive<JavascriptHint::None>(aValue, scriptContext), scriptContext);
- JIT_HELPER_END(Op_ConvPrimitiveString);
- }
- double JavascriptConversion::LongToDouble(__int64 aValue)
- {
- return static_cast<double>(aValue);
- }
- // Windows x64 version implemented in masm to work around precision limitation
- #if !defined(_WIN32 ) || !defined(_M_X64)
- double JavascriptConversion::ULongToDouble(unsigned __int64 aValue)
- {
- return static_cast<double>(aValue);
- }
- #endif
- float JavascriptConversion::LongToFloat(__int64 aValue)
- {
- return static_cast<float>(aValue);
- }
- float JavascriptConversion::ULongToFloat (unsigned __int64 aValue)
- {
- return static_cast<float>(aValue);
- }
- int64 JavascriptConversion::ToLength(Var aValue, ScriptContext* scriptContext)
- {
- if (TaggedInt::Is(aValue))
- {
- int64 length = TaggedInt::ToInt64(aValue);
- return (length < 0) ? 0 : length;
- }
- double length = JavascriptConversion::ToInteger(aValue, scriptContext);
- if (length < 0.0 || JavascriptNumber::IsNegZero(length))
- {
- length = 0.0;
- }
- else if (length > Math::MAX_SAFE_INTEGER)
- {
- length = Math::MAX_SAFE_INTEGER;
- }
- return NumberUtilities::TryToInt64(length);
- }
- JavascriptBigInt *JavascriptConversion::ToBigInt(Var aValue, ScriptContext* scriptContext)
- {
- Assert(scriptContext->GetThreadContext()->IsScriptActive());
- switch (JavascriptOperators::GetTypeId(aValue))
- {
- case TypeIds_BigInt:
- break;
- default:
- AssertOrFailFastMsg(false, "do not support conversion of other types in ToBigInt");
- }
- return UnsafeVarTo<JavascriptBigInt>(aValue);
- }
|