-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnifiedBytecodeProductionInvocationTests.cs
More file actions
8399 lines (7235 loc) · 281 KB
/
Copy pathUnifiedBytecodeProductionInvocationTests.cs
File metadata and controls
8399 lines (7235 loc) · 281 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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System.IO;
using Asynkron.JsEngine;
using Asynkron.JsEngine.Ast;
using Xunit.Abstractions;
namespace Asynkron.JsEngine.Tests;
[Category(TestCategories.RuntimeSemantics)]
public sealed class UnifiedBytecodeProductionInvocationTests(ITestOutputHelper output) : InternalTestBase(output)
{
private const string UnifiedBytecodeProductionFastPathLog = "unified-bytecode-production-fast-path";
private const string SimpleIrParameterNumberBinaryFastPathLog =
"simple-ir-parameter-number-binary-fast-path";
private const string SimpleIrParameterNumberBinaryChainFastPathLog =
"simple-ir-parameter-number-binary-chain-fast-path";
[Fact(Timeout = 5000)]
public async Task LinearSlotReturnFunction_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function passThrough(x) {
var y = x;
return y;
}
passThrough(42);
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=passThrough argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task LocalLiteralReturnFunction_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function readLocal() {
var y = 7;
return y;
}
readLocal();
""");
Assert.Equal(7d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=readLocal argc=0",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task NestedFunctionDeclaration_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function outer() {
function inner() {
return 42;
}
return inner();
}
outer();
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=outer argc=0",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task ParameterVarDeclarationWithoutInitializer_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function parameterVar(value) {
var value;
return value;
}
parameterVar(42);
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=parameterVar argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task NamedFunctionExpressionParameterCollision_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
var result = (function same(same) {
return same;
})(42);
result;
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=same argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task NestedClassDeclaration_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function create(seed) {
class Local {
static {
seed = seed + 1;
}
}
return seed;
}
create(41);
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=create argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task SimpleObjectDestructuring_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function readAb(source) {
var { a, b } = source;
return a + b;
}
readAb({ a: 40, b: 2 });
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=readAb argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task NestedStaticBindingDeclaration_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function destructure(source) {
{
let { nested: { value } } = source;
return value;
}
}
destructure({ nested: { value: 42 } });
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=destructure argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task ObjectDestructuring_PreservesPropertyReadOrder_OnFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
var order = [];
function readAb(source) {
var { a, b } = source;
return a + b;
}
var src = {};
Object.defineProperty(src, "a", {
get: function () { order.push("a"); return 1; },
enumerable: true
});
Object.defineProperty(src, "b", {
get: function () { order.push("b"); return 2; },
enumerable: true
});
var sum = readAb(src);
[sum, order.join(",")];
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal(3d, steps.Items[0].AsDouble());
Assert.Equal("a,b", steps.Items[1].AsString());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=readAb argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task ObjectDestructuringRest_CollectsRemainingProperties_OnFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function readRest(source) {
var { a, ...rest } = source;
return rest.c;
}
readRest({ a: 1, b: 2, c: 3 });
""");
Assert.Equal(3d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=readRest argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task ObjectDestructuringNullSource_ThrowsTypeError_OnFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function readAb(source) {
var { a } = source;
return a;
}
var captured = false;
try {
readAb(null);
} catch (error) {
captured = error instanceof TypeError;
}
captured;
""");
Assert.Equal(true, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=readAb argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task ObjectDestructuringGetterThrow_PropagatesAndCleansUp_OnFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function readAb(source) {
var { a, b } = source;
return a + b;
}
var src = {
a: 1,
get b() { throw new RangeError("boom"); }
};
var message = null;
try {
readAb(src);
} catch (error) {
message = error instanceof RangeError ? error.message : "wrong";
}
message;
""");
Assert.Equal("boom", result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=readAb argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task AssignmentDestructuringComputedDefault_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function assignComputedDefault(source, key) {
var value = 0;
({ [key]: value = 5 } = source);
return value;
}
assignComputedDefault({}, "picked");
""");
Assert.Equal(5d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=assignComputedDefault argc=2",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task AssignmentDestructuringValue_DoesNotInferBindingTargetName_OnFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function assignValueName(source) {
var assigned;
({ value: assigned } = source);
return assigned.name;
}
var payload = (0, function() {});
assignValueName({ value: payload });
""");
Assert.Equal("", result?.ToString());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=assignValueName argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task AssignmentDestructuringGetterThrow_PreservesPartialWriteAfterCaughtThrow_OnFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function probe(source) {
var a = 0;
var b = 0;
try {
({ a, b } = source);
} catch {
return a;
}
return -1;
}
probe({
a: 1,
get b() { throw new RangeError("boom"); }
});
""");
Assert.Equal(1d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=probe argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task AssignmentDestructuringIteratorValueThrow_ClosesIteratorAndPreservesPartialWrite_OnFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function probe(iterable) {
var a = 0;
var b = 0;
try {
[a, b] = iterable;
} catch {
return a;
}
return -1;
}
var closed = false;
var iterable = {
[Symbol.iterator]: function () {
var step = 0;
return {
next: function () {
step = step + 1;
if (step === 1) {
return { value: 1, done: false };
}
return {
get value() { throw new RangeError("boom"); },
done: false
};
},
return: function () {
closed = true;
return {};
}
};
}
};
var observed = probe(iterable);
[observed, closed];
""");
var observed = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal(1d, observed.Items[0].AsDouble());
Assert.True(observed.Items[1].AsBoolean());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=probe argc=1",
StringComparison.Ordinal));
}
[Theory(Timeout = 5000)]
[InlineData(
"""
function readArrayDefault(values) {
var [first = 5] = values;
return first;
}
readArrayDefault([]);
""",
"readArrayDefault",
5d)]
[InlineData(
"""
function readObjectDefault(source) {
var { a = 5 } = source;
return a;
}
readObjectDefault({});
""",
"readObjectDefault",
5d)]
[InlineData(
"""
function readObjectComputed(source, key) {
var { [key]: value } = source;
return value;
}
readObjectComputed({ picked: 7 }, "picked");
""",
"readObjectComputed",
7d)]
public async Task DeclarationDestructuringDescriptorShapes_UseUnifiedBytecodeProductionFastPath(
string source,
string functionName,
object expected)
{
await using var engine = CreateEngine();
var result = await engine.Evaluate(source);
Assert.Equal(expected, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
record => record.Message.Contains(
$"unified-bytecode-production-fast-path func={functionName}",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task SimpleGeneratorYieldSend_UsesResumableUnifiedBytecodeFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function* gen(input) {
var x = yield input;
return x + 1;
}
var iterator = gen(10);
var first = iterator.next();
var second = iterator.next(41);
[first.value, first.done, second.value, second.done];
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal(10d, steps.Items[0].AsDouble());
Assert.False(steps.Items[1].AsBoolean());
Assert.Equal(42d, steps.Items[2].AsDouble());
Assert.True(steps.Items[3].AsBoolean());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=gen argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task ParenthesizedShortCircuitYield_UsesResumableUnifiedBytecodeFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function* gen() {
return yield ("left" && "right");
}
var iterator = gen();
var first = iterator.next();
var second = iterator.next("resume");
[first.value, first.done, second.value, second.done];
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal("right", steps.Items[0].AsString());
Assert.False(steps.Items[1].AsBoolean());
Assert.Equal("resume", steps.Items[2].AsString());
Assert.True(steps.Items[3].AsBoolean());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=gen argc=0",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task SimpleAsyncAwaitReturn_UsesResumableUnifiedBytecodeFastPath()
{
await using var engine = CreateEngine();
var result = await engine.EvaluateAndAwait("""
var asyncResult = undefined;
async function run(input) {
await input;
return await 41;
}
run(1).then(value => asyncResult = value);
asyncResult;
""");
Assert.Equal(41d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-async-fast-path func=run argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task SimpleGeneratorYieldStar_UsesResumableUnifiedBytecodeFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function* relay(values) {
yield* values;
}
var iterator = relay([3]);
var first = iterator.next();
var second = iterator.next();
[first.value, first.done, second.value, second.done];
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal(3d, steps.Items[0].AsDouble());
Assert.False(steps.Items[1].AsBoolean());
Assert.Equal(Symbol.Undefined, steps.Items[2]);
Assert.True(steps.Items[3].AsBoolean());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=relay",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task GeneratorYieldStar_PreservesIterableSlotAfterDelegation()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function* relay(values) {
yield* values;
return values;
}
var array = [3];
var iterator = relay(array);
var first = iterator.next();
var second = iterator.next();
[first.value, first.done, second.value === array, second.done];
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal(3d, steps.Items[0].AsDouble());
Assert.False(steps.Items[1].AsBoolean());
Assert.True(steps.Items[2].AsBoolean());
Assert.True(steps.Items[3].AsBoolean());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=relay",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task SimpleGeneratorYieldStar_ReturnDelegatesThroughResumableUnifiedBytecode()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function* outer(delegated) {
return yield* delegated;
}
var calls = [];
var delegated = {
[Symbol.iterator]() {
return {
next() {
calls.push("next");
return { value: "first", done: false };
},
return(value) {
calls.push("return:" + value);
return { value: "closed:" + value, done: true };
}
};
}
};
var iterator = outer(delegated);
var first = iterator.next();
var second = iterator.return("stop");
[first.value, first.done, second.value, second.done, calls.join(",")];
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal("first", steps.Items[0].AsString());
Assert.False(steps.Items[1].AsBoolean());
Assert.Equal("closed:stop", steps.Items[2].AsString());
Assert.True(steps.Items[3].AsBoolean());
Assert.Equal("next,return:stop", steps.Items[4].AsString());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=outer",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task SimpleGeneratorYieldStar_ThrowDelegatesThroughResumableUnifiedBytecode()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function* outer(delegated) {
return yield* delegated;
}
var calls = [];
var delegated = {
[Symbol.iterator]() {
return {
next() {
calls.push("next");
return { value: "first", done: false };
},
throw(value) {
calls.push("throw:" + value);
return { value: "handled:" + value, done: true };
}
};
}
};
var iterator = outer(delegated);
var first = iterator.next();
var second = iterator.throw("boom");
[first.value, first.done, second.value, second.done, calls.join(",")];
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal("first", steps.Items[0].AsString());
Assert.False(steps.Items[1].AsBoolean());
Assert.Equal("handled:boom", steps.Items[2].AsString());
Assert.True(steps.Items[3].AsBoolean());
Assert.Equal("next,throw:boom", steps.Items[4].AsString());
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=outer",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task AsyncGeneratorYieldStar_ReturnDelegatesThroughIrAndDeclinesResumableUnifiedBytecode()
{
await using var engine = CreateEngine();
var result = await engine.EvaluateAndAwait("""
var asyncResult = undefined;
async function* outer(delegated) {
return yield* delegated;
}
var calls = [];
var delegated = {
[Symbol.asyncIterator]() {
return {
async next() {
calls.push("next");
return { value: "first", done: false };
},
async return(value) {
calls.push("return:" + value);
return { value: "closed:" + value, done: true };
}
};
}
};
async function run() {
var iterator = outer(delegated);
var first = await iterator.next();
var second = await iterator.return("stop");
return [first.value, first.done, second.value, second.done, calls.join(",")];
}
run().then(value => asyncResult = value);
asyncResult;
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal("first", steps.Items[0].AsString());
Assert.False(steps.Items[1].AsBoolean());
Assert.Equal("closed:stop", steps.Items[2].AsString());
Assert.True(steps.Items[3].AsBoolean());
Assert.Equal("next,return:stop", steps.Items[4].AsString());
Assert.DoesNotContain(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=outer",
StringComparison.Ordinal));
Assert.DoesNotContain(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-async-fast-path func=outer",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task AsyncGeneratorYieldStar_ThrowDelegatesThroughIrAndDeclinesResumableUnifiedBytecode()
{
await using var engine = CreateEngine();
var result = await engine.EvaluateAndAwait("""
var asyncResult = undefined;
async function* outer(delegated) {
return yield* delegated;
}
var calls = [];
var delegated = {
[Symbol.asyncIterator]() {
return {
async next() {
calls.push("next");
return { value: "first", done: false };
},
async throw(value) {
calls.push("throw:" + value);
return { value: "handled:" + value, done: true };
}
};
}
};
async function run() {
var iterator = outer(delegated);
var first = await iterator.next();
var second = await iterator.throw("boom");
return [first.value, first.done, second.value, second.done, calls.join(",")];
}
run().then(value => asyncResult = value);
asyncResult;
""");
var steps = Assert.IsType<JsTypes.JsArray>(result);
Assert.Equal("first", steps.Items[0].AsString());
Assert.False(steps.Items[1].AsBoolean());
Assert.Equal("handled:boom", steps.Items[2].AsString());
Assert.True(steps.Items[3].AsBoolean());
Assert.Equal("next,throw:boom", steps.Items[4].AsString());
Assert.DoesNotContain(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-generator-fast-path func=outer",
StringComparison.Ordinal));
Assert.DoesNotContain(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-resumable-async-fast-path func=outer",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task MissingArgument_InitializesParameterSlotToUndefined()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function passThrough(x) {
var y = x;
return y;
}
passThrough();
""");
Assert.Equal(Symbol.Undefined, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=passThrough argc=0",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task WithDynamicIdentifierOperations_UseUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function run(scope) {
with (scope) {
value = value + 2;
++count;
missingType = typeof missing;
deleteResult = delete removable;
removableType = typeof removable;
return value + ":" +
count + ":" +
missingType + ":" +
deleteResult + ":" +
removableType;
}
}
run({
value: 1,
count: 4,
removable: 9,
missingType: "",
deleteResult: false,
removableType: ""
});
""");
Assert.Equal("3:5:undefined:true:undefined", result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=run argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task WithFunctionVarInitializer_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function run(scope) {
var add = 2;
with (scope) {
return value + add;
}
}
run({ value: 40 });
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=run argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task WithVarInitializer_PreResolvesBindingBeforeInitializerOnProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
var scope = new Proxy(
{ value: 1, hide: 0 },
{
has(target, key) {
return key === "value" ? target.hide === 0 : key in target;
}
});
function run(scope) {
with (scope) {
var value = (++hide, 42);
return value;
}
}
run(scope) + ":" + scope.value + ":" + scope.hide;
""");
Assert.Equal("undefined:42:1", result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=run argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task NestedFunctionVarDeclaration_IsHoistedAcrossOuterWithWhenThrowingOnProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function run(scope) {
var result = "result";
var f = function() {
throw value;
var value = "local";
};
try {
with (scope) {
f();
}
} catch (error) {
result = error;
}
return result;
}
run({ value: "scope" });
""");
Assert.Equal(Symbol.Undefined, result);
}
[Fact(Timeout = 5000)]
public async Task WithThenOutsideDynamicIdentifier_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
var externalValue = 41;
function run(scope) {
with (scope) {
value = value + 1;
}
return externalValue + 1;
}
run({ value: 1 });
""");
Assert.Equal(42d, result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=run argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task OrdinaryGlobalDynamicIdentifierOperations_UseUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
externalValue = 1;
globalCount = 4;
removable = 9;
function run(delta) {
externalValue = externalValue + delta;
++globalCount;
var missingType = typeof missing;
var deleteResult = delete removable;
var removableType = typeof removable;
return externalValue + ":" +
globalCount + ":" +
missingType + ":" +
deleteResult + ":" +
removableType;
}
run(2) + ":" + externalValue + ":" + globalCount + ":" + typeof removable;
""");
Assert.Equal("3:5:undefined:true:undefined:3:5:undefined", result);
Assert.Contains(CurrentLogger!.Collector.Snapshot(),
static record => record.Message.Contains(
"unified-bytecode-production-fast-path func=run argc=1",
StringComparison.Ordinal));
}
[Fact(Timeout = 5000)]
public async Task DirectEvalDeclarationDynamicLookup_UsesUnifiedBytecodeProductionFastPath()
{
await using var engine = CreateEngine();
var result = await engine.Evaluate("""
function run() {
eval("var value = 41;");
return value + 1;