-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconstructor-test.js
More file actions
565 lines (529 loc) · 11.1 KB
/
constructor-test.js
File metadata and controls
565 lines (529 loc) · 11.1 KB
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
'use strict';
const assert = require('assert');
const assertText = require('assert-text');
assertText.options.trim = true;
const fixtures = require('./fixtures');
const cfgjs = require('../');
function test(fn, expected) {
const pipelines = cfgjs.build(fixtures.parse(fn));
const actual = pipelines.map((cfg, i) => {
return (i === 0 ? '' : (i + ': ')) + cfg.render({ cfg: true }, 'printable');
}).join('\n');
assertText.equal(actual, expected);
}
describe('CFG.js/Constructor', () => {
it('should create empty graph', () => {
test(() => {
}, `pipeline {
b0 {
}
}`);
});
describe('literals', () => {
it('should construct numbers and strings', () => {
test(() => {
1;
1.23;
"hello";
}, `pipeline {
b0 {
i0 = literal 1
i1 = literal 1.23
i2 = literal "hello"
}
}`);
});
it('should construct regexp', () => {
test(() => {
/[a-z]/g;
}, `pipeline {
b0 {
i0 = regexp "[a-z]", "g"
}
}`);
});
});
describe('global', () => {
it('should construct global load', () => {
test(() => {
a;
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = loadProperty i0, i1
}
}`);
});
it('should construct global store', () => {
test(() => {
a = 1;
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = literal 1
i3 = storeProperty i0, i1, i2
}
}`);
});
});
describe('property', () => {
it('should construct named property load', () => {
test(() => {
a.b;
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = loadProperty i0, i1
i3 = literal "b"
i4 = loadProperty i2, i3
}
}`);
});
it('should construct named property store', () => {
test(() => {
a.b = 1;
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = loadProperty i0, i1
i3 = literal "b"
i4 = literal 1
i5 = storeProperty i2, i3, i4
}
}`);
});
it('should construct property load', () => {
test(() => {
a['b'];
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = loadProperty i0, i1
i3 = literal "b"
i4 = loadProperty i2, i3
}
}`);
});
it('should construct property store', () => {
test(() => {
a['b'] = 1;
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = loadProperty i0, i1
i3 = literal "b"
i4 = literal 1
i5 = storeProperty i2, i3, i4
}
}`);
});
});
describe('es5 scope', () => {
it('should construct global var decl', () => {
test(() => {
var a = 0;
a;
a = 1;
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = literal 0
i3 = storeProperty i0, i1, i2
i4 = global
i5 = literal "a"
i6 = loadProperty i4, i5
i7 = global
i8 = literal "a"
i9 = literal 1
i10 = storeProperty i7, i8, i9
}
}`);
});
it('should construct local var decl', () => {
test(() => {
function local() {
var a = 0;
a;
a = 1;
}
}, `pipeline {
b0 {
i0 = global
i1 = literal "local"
i2 = fn 1
i3 = storeProperty i0, i1, i2
}
}
1: pipeline {
b0 {
i0 = literal 0
i1 = ssa:store "0/a", i0
i2 = ssa:load "0/a"
i3 = literal 1
i4 = ssa:store "0/a", i3
}
}`);
});
});
describe('es6 scope', () => {
it('should lookup const variables', () => {
test(() => {
{
a;
const a = 1;
{
const a = 2;
a;
}
a;
}
}, `pipeline {
b0 {
i0 = oddball "hole"
i1 = ssa:store "0/a", i0
i2 = ssa:load "0/a"
i3 = literal 1
i4 = ssa:store "0/a", i3
i5 = oddball "hole"
i6 = ssa:store "1/a", i5
i7 = literal 2
i8 = ssa:store "1/a", i7
i9 = ssa:load "1/a"
i10 = ssa:load "0/a"
}
}`);
});
it('should modify let variables', () => {
test(() => {
{
a;
let a = 1;
{
let a = 2;
a = 3;
}
a = 4;
}
}, `pipeline {
b0 {
i0 = oddball "hole"
i1 = ssa:store "0/a", i0
i2 = ssa:load "0/a"
i3 = literal 1
i4 = ssa:store "0/a", i3
i5 = oddball "hole"
i6 = ssa:store "1/a", i5
i7 = literal 2
i8 = ssa:store "1/a", i7
i9 = literal 3
i10 = ssa:store "1/a", i9
i11 = literal 4
i12 = ssa:store "0/a", i11
}
}`);
});
});
describe('functions', () => {
it('should construct function declaration', () => {
test(() => {
a;
function a() {
a;
}
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = fn 1
i3 = storeProperty i0, i1, i2
i4 = global
i5 = literal "a"
i6 = loadProperty i4, i5
}
}
1: pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = loadProperty i0, i1
}
}`);
});
it('should construct function expression', () => {
test(() => {
var b = function a() {
a;
}
}, `pipeline {
b0 {
i0 = global
i1 = literal "b"
i2 = fn 1
i3 = storeProperty i0, i1, i2
}
}
1: pipeline {
b0 {
i0 = loadContext 0, -1
}
}`);
});
it('should construct proper function context name ref', () => {
test(() => {
var b = function a() {
var c = function d() {
a;
}
}
}, `pipeline {
b0 {
i0 = global
i1 = literal "b"
i2 = fn 1
i3 = storeProperty i0, i1, i2
}
}
1: pipeline {
b0 {
i0 = fn 2
i1 = ssa:store "0/c", i0
}
}
2: pipeline {
b0 {
i0 = loadContext 1, -1
}
}`);
});
});
describe('math', () => {
it('should support unary operations', () => {
test(() => {
+1;
}, `pipeline {
b0 {
i0 = literal 1
i1 = unary "+", i0
}
}`);
});
it('should support binary operations', () => {
test(() => {
2 + 2 == 4;
}, `pipeline {
b0 {
i0 = literal 2
i1 = literal 2
i2 = binary "+", i0, i1
i3 = literal 4
i4 = binary "==", i2, i3
}
}`);
});
it('should execute operations according to precedence', () => {
test(() => {
var t = 1 - 2 * 3;
}, `pipeline {
b0 {
i0 = global
i1 = literal "t"
i2 = literal 1
i3 = literal 2
i4 = literal 3
i5 = binary "*", i3, i4
i6 = binary "-", i2, i5
i7 = storeProperty i0, i1, i6
}
}`);
});
it('should support combined assignment/binary operations', () => {
test(() => {
obj.prop += 10;
}, `pipeline {
b0 {
i0 = global
i1 = literal "obj"
i2 = loadProperty i0, i1
i3 = literal "prop"
i4 = loadProperty i2, i3
i5 = literal 10
i6 = binary "+", i4, i5
i7 = storeProperty i2, i3, i6
}
}`);
});
it('should support update operators', () => {
test(() => {
function f() {
var x = 1;
var y;
y = x++;
y = ++x;
}
}, `pipeline {
b0 {
i0 = global
i1 = literal "f"
i2 = fn 1
i3 = storeProperty i0, i1, i2
}
}
1: pipeline {
b0 {
i0 = literal 1
i1 = ssa:store "0/x", i0
i2 = ssa:load "0/x"
i3 = literal 1
i4 = binary "+", i2, i3
i5 = ssa:store "0/x", i4
i6 = ssa:store "1/y", i2
i7 = ssa:load "0/x"
i8 = literal 1
i9 = binary "+", i7, i8
i10 = ssa:store "0/x", i9
i11 = ssa:store "1/y", i9
}
}`);
});
it('should support sequence (comma) expressions', () => {
test(() => {
a = (1, 2, 3);
}, `pipeline {
b0 {
i0 = global
i1 = literal "a"
i2 = literal 1
i3 = literal 2
i4 = literal 3
i5 = storeProperty i0, i1, i4
}
}`);
});
});
describe('conditional', () => {
it('statement should be supported', () => {
test(() => {
if (true) {
'x';
} else {
'y';
}
}, `pipeline {
b0 {
i0 = literal true
i1 = if ^b0, i0
}
b0 -> b1, b2
b1 {
i2 = literal "x"
i3 = jump ^b1
}
b1 -> b3
b2 {
i4 = literal "y"
i5 = jump ^b2
}
b2 -> b3
b3 {
}
}`);
});
it('expression should evaluate', () => {
test(() => {
true ? 'x' : 'y';
}, `pipeline {
b0 {
i0 = literal true
i1 = if ^b0, i0
}
b0 -> b1, b2
b1 {
i2 = literal "x"
i3 = jump ^b1
}
b1 -> b3
b2 {
i4 = literal "y"
i5 = jump ^b2
}
b2 -> b3
b3 {
i6 = phi ^b3, i2, i4
}
}`);
});
it('statement without else should be supported', () => {
test(() => {
'a';
if (true) 'b';
'c';
}, `pipeline {
b0 {
i0 = literal "a"
i1 = literal true
i2 = if ^b0, i1
}
b0 -> b1, b2
b1 {
i3 = literal "b"
i4 = jump ^b1
}
b1 -> b2
b2 {
i5 = literal "c"
}
}`)
});
test(() => {
if (true ? 1 : 2) {
'x';
} else {
'y';
}
}, `pipeline {
b0 {
i0 = literal true
i1 = if ^b0, i0
}
b0 -> b1, b2
b1 {
i2 = literal 1
i3 = jump ^b1
}
b1 -> b3
b2 {
i4 = literal 2
i5 = jump ^b2
}
b2 -> b3
b3 {
i6 = phi ^b3, i2, i4
i7 = jump ^i6
}
b3 -> b4
b4 {
i8 = if ^b4, i6
}
b4 -> b5, b6
b5 {
i9 = literal "x"
i10 = jump ^b5
}
b5 -> b7
b6 {
i11 = literal "y"
i12 = jump ^b6
}
b6 -> b7
b7 {
}
}`);
});
});