Index: src/runtime.js |
diff --git a/src/runtime.js b/src/runtime.js |
index b4bec8ae89529c473db6ab0b89631d0302064c89..5e37e26c3c9d7df7bcf802c01bfe0fbc04633c34 100644 |
--- a/src/runtime.js |
+++ b/src/runtime.js |
@@ -102,7 +102,7 @@ EQUALS = function EQUALS(y) { |
if (IS_NUMBER(y)) return %NumberEquals(x, y); |
if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal |
if (!IS_SPEC_OBJECT(y)) { |
- if (IS_SYMBOL(y) || IS_SIMD_OBJECT(y)) return 1; // not equal |
+ if (IS_SYMBOL(y) || IS_SIMD_VALUE(y)) return 1; // not equal |
// String or boolean. |
return %NumberEquals(x, %$toNumber(y)); |
} |
@@ -114,7 +114,7 @@ EQUALS = function EQUALS(y) { |
if (IS_NUMBER(y)) return %NumberEquals(%$toNumber(x), y); |
if (IS_BOOLEAN(y)) return %NumberEquals(%$toNumber(x), %$toNumber(y)); |
if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal |
- if (IS_SYMBOL(y) || IS_SIMD_OBJECT(y)) return 1; // not equal |
+ if (IS_SYMBOL(y) || IS_SIMD_VALUE(y)) return 1; // not equal |
y = %$toPrimitive(y, NO_HINT); |
} |
} else if (IS_SYMBOL(x)) { |
@@ -125,13 +125,13 @@ EQUALS = function EQUALS(y) { |
if (IS_NULL_OR_UNDEFINED(y)) return 1; |
if (IS_NUMBER(y)) return %NumberEquals(%$toNumber(x), y); |
if (IS_STRING(y)) return %NumberEquals(%$toNumber(x), %$toNumber(y)); |
- if (IS_SYMBOL(y) || IS_SIMD_OBJECT(y)) return 1; // not equal |
+ if (IS_SYMBOL(y) || IS_SIMD_VALUE(y)) return 1; // not equal |
// y is object. |
x = %$toNumber(x); |
y = %$toPrimitive(y, NO_HINT); |
} else if (IS_NULL_OR_UNDEFINED(x)) { |
return IS_NULL_OR_UNDEFINED(y) ? 0 : 1; |
- } else if (IS_SIMD_OBJECT(x)) { |
+ } else if (IS_SIMD_VALUE(x)) { |
return %SimdEquals(x, y); |
} else { |
// x is an object. |
@@ -139,7 +139,7 @@ EQUALS = function EQUALS(y) { |
if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal |
if (IS_BOOLEAN(y)) { |
y = %$toNumber(y); |
- } else if (IS_SYMBOL(y) || IS_SIMD_OBJECT(y)) { |
+ } else if (IS_SYMBOL(y) || IS_SIMD_VALUE(y)) { |
return 1; // not equal |
} |
x = %$toPrimitive(x, NO_HINT); |
@@ -159,7 +159,7 @@ STRICT_EQUALS = function STRICT_EQUALS(x) { |
return %NumberEquals(this, x); |
} |
- if (IS_SIMD_OBJECT(this)) return %SimdEquals(this, x); |
+ if (IS_SIMD_VALUE(this)) return %SimdEquals(this, x); |
// If anything else gets here, we just do simple identity check. |
// Objects (including functions), null, undefined and booleans were |
@@ -756,7 +756,7 @@ function ToPrimitive(x, hint) { |
if (IS_STRING(x)) return x; |
// Normal behavior. |
if (!IS_SPEC_OBJECT(x)) return x; |
- if (IS_SIMD_OBJECT(x)) return x; |
+ if (IS_SIMD_VALUE(x)) return x; |
if (hint == NO_HINT) hint = (IS_DATE(x)) ? STRING_HINT : NUMBER_HINT; |
return (hint == NUMBER_HINT) ? DefaultNumber(x) : DefaultString(x); |
} |
@@ -862,7 +862,7 @@ function SameValue(x, y) { |
return false; |
} |
} |
- if (IS_SIMD_OBJECT(x)) return %SimdSameValue(x, y); |
+ if (IS_SIMD_VALUE(x)) return %SimdSameValue(x, y); |
return x === y; |
} |
@@ -873,7 +873,7 @@ function SameValueZero(x, y) { |
if (IS_NUMBER(x)) { |
if (NUMBER_IS_NAN(x) && NUMBER_IS_NAN(y)) return true; |
} |
- if (IS_SIMD_OBJECT(x)) return %SimdSameValueZero(x, y); |
+ if (IS_SIMD_VALUE(x)) return %SimdSameValueZero(x, y); |
return x === y; |
} |
@@ -917,7 +917,7 @@ function DefaultNumber(x) { |
if (IS_SPEC_FUNCTION(valueOf)) { |
var v = %_CallFunction(x, valueOf); |
if (IS_SYMBOL(v)) throw MakeTypeError(kSymbolToNumber); |
- if (IS_SIMD_OBJECT(x)) throw MakeTypeError(kSimdToNumber); |
+ if (IS_SIMD_VALUE(x)) throw MakeTypeError(kSimdToNumber); |
if (IsPrimitive(v)) return v; |
} |
var toString = x.toString; |