summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/expressions/short-circuit-compound-assignment.js
blob: c08c4ddecfb1e0f9e5a2c324bc1cff15eaebc2d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
const testCasesAnd = [];
const testCasesOr = [];
const testCasesCoalesce = [];


// Assignment to a global variable (JSOp::SetGName).
var globalVar;

function testAnd_GlobalVar(init, value) {
  globalVar = init;
  return [(globalVar &&= value), globalVar];
}
testCasesAnd.push(testAnd_GlobalVar);

function testOr_GlobalVar(init, value) {
  globalVar = init;
  return [(globalVar ||= value), globalVar];
}
testCasesOr.push(testOr_GlobalVar);

function testCoalesce_GlobalVar(init, value) {
  globalVar = init;
  return [(globalVar ??= value), globalVar];
}
testCasesCoalesce.push(testCoalesce_GlobalVar);


// Assignment to a local variable (JSOp::SetLocal).
function testAnd_LocalVar(init, value) {
  let v = init;
  return [(v &&= value), v];
}
testCasesAnd.push(testAnd_LocalVar);

function testOr_LocalVar(init, value) {
  let v = init;
  return [(v ||= value), v];
}
testCasesOr.push(testOr_LocalVar);

function testCoalesce_LocalVar(init, value) {
  let v = init;
  return [(v ??= value), v];
}
testCasesCoalesce.push(testCoalesce_LocalVar);


// Assignment to a parameter (JSOp::SetArg).
function testAnd_Arg(init, value) {
  function f(v) {
    return [(v &&= value), v];
  }
  return f(init);
}
testCasesAnd.push(testAnd_Arg);

function testOr_Arg(init, value) {
  function f(v) {
    return [(v ||= value), v];
  }
  return f(init);
}
testCasesOr.push(testOr_Arg);

function testCoalesce_Arg(init, value) {
  function f(v) {
    return [(v ??= value), v];
  }
  return f(init);
}
testCasesCoalesce.push(testCoalesce_Arg);


// Assignment to a closed over variable (JSOp::SetAliasedVar).
function testAnd_ClosedOver(init, value) {
  let v = init;
  function f() {
    return (v &&= value);
  }
  return [f(), v];
}
testCasesAnd.push(testAnd_ClosedOver);

function testOr_ClosedOver(init, value) {
  let v = init;
  function f() {
    return (v ||= value);
  }
  return [f(), v];
}
testCasesOr.push(testOr_ClosedOver);

function testCoalesce_ClosedOver(init, value) {
  let v = init;
  function f() {
    return (v ??= value);
  }
  return [f(), v];
}
testCasesCoalesce.push(testCoalesce_ClosedOver);


// Assignment to a dynamic name (JSOp::SetName).
function testAnd_DynamicName(init, value) {
  eval("var v = init;");
  return [(v &&= value), v];
}
testCasesAnd.push(testAnd_DynamicName);

function testOr_DynamicName(init, value) {
  eval("var v = init;");
  return [(v ||= value), v];
}
testCasesOr.push(testOr_DynamicName);

function testCoalesce_DynamicName(init, value) {
  eval("var v = init;");
  return [(v ??= value), v];
}
testCasesCoalesce.push(testCoalesce_DynamicName);


// Assignment to a property.
function testAnd_Property(init, value) {
  let obj = {p: init};
  return [(obj.p &&= value), obj.p];
}
testCasesAnd.push(testAnd_Property);

function testOr_Property(init, value) {
  let obj = {p: init};
  return [(obj.p ||= value), obj.p];
}
testCasesOr.push(testOr_Property);

function testCoalesce_Property(init, value) {
  let obj = {p: init};
  return [(obj.p ??= value), obj.p];
}
testCasesCoalesce.push(testCoalesce_Property);


// Assignment to a super property.
function testAnd_SuperProperty(init, value) {
  let proto = {p: init};
  let obj = {__proto__: proto, m() { return (super.p &&= value); }};
  return [obj.m(), obj.p];
}
testCasesAnd.push(testAnd_SuperProperty);

function testOr_SuperProperty(init, value) {
  let proto = {p: init};
  let obj = {__proto__: proto, m() { return (super.p ||= value); }};
  return [obj.m(), obj.p];
}
testCasesOr.push(testOr_SuperProperty);

function testCoalesce_SuperProperty(init, value) {
  let proto = {p: init};
  let obj = {__proto__: proto, m() { return (super.p ??= value); }};
  return [obj.m(), obj.p];
}
testCasesCoalesce.push(testCoalesce_SuperProperty);


// Assignment to an element.
function testAnd_Element(init, value) {
  let p = 123;
  let obj = {[p]: init};
  return [(obj[p] &&= value), obj[p]];
}
testCasesAnd.push(testAnd_Element);

function testOr_Element(init, value) {
  let p = 123;
  let obj = {[p]: init};
  return [(obj[p] ||= value), obj[p]];
}
testCasesOr.push(testOr_Element);

function testCoalesce_Element(init, value) {
  let p = 123;
  let obj = {[p]: init};
  return [(obj[p] ??= value), obj[p]];
}
testCasesCoalesce.push(testCoalesce_Element);


// Assignment to a super element.
function testAnd_SuperElement(init, value) {
  let p = 123;
  let proto = {[p]: init};
  let obj = {__proto__: proto, m() { return (super[p] &&= value); }};
  return [obj.m(), obj[p]];
}
testCasesAnd.push(testAnd_SuperElement);

function testOr_SuperElement(init, value) {
  let p = 123;
  let proto = {[p]: init};
  let obj = {__proto__: proto, m() { return (super[p] ||= value); }};
  return [obj.m(), obj[p]];
}
testCasesOr.push(testOr_SuperElement);

function testCoalesce_SuperElement(init, value) {
  let p = 123;
  let proto = {[p]: init};
  let obj = {__proto__: proto, m() { return (super[p] ??= value); }};
  return [obj.m(), obj[p]];
}
testCasesCoalesce.push(testCoalesce_SuperElement);


// Run the actual tests.

function runTest(testCases, init, value, expected) {
  for (let f of testCases) {
    let [result, newValue] = f(init, value);

    assertEq(result, expected);
    assertEq(newValue, expected);
  }
}

function testAnd(init, value) {
  const expected = init ? value : init;
  runTest(testCasesAnd, init, value, expected);
}

function testOr(init, value) {
  const expected = !init ? value : init;
  runTest(testCasesOr, init, value, expected);
}

function testCoalesce(init, value) {
  const expected = init === undefined || init === null ? value : init;
  runTest(testCasesCoalesce, init, value, expected);
}


// Repeat a number of times to ensure JITs can kick in, too.
for (let i = 0; i < 50; ++i) {
  for (let thruthy of [true, 123, 123n, "hi", [], Symbol()]) {
    testAnd(thruthy, "pass");
    testOr(thruthy, "fail");
    testCoalesce(thruthy, "fail");
  }

  for (let falsy of [false, 0, NaN, 0n, ""]) {
    testAnd(falsy, "fail");
    testOr(falsy, "pass");
    testCoalesce(falsy, "fail");
  }

  for (let nullOrUndefined of [null, undefined]) {
    testAnd(nullOrUndefined, "fail");
    testOr(nullOrUndefined, "pass");
    testCoalesce(nullOrUndefined, "pass");
  }
}


if (typeof reportCompare === "function")
  reportCompare(0, 0);