• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5var values = [true,false,null,void 0,0,0.0,-0,"",-1,-1.25,1,1.25,-2147483648,2147483648,Infinity,-Infinity,NaN];
6var expected = [
7  [true ,false,false,false,false,false,false,false,false,false,true ,false,false,false,false,false,false],
8  [false,true ,false,false,true ,true ,true ,true ,false,false,false,false,false,false,false,false,false],
9  [false,false,true ,true ,false,false,false,false,false,false,false,false,false,false,false,false,false],
10  [false,false,true ,true ,false,false,false,false,false,false,false,false,false,false,false,false,false],
11  [false,true ,false,false,true ,true ,true ,true ,false,false,false,false,false,false,false,false,false],
12  [false,true ,false,false,true ,true ,true ,true ,false,false,false,false,false,false,false,false,false],
13  [false,true ,false,false,true ,true ,true ,true ,false,false,false,false,false,false,false,false,false],
14  [false,true ,false,false,true ,true ,true ,true ,false,false,false,false,false,false,false,false,false],
15  [false,false,false,false,false,false,false,false,true ,false,false,false,false,false,false,false,false],
16  [false,false,false,false,false,false,false,false,false,true ,false,false,false,false,false,false,false],
17  [true ,false,false,false,false,false,false,false,false,false,true ,false,false,false,false,false,false],
18  [false,false,false,false,false,false,false,false,false,false,false,true ,false,false,false,false,false],
19  [false,false,false,false,false,false,false,false,false,false,false,false,true ,false,false,false,false],
20  [false,false,false,false,false,false,false,false,false,false,false,false,false,true ,false,false,false],
21  [false,false,false,false,false,false,false,false,false,false,false,false,false,false,true ,false,false],
22  [false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true ,false],
23  [false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]
24];
25var func = (function eq(a,b) { return a == b; });
26var left_funcs = [
27  (function eq_L0(b) { return true == b; }),
28  (function eq_L1(b) { return false == b; }),
29  (function eq_L2(b) { return null == b; }),
30  (function eq_L3(b) { return void 0 == b; }),
31  (function eq_L4(b) { return 0 == b; }),
32  (function eq_L5(b) { return 0.0 == b; }),
33  (function eq_L6(b) { return -0 == b; }),
34  (function eq_L7(b) { return "" == b; }),
35  (function eq_L8(b) { return -1 == b; }),
36  (function eq_L9(b) { return -1.25 == b; }),
37  (function eq_L10(b) { return 1 == b; }),
38  (function eq_L11(b) { return 1.25 == b; }),
39  (function eq_L12(b) { return -2147483648 == b; }),
40  (function eq_L13(b) { return 2147483648 == b; }),
41  (function eq_L14(b) { return Infinity == b; }),
42  (function eq_L15(b) { return -Infinity == b; }),
43  (function eq_L16(b) { return NaN == b; })
44];
45var right_funcs = [
46  (function eq_R0(a) { return a == true; }),
47  (function eq_R1(a) { return a == false; }),
48  (function eq_R2(a) { return a == null; }),
49  (function eq_R3(a) { return a == void 0; }),
50  (function eq_R4(a) { return a == 0; }),
51  (function eq_R5(a) { return a == 0.0; }),
52  (function eq_R6(a) { return a == -0; }),
53  (function eq_R7(a) { return a == ""; }),
54  (function eq_R8(a) { return a == -1; }),
55  (function eq_R9(a) { return a == -1.25; }),
56  (function eq_R10(a) { return a == 1; }),
57  (function eq_R11(a) { return a == 1.25; }),
58  (function eq_R12(a) { return a == -2147483648; }),
59  (function eq_R13(a) { return a == 2147483648; }),
60  (function eq_R14(a) { return a == Infinity; }),
61  (function eq_R15(a) { return a == -Infinity; }),
62  (function eq_R16(a) { return a == NaN; })
63];
64function matrix() {
65  return [
66    [true == true,true == false,true == null,true == void 0,true == 0,true == 0.0,true == -0,true == "",true == -1,true == -1.25,true == 1,true == 1.25,true == -2147483648,true == 2147483648,true == Infinity,true == -Infinity,true == NaN],
67    [false == true,false == false,false == null,false == void 0,false == 0,false == 0.0,false == -0,false == "",false == -1,false == -1.25,false == 1,false == 1.25,false == -2147483648,false == 2147483648,false == Infinity,false == -Infinity,false == NaN],
68    [null == true,null == false,null == null,null == void 0,null == 0,null == 0.0,null == -0,null == "",null == -1,null == -1.25,null == 1,null == 1.25,null == -2147483648,null == 2147483648,null == Infinity,null == -Infinity,null == NaN],
69    [void 0 == true,void 0 == false,void 0 == null,void 0 == void 0,void 0 == 0,void 0 == 0.0,void 0 == -0,void 0 == "",void 0 == -1,void 0 == -1.25,void 0 == 1,void 0 == 1.25,void 0 == -2147483648,void 0 == 2147483648,void 0 == Infinity,void 0 == -Infinity,void 0 == NaN],
70    [0 == true,0 == false,0 == null,0 == void 0,0 == 0,0 == 0.0,0 == -0,0 == "",0 == -1,0 == -1.25,0 == 1,0 == 1.25,0 == -2147483648,0 == 2147483648,0 == Infinity,0 == -Infinity,0 == NaN],
71    [0.0 == true,0.0 == false,0.0 == null,0.0 == void 0,0.0 == 0,0.0 == 0.0,0.0 == -0,0.0 == "",0.0 == -1,0.0 == -1.25,0.0 == 1,0.0 == 1.25,0.0 == -2147483648,0.0 == 2147483648,0.0 == Infinity,0.0 == -Infinity,0.0 == NaN],
72    [-0 == true,-0 == false,-0 == null,-0 == void 0,-0 == 0,-0 == 0.0,-0 == -0,-0 == "",-0 == -1,-0 == -1.25,-0 == 1,-0 == 1.25,-0 == -2147483648,-0 == 2147483648,-0 == Infinity,-0 == -Infinity,-0 == NaN],
73    ["" == true,"" == false,"" == null,"" == void 0,"" == 0,"" == 0.0,"" == -0,"" == "","" == -1,"" == -1.25,"" == 1,"" == 1.25,"" == -2147483648,"" == 2147483648,"" == Infinity,"" == -Infinity,"" == NaN],
74    [-1 == true,-1 == false,-1 == null,-1 == void 0,-1 == 0,-1 == 0.0,-1 == -0,-1 == "",-1 == -1,-1 == -1.25,-1 == 1,-1 == 1.25,-1 == -2147483648,-1 == 2147483648,-1 == Infinity,-1 == -Infinity,-1 == NaN],
75    [-1.25 == true,-1.25 == false,-1.25 == null,-1.25 == void 0,-1.25 == 0,-1.25 == 0.0,-1.25 == -0,-1.25 == "",-1.25 == -1,-1.25 == -1.25,-1.25 == 1,-1.25 == 1.25,-1.25 == -2147483648,-1.25 == 2147483648,-1.25 == Infinity,-1.25 == -Infinity,-1.25 == NaN],
76    [1 == true,1 == false,1 == null,1 == void 0,1 == 0,1 == 0.0,1 == -0,1 == "",1 == -1,1 == -1.25,1 == 1,1 == 1.25,1 == -2147483648,1 == 2147483648,1 == Infinity,1 == -Infinity,1 == NaN],
77    [1.25 == true,1.25 == false,1.25 == null,1.25 == void 0,1.25 == 0,1.25 == 0.0,1.25 == -0,1.25 == "",1.25 == -1,1.25 == -1.25,1.25 == 1,1.25 == 1.25,1.25 == -2147483648,1.25 == 2147483648,1.25 == Infinity,1.25 == -Infinity,1.25 == NaN],
78    [-2147483648 == true,-2147483648 == false,-2147483648 == null,-2147483648 == void 0,-2147483648 == 0,-2147483648 == 0.0,-2147483648 == -0,-2147483648 == "",-2147483648 == -1,-2147483648 == -1.25,-2147483648 == 1,-2147483648 == 1.25,-2147483648 == -2147483648,-2147483648 == 2147483648,-2147483648 == Infinity,-2147483648 == -Infinity,-2147483648 == NaN],
79    [2147483648 == true,2147483648 == false,2147483648 == null,2147483648 == void 0,2147483648 == 0,2147483648 == 0.0,2147483648 == -0,2147483648 == "",2147483648 == -1,2147483648 == -1.25,2147483648 == 1,2147483648 == 1.25,2147483648 == -2147483648,2147483648 == 2147483648,2147483648 == Infinity,2147483648 == -Infinity,2147483648 == NaN],
80    [Infinity == true,Infinity == false,Infinity == null,Infinity == void 0,Infinity == 0,Infinity == 0.0,Infinity == -0,Infinity == "",Infinity == -1,Infinity == -1.25,Infinity == 1,Infinity == 1.25,Infinity == -2147483648,Infinity == 2147483648,Infinity == Infinity,Infinity == -Infinity,Infinity == NaN],
81    [-Infinity == true,-Infinity == false,-Infinity == null,-Infinity == void 0,-Infinity == 0,-Infinity == 0.0,-Infinity == -0,-Infinity == "",-Infinity == -1,-Infinity == -1.25,-Infinity == 1,-Infinity == 1.25,-Infinity == -2147483648,-Infinity == 2147483648,-Infinity == Infinity,-Infinity == -Infinity,-Infinity == NaN],
82    [NaN == true,NaN == false,NaN == null,NaN == void 0,NaN == 0,NaN == 0.0,NaN == -0,NaN == "",NaN == -1,NaN == -1.25,NaN == 1,NaN == 1.25,NaN == -2147483648,NaN == 2147483648,NaN == Infinity,NaN == -Infinity,NaN == NaN]
83  ];
84}
85function test() {
86  for (var i = 0; i < values.length; i++) {
87    for (var j = 0; j < values.length; j++) {
88      var a = values[i];
89      var b = values[j];
90      var x = expected[i][j];
91      assertEquals(x, func(a,b));
92      assertEquals(x, left_funcs[i](b));
93      assertEquals(x, right_funcs[j](a));
94    }
95  }
96
97  var result = matrix();
98  for (var i = 0; i < values.length; i++) {
99    for (var j = 0; j < values.length; j++) {
100      assertEquals(expected[i][j], result[i][j]);
101    }
102  }
103}
104test();
105test();
106