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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Tests\SpecTestsuites\Core;
use Nsfisis\Waddiwasi\Tests\SpecTestsuites\SpecTestsuiteBase;
use PHPUnit\Framework\Attributes\Depends;
use PHPUnit\Framework\Attributes\DoesNotPerformAssertions;
final class AlignTest extends SpecTestsuiteBase
{
public function testModule0(): void
{
$this->runModuleCommand(
filename: 'align.0.wasm',
name: null,
line: 3,
);
}
#[Depends('testModule0')]
public function testModule1(): void
{
$this->runModuleCommand(
filename: 'align.1.wasm',
name: null,
line: 4,
);
}
#[Depends('testModule1')]
public function testModule2(): void
{
$this->runModuleCommand(
filename: 'align.2.wasm',
name: null,
line: 5,
);
}
#[Depends('testModule2')]
public function testModule3(): void
{
$this->runModuleCommand(
filename: 'align.3.wasm',
name: null,
line: 6,
);
}
#[Depends('testModule3')]
public function testModule4(): void
{
$this->runModuleCommand(
filename: 'align.4.wasm',
name: null,
line: 7,
);
}
#[Depends('testModule4')]
public function testModule5(): void
{
$this->runModuleCommand(
filename: 'align.5.wasm',
name: null,
line: 8,
);
}
#[Depends('testModule5')]
public function testModule6(): void
{
$this->runModuleCommand(
filename: 'align.6.wasm',
name: null,
line: 9,
);
}
#[Depends('testModule6')]
public function testModule7(): void
{
$this->runModuleCommand(
filename: 'align.7.wasm',
name: null,
line: 10,
);
}
#[Depends('testModule7')]
public function testModule8(): void
{
$this->runModuleCommand(
filename: 'align.8.wasm',
name: null,
line: 11,
);
}
#[Depends('testModule8')]
public function testModule9(): void
{
$this->runModuleCommand(
filename: 'align.9.wasm',
name: null,
line: 12,
);
}
#[Depends('testModule9')]
public function testModule10(): void
{
$this->runModuleCommand(
filename: 'align.10.wasm',
name: null,
line: 13,
);
}
#[Depends('testModule10')]
public function testModule11(): void
{
$this->runModuleCommand(
filename: 'align.11.wasm',
name: null,
line: 14,
);
}
#[Depends('testModule11')]
public function testModule12(): void
{
$this->runModuleCommand(
filename: 'align.12.wasm',
name: null,
line: 15,
);
}
#[Depends('testModule12')]
public function testModule13(): void
{
$this->runModuleCommand(
filename: 'align.13.wasm',
name: null,
line: 16,
);
}
#[Depends('testModule13')]
public function testModule14(): void
{
$this->runModuleCommand(
filename: 'align.14.wasm',
name: null,
line: 17,
);
}
#[Depends('testModule14')]
public function testModule15(): void
{
$this->runModuleCommand(
filename: 'align.15.wasm',
name: null,
line: 18,
);
}
#[Depends('testModule15')]
public function testModule16(): void
{
$this->runModuleCommand(
filename: 'align.16.wasm',
name: null,
line: 19,
);
}
#[Depends('testModule16')]
public function testModule17(): void
{
$this->runModuleCommand(
filename: 'align.17.wasm',
name: null,
line: 20,
);
}
#[Depends('testModule17')]
public function testModule18(): void
{
$this->runModuleCommand(
filename: 'align.18.wasm',
name: null,
line: 21,
);
}
#[Depends('testModule18')]
public function testModule19(): void
{
$this->runModuleCommand(
filename: 'align.19.wasm',
name: null,
line: 22,
);
}
#[Depends('testModule19')]
public function testModule20(): void
{
$this->runModuleCommand(
filename: 'align.20.wasm',
name: null,
line: 23,
);
}
#[Depends('testModule20')]
public function testModule21(): void
{
$this->runModuleCommand(
filename: 'align.21.wasm',
name: null,
line: 24,
);
}
#[Depends('testModule21')]
public function testModule22(): void
{
$this->runModuleCommand(
filename: 'align.22.wasm',
name: null,
line: 25,
);
}
#[DoesNotPerformAssertions]
#[Depends('testModule22')]
public function testAssertMalformed23(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed23')]
public function testAssertMalformed24(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed24')]
public function testAssertMalformed25(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed25')]
public function testAssertMalformed26(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed26')]
public function testAssertMalformed27(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed27')]
public function testAssertMalformed28(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed28')]
public function testAssertMalformed29(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed29')]
public function testAssertMalformed30(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed30')]
public function testAssertMalformed31(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed31')]
public function testAssertMalformed32(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed32')]
public function testAssertMalformed33(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed33')]
public function testAssertMalformed34(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed34')]
public function testAssertMalformed35(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed35')]
public function testAssertMalformed36(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed36')]
public function testAssertMalformed37(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed37')]
public function testAssertMalformed38(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed38')]
public function testAssertMalformed39(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed39')]
public function testAssertMalformed40(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed40')]
public function testAssertMalformed41(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed41')]
public function testAssertMalformed42(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed42')]
public function testAssertMalformed43(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed43')]
public function testAssertMalformed44(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed44')]
public function testAssertMalformed45(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed45')]
public function testAssertMalformed46(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed46')]
public function testAssertMalformed47(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed47')]
public function testAssertMalformed48(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed48')]
public function testAssertMalformed49(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed49')]
public function testAssertMalformed50(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed50')]
public function testAssertMalformed51(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed51')]
public function testAssertMalformed52(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed52')]
public function testAssertMalformed53(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed53')]
public function testAssertMalformed54(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed54')]
public function testAssertMalformed55(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed55')]
public function testAssertMalformed56(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed56')]
public function testAssertMalformed57(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed57')]
public function testAssertMalformed58(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed58')]
public function testAssertMalformed59(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed59')]
public function testAssertMalformed60(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed60')]
public function testAssertMalformed61(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed61')]
public function testAssertMalformed62(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed62')]
public function testAssertMalformed63(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed63')]
public function testAssertMalformed64(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed64')]
public function testAssertMalformed65(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed65')]
public function testAssertMalformed66(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed66')]
public function testAssertMalformed67(): void
{
}
#[DoesNotPerformAssertions]
#[Depends('testAssertMalformed67')]
public function testAssertMalformed68(): void
{
}
#[Depends('testAssertMalformed68')]
public function testAssertInvalid69(): void
{
$this->runAssertInvalidCommand(
filename: 'align.69.wasm',
text: 'alignment must not be larger than natural',
line: 306,
);
}
#[Depends('testAssertInvalid69')]
public function testAssertInvalid70(): void
{
$this->runAssertInvalidCommand(
filename: 'align.70.wasm',
text: 'alignment must not be larger than natural',
line: 310,
);
}
#[Depends('testAssertInvalid70')]
public function testAssertInvalid71(): void
{
$this->runAssertInvalidCommand(
filename: 'align.71.wasm',
text: 'alignment must not be larger than natural',
line: 314,
);
}
#[Depends('testAssertInvalid71')]
public function testAssertInvalid72(): void
{
$this->runAssertInvalidCommand(
filename: 'align.72.wasm',
text: 'alignment must not be larger than natural',
line: 318,
);
}
#[Depends('testAssertInvalid72')]
public function testAssertInvalid73(): void
{
$this->runAssertInvalidCommand(
filename: 'align.73.wasm',
text: 'alignment must not be larger than natural',
line: 322,
);
}
#[Depends('testAssertInvalid73')]
public function testAssertInvalid74(): void
{
$this->runAssertInvalidCommand(
filename: 'align.74.wasm',
text: 'alignment must not be larger than natural',
line: 326,
);
}
#[Depends('testAssertInvalid74')]
public function testAssertInvalid75(): void
{
$this->runAssertInvalidCommand(
filename: 'align.75.wasm',
text: 'alignment must not be larger than natural',
line: 330,
);
}
#[Depends('testAssertInvalid75')]
public function testAssertInvalid76(): void
{
$this->runAssertInvalidCommand(
filename: 'align.76.wasm',
text: 'alignment must not be larger than natural',
line: 334,
);
}
#[Depends('testAssertInvalid76')]
public function testAssertInvalid77(): void
{
$this->runAssertInvalidCommand(
filename: 'align.77.wasm',
text: 'alignment must not be larger than natural',
line: 338,
);
}
#[Depends('testAssertInvalid77')]
public function testAssertInvalid78(): void
{
$this->runAssertInvalidCommand(
filename: 'align.78.wasm',
text: 'alignment must not be larger than natural',
line: 342,
);
}
#[Depends('testAssertInvalid78')]
public function testAssertInvalid79(): void
{
$this->runAssertInvalidCommand(
filename: 'align.79.wasm',
text: 'alignment must not be larger than natural',
line: 346,
);
}
#[Depends('testAssertInvalid79')]
public function testAssertInvalid80(): void
{
$this->runAssertInvalidCommand(
filename: 'align.80.wasm',
text: 'alignment must not be larger than natural',
line: 350,
);
}
#[Depends('testAssertInvalid80')]
public function testAssertInvalid81(): void
{
$this->runAssertInvalidCommand(
filename: 'align.81.wasm',
text: 'alignment must not be larger than natural',
line: 354,
);
}
#[Depends('testAssertInvalid81')]
public function testAssertInvalid82(): void
{
$this->runAssertInvalidCommand(
filename: 'align.82.wasm',
text: 'alignment must not be larger than natural',
line: 358,
);
}
#[Depends('testAssertInvalid82')]
public function testAssertInvalid83(): void
{
$this->runAssertInvalidCommand(
filename: 'align.83.wasm',
text: 'alignment must not be larger than natural',
line: 363,
);
}
#[Depends('testAssertInvalid83')]
public function testAssertInvalid84(): void
{
$this->runAssertInvalidCommand(
filename: 'align.84.wasm',
text: 'alignment must not be larger than natural',
line: 367,
);
}
#[Depends('testAssertInvalid84')]
public function testAssertInvalid85(): void
{
$this->runAssertInvalidCommand(
filename: 'align.85.wasm',
text: 'alignment must not be larger than natural',
line: 371,
);
}
#[Depends('testAssertInvalid85')]
public function testAssertInvalid86(): void
{
$this->runAssertInvalidCommand(
filename: 'align.86.wasm',
text: 'alignment must not be larger than natural',
line: 375,
);
}
#[Depends('testAssertInvalid86')]
public function testAssertInvalid87(): void
{
$this->runAssertInvalidCommand(
filename: 'align.87.wasm',
text: 'alignment must not be larger than natural',
line: 379,
);
}
#[Depends('testAssertInvalid87')]
public function testAssertInvalid88(): void
{
$this->runAssertInvalidCommand(
filename: 'align.88.wasm',
text: 'alignment must not be larger than natural',
line: 383,
);
}
#[Depends('testAssertInvalid88')]
public function testAssertInvalid89(): void
{
$this->runAssertInvalidCommand(
filename: 'align.89.wasm',
text: 'alignment must not be larger than natural',
line: 387,
);
}
#[Depends('testAssertInvalid89')]
public function testAssertInvalid90(): void
{
$this->runAssertInvalidCommand(
filename: 'align.90.wasm',
text: 'alignment must not be larger than natural',
line: 391,
);
}
#[Depends('testAssertInvalid90')]
public function testAssertInvalid91(): void
{
$this->runAssertInvalidCommand(
filename: 'align.91.wasm',
text: 'alignment must not be larger than natural',
line: 395,
);
}
#[Depends('testAssertInvalid91')]
public function testAssertInvalid92(): void
{
$this->runAssertInvalidCommand(
filename: 'align.92.wasm',
text: 'alignment must not be larger than natural',
line: 399,
);
}
#[Depends('testAssertInvalid92')]
public function testAssertInvalid93(): void
{
$this->runAssertInvalidCommand(
filename: 'align.93.wasm',
text: 'alignment must not be larger than natural',
line: 403,
);
}
#[Depends('testAssertInvalid93')]
public function testAssertInvalid94(): void
{
$this->runAssertInvalidCommand(
filename: 'align.94.wasm',
text: 'alignment must not be larger than natural',
line: 407,
);
}
#[Depends('testAssertInvalid94')]
public function testAssertInvalid95(): void
{
$this->runAssertInvalidCommand(
filename: 'align.95.wasm',
text: 'alignment must not be larger than natural',
line: 411,
);
}
#[Depends('testAssertInvalid95')]
public function testAssertInvalid96(): void
{
$this->runAssertInvalidCommand(
filename: 'align.96.wasm',
text: 'alignment must not be larger than natural',
line: 415,
);
}
#[Depends('testAssertInvalid96')]
public function testAssertInvalid97(): void
{
$this->runAssertInvalidCommand(
filename: 'align.97.wasm',
text: 'alignment must not be larger than natural',
line: 420,
);
}
#[Depends('testAssertInvalid97')]
public function testAssertInvalid98(): void
{
$this->runAssertInvalidCommand(
filename: 'align.98.wasm',
text: 'alignment must not be larger than natural',
line: 424,
);
}
#[Depends('testAssertInvalid98')]
public function testAssertInvalid99(): void
{
$this->runAssertInvalidCommand(
filename: 'align.99.wasm',
text: 'alignment must not be larger than natural',
line: 428,
);
}
#[Depends('testAssertInvalid99')]
public function testAssertInvalid100(): void
{
$this->runAssertInvalidCommand(
filename: 'align.100.wasm',
text: 'alignment must not be larger than natural',
line: 432,
);
}
#[Depends('testAssertInvalid100')]
public function testAssertInvalid101(): void
{
$this->runAssertInvalidCommand(
filename: 'align.101.wasm',
text: 'alignment must not be larger than natural',
line: 436,
);
}
#[Depends('testAssertInvalid101')]
public function testAssertInvalid102(): void
{
$this->runAssertInvalidCommand(
filename: 'align.102.wasm',
text: 'alignment must not be larger than natural',
line: 440,
);
}
#[Depends('testAssertInvalid102')]
public function testAssertInvalid103(): void
{
$this->runAssertInvalidCommand(
filename: 'align.103.wasm',
text: 'alignment must not be larger than natural',
line: 444,
);
}
#[Depends('testAssertInvalid103')]
public function testAssertInvalid104(): void
{
$this->runAssertInvalidCommand(
filename: 'align.104.wasm',
text: 'alignment must not be larger than natural',
line: 448,
);
}
#[Depends('testAssertInvalid104')]
public function testAssertInvalid105(): void
{
$this->runAssertInvalidCommand(
filename: 'align.105.wasm',
text: 'alignment must not be larger than natural',
line: 452,
);
}
#[Depends('testAssertInvalid105')]
public function testModule106(): void
{
$this->runModuleCommand(
filename: 'align.106.wasm',
name: null,
line: 458,
);
}
#[Depends('testModule106')]
public function testAssertReturn107(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f32_align_switch', 'args' => [['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'f32', 'value' => '1092616192']],
line: 802,
);
}
#[Depends('testAssertReturn107')]
public function testAssertReturn108(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f32_align_switch', 'args' => [['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'f32', 'value' => '1092616192']],
line: 803,
);
}
#[Depends('testAssertReturn108')]
public function testAssertReturn109(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f32_align_switch', 'args' => [['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'f32', 'value' => '1092616192']],
line: 804,
);
}
#[Depends('testAssertReturn109')]
public function testAssertReturn110(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f32_align_switch', 'args' => [['type' => 'i32', 'value' => '3']]],
expected: [['type' => 'f32', 'value' => '1092616192']],
line: 805,
);
}
#[Depends('testAssertReturn110')]
public function testAssertReturn111(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f64_align_switch', 'args' => [['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'f64', 'value' => '4621819117588971520']],
line: 807,
);
}
#[Depends('testAssertReturn111')]
public function testAssertReturn112(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f64_align_switch', 'args' => [['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'f64', 'value' => '4621819117588971520']],
line: 808,
);
}
#[Depends('testAssertReturn112')]
public function testAssertReturn113(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f64_align_switch', 'args' => [['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'f64', 'value' => '4621819117588971520']],
line: 809,
);
}
#[Depends('testAssertReturn113')]
public function testAssertReturn114(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f64_align_switch', 'args' => [['type' => 'i32', 'value' => '3']]],
expected: [['type' => 'f64', 'value' => '4621819117588971520']],
line: 810,
);
}
#[Depends('testAssertReturn114')]
public function testAssertReturn115(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'f64_align_switch', 'args' => [['type' => 'i32', 'value' => '4']]],
expected: [['type' => 'f64', 'value' => '4621819117588971520']],
line: 811,
);
}
#[Depends('testAssertReturn115')]
public function testAssertReturn116(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '0'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 813,
);
}
#[Depends('testAssertReturn116')]
public function testAssertReturn117(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '0'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 814,
);
}
#[Depends('testAssertReturn117')]
public function testAssertReturn118(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '1'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 815,
);
}
#[Depends('testAssertReturn118')]
public function testAssertReturn119(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '1'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 816,
);
}
#[Depends('testAssertReturn119')]
public function testAssertReturn120(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '2'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 817,
);
}
#[Depends('testAssertReturn120')]
public function testAssertReturn121(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '2'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 818,
);
}
#[Depends('testAssertReturn121')]
public function testAssertReturn122(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '2'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 819,
);
}
#[Depends('testAssertReturn122')]
public function testAssertReturn123(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '3'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 820,
);
}
#[Depends('testAssertReturn123')]
public function testAssertReturn124(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '3'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 821,
);
}
#[Depends('testAssertReturn124')]
public function testAssertReturn125(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '3'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 822,
);
}
#[Depends('testAssertReturn125')]
public function testAssertReturn126(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 823,
);
}
#[Depends('testAssertReturn126')]
public function testAssertReturn127(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 824,
);
}
#[Depends('testAssertReturn127')]
public function testAssertReturn128(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 825,
);
}
#[Depends('testAssertReturn128')]
public function testAssertReturn129(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i32_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '4']]],
expected: [['type' => 'i32', 'value' => '10']],
line: 826,
);
}
#[Depends('testAssertReturn129')]
public function testAssertReturn130(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '0'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 828,
);
}
#[Depends('testAssertReturn130')]
public function testAssertReturn131(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '0'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 829,
);
}
#[Depends('testAssertReturn131')]
public function testAssertReturn132(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '1'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 830,
);
}
#[Depends('testAssertReturn132')]
public function testAssertReturn133(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '1'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 831,
);
}
#[Depends('testAssertReturn133')]
public function testAssertReturn134(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '2'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 832,
);
}
#[Depends('testAssertReturn134')]
public function testAssertReturn135(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '2'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 833,
);
}
#[Depends('testAssertReturn135')]
public function testAssertReturn136(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '2'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 834,
);
}
#[Depends('testAssertReturn136')]
public function testAssertReturn137(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '3'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 835,
);
}
#[Depends('testAssertReturn137')]
public function testAssertReturn138(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '3'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 836,
);
}
#[Depends('testAssertReturn138')]
public function testAssertReturn139(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '3'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 837,
);
}
#[Depends('testAssertReturn139')]
public function testAssertReturn140(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 838,
);
}
#[Depends('testAssertReturn140')]
public function testAssertReturn141(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 839,
);
}
#[Depends('testAssertReturn141')]
public function testAssertReturn142(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 840,
);
}
#[Depends('testAssertReturn142')]
public function testAssertReturn143(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '4'], ['type' => 'i32', 'value' => '4']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 841,
);
}
#[Depends('testAssertReturn143')]
public function testAssertReturn144(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '5'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 842,
);
}
#[Depends('testAssertReturn144')]
public function testAssertReturn145(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '5'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 843,
);
}
#[Depends('testAssertReturn145')]
public function testAssertReturn146(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '5'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 844,
);
}
#[Depends('testAssertReturn146')]
public function testAssertReturn147(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '5'], ['type' => 'i32', 'value' => '4']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 845,
);
}
#[Depends('testAssertReturn147')]
public function testAssertReturn148(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '6'], ['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 846,
);
}
#[Depends('testAssertReturn148')]
public function testAssertReturn149(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '6'], ['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 847,
);
}
#[Depends('testAssertReturn149')]
public function testAssertReturn150(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '6'], ['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 848,
);
}
#[Depends('testAssertReturn150')]
public function testAssertReturn151(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '6'], ['type' => 'i32', 'value' => '4']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 849,
);
}
#[Depends('testAssertReturn151')]
public function testAssertReturn152(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'i64_align_switch', 'args' => [['type' => 'i32', 'value' => '6'], ['type' => 'i32', 'value' => '8']]],
expected: [['type' => 'i64', 'value' => '10']],
line: 850,
);
}
#[Depends('testAssertReturn152')]
public function testModule153(): void
{
$this->runModuleCommand(
filename: 'align.107.wasm',
name: null,
line: 854,
);
}
#[Depends('testModule153')]
public function testAssertTrap154(): void
{
$this->runAssertTrapCommand(
action: ['type' => 'invoke', 'field' => 'store', 'args' => [['type' => 'i32', 'value' => '65532'], ['type' => 'i64', 'value' => '18446744073709551615']]],
text: 'out of bounds memory access',
line: 864,
);
}
#[Depends('testAssertTrap154')]
public function testAssertReturn155(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'load', 'args' => [['type' => 'i32', 'value' => '65532']]],
expected: [['type' => 'i32', 'value' => '0']],
line: 866,
);
}
#[Depends('testAssertReturn155')]
public function testAssertInvalid156(): void
{
$this->runAssertInvalidCommand(
filename: 'align.108.wasm',
text: 'alignment must not be larger than natural',
line: 873,
);
}
#[Depends('testAssertInvalid156')]
public function testAssertMalformed157(): void
{
$this->runAssertMalformedCommand(
filename: 'align.109.wasm',
text: 'malformed memop flags',
line: 892,
);
}
#[Depends('testAssertMalformed157')]
public function testAssertMalformed158(): void
{
$this->runAssertMalformedCommand(
filename: 'align.110.wasm',
text: 'malformed memop flags',
line: 911,
);
}
#[Depends('testAssertMalformed158')]
public function testAssertMalformed159(): void
{
$this->runAssertMalformedCommand(
filename: 'align.111.wasm',
text: 'malformed memop flags',
line: 930,
);
}
#[Depends('testAssertMalformed159')]
public function testAssertMalformed160(): void
{
$this->runAssertMalformedCommand(
filename: 'align.112.wasm',
text: 'malformed memop flags',
line: 949,
);
}
#[Depends('testAssertMalformed160')]
public function testAssertMalformed161(): void
{
$this->runAssertMalformedCommand(
filename: 'align.113.wasm',
text: 'malformed memop flags',
line: 968,
);
}
}
|