-
Notifications
You must be signed in to change notification settings - Fork 323
/
Copy pathvalidInvalidFiller.yml
1217 lines (1161 loc) · 50.8 KB
/
validInvalidFiller.yml
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
validInvalid:
_info:
comment: |
Test various examples to see if they are valid or invalid.
Implements
EOF1V4200_0001 (Valid) EOF code containing RJUMP (Positive, Negative)
EOF1V4200_0002 (Valid) EOF code containing RJUMP (Zero)
EOF1V4200_0003 (Valid) EOF code containing RJUMPI (Positive)
EOF1V4200_0004 (Valid) EOF code containing RJUMPI (Negative)
EOF1V4200_0005 (Valid) EOF code containing RJUMPI (Zero)
EOF1V4200_0006 (Valid) EOF with RJUMPV table size 1 (Positive)
EOF1V4200_0007 (Valid) EOF with RJUMPV table size 1 (Negative)
EOF1V4200_0008 (Valid) EOF with RJUMPV table size 1 (Zero)
EOF1V4200_0009 (Valid) EOF with RJUMPV table size 3
EOF1V4200_0010 (Valid) EOF with RJUMPV table size 255 (Target 0)
EOF1V4200_0011 (Valid) EOF with RJUMPV table size 255 (Target 100)
EOF1V4200_0012 (Valid) EOF with RJUMPV table size 255 (Target 254)
EOF1V4200_0013 (Valid) EOF with RJUMPV table size 255 (Target 256)
EOF1I4200_0001 (Invalid) EOF code containing truncated RJUMP
EOF1I4200_0002 (Invalid) EOF code containing truncated RJUMP
EOF1I4200_0003 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping into header)
EOF1I4200_0004 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping before code begin)
EOF1I4200_0005 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping into data section)
EOF1I4200_0006 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping after code end)
EOF1I4200_0007 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping to code end)
EOF1I4200_0008 (Invalid) EOF code containing RJUMP with target self RJUMP immediate
EOF1I4200_0009 (Invalid) EOF code containing RJUMP with target other RJUMP immediate
EOF1I4200_0010 (Invalid) EOF code containing RJUMP with target RJUMPI immediate
EOF1I4200_0011 (Invalid) EOF code containing RJUMP with target PUSH immediate
EOF1I4200_0012 (Invalid) EOF code containing RJUMP with target RJUMPV immediate
EOF1I4200_0013 (Invalid) EOF code containing RJUMP with target CALLF immediate
EOF1I4200_0014 (Invalid) EOF code containing truncated RJUMPI
EOF1I4200_0015 (Invalid) EOF code containing truncated RJUMPI
EOF1I4200_0016 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping into header)
EOF1I4200_0017 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping to before code begin)
EOF1I4200_0018 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping into data section)
EOF1I4200_0019 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping to after code end)
EOF1I4200_0020 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping to code end)
EOF1I4200_0021 (Invalid) EOF code containing RJUMPI with target same RJUMPI immediate
EOF1I4200_0022 (Invalid) EOF code containing RJUMPI with target other RJUMPI immediate
EOF1I4200_0023 (Invalid) EOF code containing RJUMPI with target RJUMP immediate
EOF1I4200_0024 (Invalid) EOF code containing RJUMPI with target PUSH immediate
EOF1I4200_0025 (Invalid) EOF code containing RJUMPI with target RJUMPV immediate
EOF1I4200_0026 (Invalid) EOF code containing RJUMPI with target CALLF immediate
EOF1I4200_0027 (Invalid) EOF code containing RJUMPV with count 0 and zero immediates
EOF1I4200_0028 (Invalid) EOF code containing RJUMPV with count 0 and one immediates
EOF1I4200_0029 (Invalid) EOF code containing truncated RJUMPV
EOF1I4200_0030 (Invalid) EOF code containing truncated RJUMPV
EOF1I4200_0031 (Invalid) EOF code containing truncated RJUMPV
EOF1I4200_0032 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping into header)
EOF1I4200_0033 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping to before code begin)
EOF1I4200_0034 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping into data section)
EOF1I4200_0035 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping to after code end)
EOF1I4200_0036 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping to code end)
EOF1I4200_0037 (Invalid) EOF code containing RJUMPV with target same RJUMPV immediate
EOF1I4200_0038 (Invalid) EOF code containing RJUMPV with target RJUMP immediate
EOF1I4200_0039 (Invalid) EOF code containing RJUMPV with target RJUMPI immediate
EOF1I4200_0040 (Invalid) EOF code containing RJUMPV with target PUSH immediate
EOF1I4200_0041 (Invalid) EOF code containing RJUMPV with target other RJUMPV immediate
EOF1I4200_0042 (Invalid) EOF code containing RJUMPV with target CALLF immediate
forks:
- ">=Shanghai"
vectors:
# EOF1V4200_0001 (Valid) EOF code containing RJUMP (Positive, Negative)
# Code: RJUMP(push) save: SSTORE STOP push: PUSH1(1) PUSH1(1) RJUMP(save)
- data: |
:label EOF1V4200_0001 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000c # Code section 0 , 12 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
5c0002 # RJUMP(2)
55 # SSTORE
00 # STOP
6001 # PUSH1(1)
6001 # PUSH1(1)
5cfff7 # RJUMP(-9)
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0002 (Valid) EOF code containing RJUMP (Zero)
# Code: RJUMP(0) PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0002 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0009 # Code section 0 , 9 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
5c0000 # RJUMP(0)
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0003 (Valid) EOF code containing RJUMPI (Positive)
# Code: PUSH1(1) RJUMPI(3) NOP NOP STOP PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0003 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000e # Code section 0 , 14 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
6001 # PUSH1(1)
5d0003 # RJUMPI(3)
5b # NOP
5b # NOP
00 # STOP
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0004 (Valid) EOF code containing RJUMPI (Negative)
# Code: RJUMP(positive) negative: PUSH1(1) PUSH1(1) SSTORE STOP positive: PUSH1(1) RJUMPI(negative) STOP
- data: |
:label EOF1V4200_0004 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000f # Code section 0 , 15 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
5c0006 # RJUMP(6)
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
6001 # PUSH1(1)
5dfff5 # RJUMPI(-11)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0005 (Valid) EOF code containing RJUMPI (Zero)
# Code: PUSH1(1) RJUMPI(0) PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0005 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000b # Code section 0 , 11 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
6001 # PUSH1(1)
5d0000 # RJUMPI(0)
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0006 (Valid) EOF with RJUMPV table size 1 (Positive)
# Code: PUSH1(0) RJUMPV(3) NOP NOP STOP PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0006 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000f # Code section 0 , 15 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
6000 # PUSH1(0)
5e010003 # RJUMPV(3,
5b # NOP
5b # NOP
00 # STOP
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0007 (Valid) EOF with RJUMPV table size 1 (Negative)
# Code: RJUMP(positive) negative: PUSH1(1) PUSH1(1) SSTORE STOP positive: PUSH1(0) RJUMPV(negative) STOP
- data: |
:label EOF1V4200_0007 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0010 # Code section 0 , 16 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
5c0006 # RJUMP(6)
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
6000 # PUSH1(0)
5e01fff4 # RJUMPV(-12,
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0008 (Valid) EOF with RJUMPV table size 1 (Zero)
# Code: PUSH1(0) RJUMPV(0) PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0008 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000c # Code section 0 , 12 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
6000 # PUSH1(0)
5e010000 # RJUMPV(0,
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0009 (Valid) EOF with RJUMPV table size 3
# Code: PUSH1(0) RJUMPV(3,0,-10) NOP NOP STOP PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0009 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0013 # Code section 0 , 19 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
6000 # PUSH1(0)
5e0300030000fff6 # RJUMPV(3,0,-10)
5b # NOP
5b # NOP
00 # STOP
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0010 (Valid) EOF with RJUMPV table size 255 (Target 0)
# Code: PUSH1(0) RJUMPV(random 255 offsets) NOP * 255 STOP PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0010 :raw 0xef00010100040200010308030000000000000260005eff010000c600690073005100ff004a00ec002900cd00ba00ab00f200fb00e30046007c00c2005400f8001b00e800e7008d0076005a002e00630033009f00c9009a00660032000d00b70031005800a3005a0025005d00050017005800e9005e00d400ab00b200cd00c6009b00b400540011000e0082007400410021003d00dc0087007000e9003e00a1004100e100fc0067003e0001007e009700ea00dc006b0096008f0038005c002a00ec00b0003b00fb003200af003c005400ec001800db005c0002001a00fe004300fb00fa00aa003a00fb002900d100e60005003c007c0094007500d800be0061008900f9005c00bb00a80099000f009500b100eb00f100b3000500ef00f7000000e900a1003a00e500ca000b00cb00d000480047006400bd001f0023001e00a8001c007b006400c500140073005a00c5005e004b00790063003b0070006400240011009e000900dc00aa00d400ac00f2001b001000af003b003300cd00e30050004800470015005c00bb006f0022001900ba009b007d00f5000b00e1001a001c007f002300f8002900f800a4001b001300b500ca004e00e800980032003800e00079004d003d003400bc005f004e007700fa00cb006c000500ac00860021002b00aa001a005500a200be007000b50073003b0004005c00d30036009400b300af00e200f000e4009e004f00320015004900fd008200ff5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b00600160015500
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0011 (Valid) EOF with RJUMPV table size 255 (Target 100)
# Code: PUSH1(100) RJUMPV(random 255 offsets) NOP * 255 STOP PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0011 :raw 0xef00010100040200010308030000000000000260645eff006700c600690073005100ff004a00ec002900cd00ba00ab00f200fb00e30046007c00c2005400f8001b00e800e7008d0076005a002e00630033009f00c9009a00660032000d00b70031005800a3005a0025005d00050017005800e9005e00d400ab00b200cd00c6009b00b400540011000e0082007400410021003d00dc0087007000e9003e00a1004100e100fc0067003e0001007e009700ea00dc006b0096008f0038005c002a00ec00b0003b00fb003200af003c005400ec001800db005c0002001a00fe0043010000fa00aa003a00fb002900d100e60005003c007c0094007500d800be0061008900f9005c00bb00a80099000f009500b100eb00f100b3000500ef00f7000000e900a1003a00e500ca000b00cb00d000480047006400bd001f0023001e00a8001c007b006400c500140073005a00c5005e004b00790063003b0070006400240011009e000900dc00aa00d400ac00f2001b001000af003b003300cd00e30050004800470015005c00bb006f0022001900ba009b007d00f5000b00e1001a001c007f002300f8002900f800a4001b001300b500ca004e00e800980032003800e00079004d003d003400bc005f004e007700fa00cb006c000500ac00860021002b00aa001a005500a200be007000b50073003b0004005c00d30036009400b300af00e200f000e4009e004f00320015004900fd008200ff5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b00600160015500
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0012 (Valid) EOF with RJUMPV table size 255 (Target 254)
# Code: PUSH1(254) RJUMPV(random 255 offsets) NOP * 255 STOP PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0012 :raw 0xef00010100040200010308030000000000000260fe5eff006700c600690073005100ff004a00ec002900cd00ba00ab00f200fb00e30046007c00c2005400f8001b00e800e7008d0076005a002e00630033009f00c9009a00660032000d00b70031005800a3005a0025005d00050017005800e9005e00d400ab00b200cd00c6009b00b400540011000e0082007400410021003d00dc0087007000e9003e00a1004100e100fc0067003e0001007e009700ea00dc006b0096008f0038005c002a00ec00b0003b00fb003200af003c005400ec001800db005c0002001a00fe004300fb00fa00aa003a00fb002900d100e60005003c007c0094007500d800be0061008900f9005c00bb00a80099000f009500b100eb00f100b3000500ef00f7000000e900a1003a00e500ca000b00cb00d000480047006400bd001f0023001e00a8001c007b006400c500140073005a00c5005e004b00790063003b0070006400240011009e000900dc00aa00d400ac00f2001b001000af003b003300cd00e30050004800470015005c00bb006f0022001900ba009b007d00f5000b00e1001a001c007f002300f8002900f800a4001b001300b500ca004e00e800980032003800e00079004d003d003400bc005f004e007700fa00cb006c000500ac00860021002b00aa001a005500a200be007000b50073003b0004005c00d30036009400b300af00e200f000e4009e004f00320015004900fd008201005b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b00600160015500
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1V4200_0013 (Valid) EOF with RJUMPV table size 255 (Target 256)
# Code: PUSH2(256) RJUMPV(random 255 offsets) NOP * 255 PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1V4200_0013 :raw 0xef0001010004020001030803000000000000026101005eff006700c600690073005100ff004a00ec002900cd00ba00ab00f200fb00e30046007c00c2005400f8001b00e800e7008d0076005a002e00630033009f00c9009a00660032000d00b70031005800a3005a0025005d00050017005800e9005e00d400ab00b200cd00c6009b00b400540011000e0082007400410021003d00dc0087007000e9003e00a1004100e100fc0067003e0001007e009700ea00dc006b0096008f0038005c002a00ec00b0003b00fb003200af003c005400ec001800db005c0002001a00fe004300fb00fa00aa003a00fb002900d100e60005003c007c0094007500d800be0061008900f9005c00bb00a80099000f009500b100eb00f100b3000500ef00f7000000e900a1003a00e500ca000b00cb00d000480047006400bd001f0023001e00a8001c007b006400c500140073005a00c5005e004b00790063003b0070006400240011009e000900dc00aa00d400ac00f2001b001000af003b003300cd00e30050004800470015005c00bb006f0022001900ba009b007d00f5000b00e1001a001c007f002300f8002900f800a4001b001300b500ca004e00e800980032003800e00079004d003d003400bc005f004e007700fa00cb006c000500ac00860021002b00aa001a005500a200be007000b50073003b0004005c00d30036009400b300af00e200f000e4009e004f00320015004900fd008200ff5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b600160015500
expectException:
"Shanghai" : "EOF_InvalidCode"
# EOF1I4200_0001 (Invalid) EOF code containing truncated RJUMP
# Code: RJUMP
- data: |
:label EOF1I4200_0001 :raw 0xef0001010004020001000103000000000000005c
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_TruncatedImmediate"
# EOF1I4200_0002 (Invalid) EOF code containing truncated RJUMP
# Code: RJUMP(0?
- data: |
:label EOF1I4200_0002 :raw 0xef0001010004020001000203000000000000005c00
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_TruncatedImmediate"
# EOF1I4200_0003 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping into header)
# Code: RJUMP(-5)
- data: |
:label EOF1I4200_0003 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0003 # Code section 0 , 3 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5cfffb # RJUMP(-5)
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0004 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping before code begin)
# Code: RJUMP(-23)
- data: |
:label EOF1I4200_0004 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0003 # Code section 0 , 3 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5cffe9 # RJUMP(-23)
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0005 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping into data section)
# Code: RJUMP(2)
# Data: aabbccdd
- data: |
:label EOF1I4200_0005 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0003 # Code section 0 , 3 bytes
030004 # Data section length ( 4 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5c0002 # RJUMP(2)
# Data section
aabbccdd
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0006 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping after code end)
# Code: RJUMP(2)
- data: |
:label EOF1I4200_0006 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0003 # Code section 0 , 3 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5c0002 # RJUMP(2)
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0007 (Invalid) EOF code containing RJUMP with target outside code bounds (Jumping to code end)
# Code: RJUMP(1) STOP
- data: |
:label EOF1I4200_0007 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0004 # Code section 0 , 4 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5c0001 # RJUMP(1)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0008 (Invalid) EOF code containing RJUMP with target self RJUMP immediate
# Code: RJUMP(-1)
- data: |
:label EOF1I4200_0008 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0003 # Code section 0 , 3 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5cffff # RJUMP(-1)
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0009 (Invalid) EOF code containing RJUMP with target other RJUMP immediate
# Code: RJUMP(3) STOP RJUMP(-4)
- data: |
:label EOF1I4200_0009 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0007 # Code section 0 , 7 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5c0003 # RJUMP(3)
00 # STOP
5cfffc # RJUMP(-4)
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0010 (Invalid) EOF code containing RJUMP with target RJUMPI immediate
# Code: RJUMP(5) STOP PUSH1(1) RJUMPI(-6) STOP
- data: |
:label EOF1I4200_0010 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000a # Code section 0 , 10 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5c0005 # RJUMP(5)
00 # STOP
6001 # PUSH1(1)
5dfffa # RJUMPI(-6)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0011 (Invalid) EOF code containing RJUMP with target PUSH immediate
# Code: RJUMP(2) NOP PUSH1(1) PUSH1(1) SSTORE STOP
- data: |
:label EOF1I4200_0011 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000a # Code section 0 , 10 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5c0002 # RJUMP(2)
5b # NOP
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0012 (Invalid) EOF code containing RJUMP with target RJUMPV immediate
# Code: RJUMP(5) STOP PUSH1(1) RJUMPV(0) STOP
- data: |
:label EOF1I4200_0012 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000b # Code section 0 , 11 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code section 0
5c0005 # RJUMP(5)
00 # STOP
6001 # PUSH1(1)
5e010000 # RJUMPV(0,
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0013 (Invalid) EOF code containing RJUMP with target CALLF immediate
# Code[0](Types: 0:0): RJUMP(2) CALLF(1) STOP
# Code[1](Types: 0:0): PUSH1(1) PUSH1(1) SSTORE RETF
- data: |
:label EOF1I4200_0013 :raw 0x
EF0001 # Magic and Version ( 1 )
010008 # Types length ( 8 )
020002 # Total code sections ( 2 )
0007 # Code section 0 , 7 bytes
0006 # Code section 1 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0000 # max stack: 0
# Code 1 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
5c0002 # RJUMP(2)
b00001 # CALLF(1)
00 # STOP
# Code section 1
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
b1 # RETF
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0014 (Invalid) EOF code containing truncated RJUMPI
# Code: PUSH1(0) RJUMPI
- data: |
:label EOF1I4200_0014 :raw 0xef00010100040200010003030000000000000160005d
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_TruncatedImmediate"
# EOF1I4200_0015 (Invalid) EOF code containing truncated RJUMPI
# Code: PUSH1(0) RJUMPI(0?
- data: |
:label EOF1I4200_0015 :raw 0xef00010100040200010004030000000000000160005d00
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_TruncatedImmediate"
# EOF1I4200_0016 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping into header)
# Code: PUSH1(1) RJUMPI(-7) STOP
- data: |
:label EOF1I4200_0016 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0006 # Code section 0 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5dfff9 # RJUMPI(-7)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0017 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping to before code begin)
# Code: PUSH1(1) RJUMPI(-25) STOP
- data: |
:label EOF1I4200_0017 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0006 # Code section 0 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5dffe7 # RJUMPI(-25)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0018 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping into data section)
# Code: PUSH1(1) RJUMPI(2) STOP
# Data: aabbccdd
- data: |
:label EOF1I4200_0018 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0006 # Code section 0 , 6 bytes
030004 # Data section length ( 4 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5d0002 # RJUMPI(2)
00 # STOP
# Data section
aabbccdd
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0019 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping to after code end)
# Code: PUSH1(1) RJUMPI(2) STOP
- data: |
:label EOF1I4200_0019 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0006 # Code section 0 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5d0002 # RJUMPI(2)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0020 (Invalid) EOF code containing RJUMPI with target outside code bounds (Jumping to code end)
# Code: PUSH1(1) RJUMPI(1) STOP
- data: |
:label EOF1I4200_0020 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0006 # Code section 0 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5d0001 # RJUMPI(1)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0021 (Invalid) EOF code containing RJUMPI with target same RJUMPI immediate
# Code: PUSH1(1) RJUMPI(-1) STOP
- data: |
:label EOF1I4200_0021 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0006 # Code section 0 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5dffff # RJUMPI(-1)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0022 (Invalid) EOF code containing RJUMPI with target other RJUMPI immediate
# Code: PUSH1(1) RJUMPI(5) STOP PUSH1(1) RJUMPI(-11) STOP
- data: |
:label EOF1I4200_0022 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000c # Code section 0 , 12 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5d0005 # RJUMPI(5)
00 # STOP
6001 # PUSH1(1)
5dfff5 # RJUMPI(-11)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0023 (Invalid) EOF code containing RJUMPI with target RJUMP immediate
# Code: PUSH1(1) RJUMPI(3) STOP RJUMP(-9)
- data: |
:label EOF1I4200_0023 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0009 # Code section 0 , 9 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5d0003 # RJUMPI(3)
00 # STOP
5cfff7 # RJUMP(-9)
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0024 (Invalid) EOF code containing RJUMPI with target PUSH immediate
# Code: PUSH1(1) RJUMPI(-4) STOP
- data: |
:label EOF1I4200_0024 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0006 # Code section 0 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5dfffc # RJUMPI(-4)
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0025 (Invalid) EOF code containing RJUMPI with target RJUMPV immediate
# Code: PUSH1(1) RJUMPI(5) STOP PUSH1(1) RJUMPV(0) STOP
- data: |
:label EOF1I4200_0025 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
000d # Code section 0 , 13 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5d0005 # RJUMPI(5)
00 # STOP
6001 # PUSH1(1)
5e010000 # RJUMPV(0,
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0026 (Invalid) EOF code containing RJUMPI with target CALLF immediate
# Code[0](Types: 0:0): PUSH1(1) RJUMPI(2) CALLF(1) STOP
# Code[1](Types: 0:0): PUSH1(1) PUSH1(1) SSTORE RETF
- data: |
:label EOF1I4200_0026 :raw 0x
EF0001 # Magic and Version ( 1 )
010008 # Types length ( 8 )
020002 # Total code sections ( 2 )
0009 # Code section 0 , 9 bytes
0006 # Code section 1 , 6 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code 1 types
00 # 0 inputs
00 # 0 outputs
0002 # max stack: 2
# Code section 0
6001 # PUSH1(1)
5d0002 # RJUMPI(2)
b00001 # CALLF(1)
00 # STOP
# Code section 1
6001 # PUSH1(1)
6001 # PUSH1(1)
55 # SSTORE
b1 # RETF
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0027 (Invalid) EOF code containing RJUMPV with count 0 and zero immediates
# Code: PUSH1(1) RJUMPV
- data: |
:label EOF1I4200_0027 :raw 0xef00010100040200010004030000000000000160015e00
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpTableCount"
# EOF1I4200_0028 (Invalid) EOF code containing RJUMPV with count 0 and one immediates
# Code: PUSH1(1) RJUMPV
- data: |
:label EOF1I4200_0028 :raw 0xef00010100040200010006030000000000000160015e000000
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpTableCount"
# EOF1I4200_0029 (Invalid) EOF code containing truncated RJUMPV
# Code: PUSH1(1) RJUMPV
- data: |
:label EOF1I4200_0029 :raw 0xef00010100040200010003030000000000000160015e
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_TruncatedImmediate"
# EOF1I4200_0030 (Invalid) EOF code containing truncated RJUMPV
# Code: PUSH1(1) RJUMPV(
- data: |
:label EOF1I4200_0030 :raw 0xef00010100040200010004030000000000000160015e01
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_TruncatedImmediate"
# EOF1I4200_0031 (Invalid) EOF code containing truncated RJUMPV
# Code: PUSH1(1) RJUMPV(0?
- data: |
:label EOF1I4200_0031 :raw 0xef00010100040200010005030000000000000160015e0100
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_TruncatedImmediate"
# EOF1I4200_0032 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping into header)
# Code: PUSH1(1) RJUMPV(-7) STOP
- data: |
:label EOF1I4200_0032 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0007 # Code section 0 , 7 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5e01fff9 # RJUMPV(-7,
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0033 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping to before code begin)
# Code: PUSH1(1) RJUMPV(-15) STOP
- data: |
:label EOF1I4200_0033 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0007 # Code section 0 , 7 bytes
030000 # Data section length ( 0 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0
6001 # PUSH1(1)
5e01fff1 # RJUMPV(-15,
00 # STOP
# Data section (empty)
expectException:
"Shanghai" : "EOF_InvalidCode"
">=Cancun" : "EOF_InvalidJumpDestination"
# EOF1I4200_0034 (Invalid) EOF code containing RJUMPV with target outside code bounds (Jumping into data section)
# Code: PUSH1(1) RJUMPV(2) STOP
# Data: aabbccdd
- data: |
:label EOF1I4200_0034 :raw 0x
EF0001 # Magic and Version ( 1 )
010004 # Types length ( 4 )
020001 # Total code sections ( 1 )
0007 # Code section 0 , 7 bytes
030004 # Data section length ( 4 )
00 # Terminator (end of header)
# Code 0 types
00 # 0 inputs
00 # 0 outputs
0001 # max stack: 1
# Code section 0