Merge m-c to m-i. Again.

This commit is contained in:
Phil Ringnalda 2014-10-05 10:02:15 -07:00
commit 7b95236cf5
3 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,49 @@
function f(l, m) {
var a = NaN;
var b = 13;
var c = "test";
var d = undefined;
var e = null;
var f = 15.7;
var g = Math.fround(189777.111);
var h = "ABC";
var i = String.fromCharCode(65, 65, 65);
var j = {};
var k = Math.fround("".charCodeAt(15));
// Special case rigt here:
assertEq(a === a, false);
assertEq(a !== a, true);
assertEq(k === k, false);
assertEq(k !== k, true);
assertEq(l === l, false);
assertEq(l !== l, true);
assertEq(b === b, true);
assertEq(b !== b, false);
assertEq(c === c, true);
assertEq(c !== c, false);
assertEq(d === d, true);
assertEq(d !== d, false);
assertEq(e === e, true);
assertEq(e !== e, false);
assertEq(f === f, true);
assertEq(f !== f, false);
assertEq(g === g, true);
assertEq(g !== g, false);
assertEq(h === h, true);
assertEq(h !== h, false);
assertEq(i === i, true);
assertEq(i !== i, false);
assertEq(j === j, true);
assertEq(j !== j, false);
assertEq(m === m, true);
assertEq(m !== m, false);
}
function test() {
for (var i = 0; i < 100; i++)
f("".charCodeAt(15), 42);
}
test();

View File

@ -2838,11 +2838,50 @@ MClampToUint8::foldsTo(TempAllocator &alloc)
return this;
}
bool
MCompare::tryFoldEqualOperands(bool *result)
{
if (lhs() != rhs())
return false;
// Intuitively somebody would think that if lhs == rhs,
// then we can just return true. (Or false for !==)
// However NaN !== NaN is true! So we spend some time trying
// to eliminate this case.
if (jsop() != JSOP_STRICTEQ && jsop() != JSOP_STRICTNE)
return false;
if (compareType_ == Compare_Unknown)
return false;
MOZ_ASSERT(compareType_ == Compare_Undefined || compareType_ == Compare_Null ||
compareType_ == Compare_Boolean || compareType_ == Compare_Int32 ||
compareType_ == Compare_Int32MaybeCoerceBoth ||
compareType_ == Compare_Int32MaybeCoerceLHS ||
compareType_ == Compare_Int32MaybeCoerceRHS || compareType_ == Compare_UInt32 ||
compareType_ == Compare_Double || compareType_ == Compare_DoubleMaybeCoerceLHS ||
compareType_ == Compare_DoubleMaybeCoerceRHS || compareType_ == Compare_Float32 ||
compareType_ == Compare_String || compareType_ == Compare_StrictString ||
compareType_ == Compare_Object || compareType_ == Compare_Value);
if (isDoubleComparison() || isFloat32Comparison()) {
if (!operandsAreNeverNaN())
return false;
}
*result = (jsop() == JSOP_STRICTEQ);
return true;
}
bool
MCompare::tryFold(bool *result)
{
JSOp op = jsop();
if (tryFoldEqualOperands(result))
return true;
if (compareType_ == Compare_Null || compareType_ == Compare_Undefined) {
MOZ_ASSERT(op == JSOP_EQ || op == JSOP_STRICTEQ ||
op == JSOP_NE || op == JSOP_STRICTNE);

View File

@ -3473,6 +3473,8 @@ class MCompare
ALLOW_CLONE(MCompare)
protected:
bool tryFoldEqualOperands(bool *result);
bool congruentTo(const MDefinition *ins) const {
if (!binaryCongruentTo(ins))
return false;