aboutsummaryrefslogtreecommitdiffstats
path: root/execute.py
blob: 97434e946ab4361591eb885e05bfd39b504f3bc4 (plain) (blame)
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
from opcodes import *
from utils import Colors, ror, rol
import numpy as np
import math


class Label:
    def __init__(self, arity, name):
        self.arity = arity
        self.name = name


class Frame:
    def __init__(self, arity, local_indices, self_ref):
        self.arity = arity
        self.local_indices = local_indices
        self.self_ref = self_ref


# takes the machinestate, opcode and operand to run. updates the machinestate
class Execute:  # pragma: no cover
    def __init__(self, machinestate):
        self.machinestate = machinestate
        self.opcodeint = ""
        self.immediates = []
        self.op_gas = int()
        self.stack_top = []

    def getOPGas(self):
        return self.op_gas

    def chargeGasMem(self, mem_size_page):
        # factor = 64
        self.op_gas += 64 * mem_size_page

    def chargeGas(self, opcodeint):
        if opcodeint != 64:
            self.op_gas += 1
        else:
            chargeGasMem()

    def getInstruction(self, opcodeint, immediates):
        self.opcodeint = opcodeint
        dummy = []
        # FIXME-why is it being cast to int?
        for i in immediates:
            dummy.append(int(i))
        self.immediates = dummy

    def callExecuteMethod(self):
        runmethod = self.instructionUnwinder(
            self.opcodeint, self.immediates, self.machinestate
        )
        # print (repr(hex(self.opcodeint)) + ' ' + repr(self.immediates))
        try:
            runmethod(self.opcodeint, self.immediates)
        except IndexError:
            # trap
            print(Colors.red + "bad stack access." + Colors.ENDC)
            # val2 = self.machinestate.Stack_Omni.pop()

    def instructionUnwinder(self, opcodeint, immediates, machinestate):
        self.chargeGas(opcodeint)

        if opcodeint == 0:
            return self.run_unreachable
        elif opcodeint == 1:
            return self.run_nop
        elif opcodeint == 2:
            return self.run_block
        elif opcodeint == 3:
            return self.run_loop
        elif opcodeint == 4:
            return self.run_if
        elif opcodeint == 5:
            return self.run_else
        elif opcodeint == 11:
            return self.run_end
        elif opcodeint == 12:
            return self.run_br
        elif opcodeint == 13:
            return self.run_br_if
        elif opcodeint == 14:
            return self.run_br_table
        elif opcodeint == 15:
            return self.run_return
        elif opcodeint == 16:
            return self.run_call
        elif opcodeint == 17:
            return self.run_call_indirect
        elif opcodeint == 26:
            return self.run_drop
        elif opcodeint == 27:
            return self.run_select
        elif opcodeint == 32:
            return self.run_getlocal
        elif opcodeint == 33:
            return self.run_setlocal
        elif opcodeint == 34:
            return self.run_teelocal
        elif opcodeint == 35:
            return self.run_getglobal
        elif opcodeint == 36:
            return self.run_setglobal
        elif opcodeint >= 40 and opcodeint <= 53:
            return self.run_load
        elif opcodeint >= 54 and opcodeint <= 62:
            return self.run_store
        elif opcodeint == 63:
            return self.run_current_memory
        elif opcodeint == 64:
            self.chargeGasMem(immediates[0])
            return self.run_grow_memory
        elif opcodeint >= 65 and opcodeint <= 68:
            return self.run_const
        elif opcodeint == 69 or opcodeint == 80:
            return self.run_eqz
        elif (
            opcodeint == 70
            or opcodeint == 81
            or opcodeint == 91
            or opcodeint == 97
        ):
            return self.run_eq
        elif (
            opcodeint == 71
            or opcodeint == 82
            or opcodeint == 92
            or opcodeint == 98
        ):
            return self.run_ne
        elif opcodeint == 72 or opcodeint == 83:
            return self.run_lt_s
        elif opcodeint == 73 or opcodeint == 84:
            return self.run_lt_u
        elif opcodeint == 74 or opcodeint == 85:
            return self.run_gt_s
        elif opcodeint == 75 or opcodeint == 86:
            return self.run_gt_u
        elif opcodeint == 76 or opcodeint == 87:
            return self.run_le_s
        elif opcodeint == 77 or opcodeint == 88:
            return self.run_le_u
        elif opcodeint == 78 or opcodeint == 89:
            return self.run_ge_s
        elif opcodeint == 79 or opcodeint == 90:
            return self.run_ge_u
        elif opcodeint == 93 or opcodeint == 99:
            return self.run_lt
        elif opcodeint == 94 or opcodeint == 100:
            return self.run_gt
        elif opcodeint == 95 or opcodeint == 101:
            return self.run_le
        elif opcodeint == 96 or opcodeint == 102:
            return self.run_ge
        elif opcodeint == 103 or opcodeint == 121:
            return self.run_clz
        elif opcodeint == 104 or opcodeint == 122:
            return self.run_ctz
        elif opcodeint == 105 or opcodeint == 123:
            return self.run_popcnt
        elif (
            opcodeint == 106
            or opcodeint == 124
            or opcodeint == 146
            or opcodeint == 160
        ):
            return self.run_add
        elif (
            opcodeint == 107
            or opcodeint == 125
            or opcodeint == 147
            or opcodeint == 161
        ):
            return self.run_sub
        elif (
            opcodeint == 108
            or opcodeint == 126
            or opcodeint == 148
            or opcodeint == 162
        ):
            return self.run_mul
        elif opcodeint == 109 or opcodeint == 127:
            return self.run_div_s
        elif opcodeint == 110 or opcodeint == 128:
            return self.run_div_u
        elif opcodeint == 111 or opcodeint == 129:
            return self.run_rem_s
        elif opcodeint == 112 or opcodeint == 130:
            return self.run_rem_u
        elif opcodeint == 113 or opcodeint == 131:
            return self.run_and
        elif opcodeint == 114 or opcodeint == 132:
            return self.run_or
        elif opcodeint == 115 or opcodeint == 133:
            return self.run_xor
        elif opcodeint == 116 or opcodeint == 134:
            return self.run_shl
        elif opcodeint == 117 or opcodeint == 135:
            return self.run_shr_s
        elif opcodeint == 118 or opcodeint == 136:
            return self.run_shr_u
        elif opcodeint == 119 or opcodeint == 137:
            return self.run_rotl
        elif opcodeint == 120 or opcodeint == 138:
            return self.run_rotr
        elif opcodeint == 139 or opcodeint == 153:
            return self.run_abs
        elif opcodeint == 140 or opcodeint == 154:
            return self.run_neg
        elif opcodeint == 141 or opcodeint == 155:
            return self.run_ceil
        elif opcodeint == 142 or opcodeint == 156:
            return self.run_floor
        elif opcodeint == 143 or opcodeint == 157:
            return self.run_trunc
        elif opcodeint == 144 or opcodeint == 158:
            return self.run_nearest
        elif opcodeint == 145 or opcodeint == 159:
            return self.run_sqrt
        elif opcodeint == 149 or opcodeint == 163:
            return self.run_div
        elif opcodeint == 150 or opcodeint == 164:
            return self.run_min
        elif opcodeint == 151 or opcodeint == 165:
            return self.run_max
        elif opcodeint == 152 or opcodeint == 166:
            return self.run_copysign
        elif opcodeint == 167:
            return self.run_i32wrapi64
        elif opcodeint == 168:
            return self.run_i32trunc_sf32
        elif opcodeint == 169:
            return self.run_i32trunc_uf32
        elif opcodeint == 170:
            return self.run_i32trunc_sf64
        elif opcodeint == 171:
            return self.run_i32trunc_uf64
        elif opcodeint == 172:
            return self.run_i64extend_si32
        elif opcodeint == 173:
            return self.run_i64extend_ui3o
        elif opcodeint == 174:
            return self.run_i64trunc_sf32
        elif opcodeint == 175:
            return self.run_i64trunc_uf32
        elif opcodeint == 176:
            return self.run_i64trunc_sf64
        elif opcodeint == 177:
            return self.run_i64trunc_uf64
        elif opcodeint == 178:
            return self.run_f32convert_si32
        elif opcodeint == 179:
            return self.run_f32convert_ui32
        elif opcodeint == 180:
            return self.run_f32convert_si64
        elif opcodeint == 181:
            return self.run_f32convert_ui64
        elif opcodeint == 182:
            return self.run_f32demotef64
        elif opcodeint == 183:
            return self.run_f64convert_si32
        elif opcodeint == 184:
            return self.run_f64convert_ui32
        elif opcodeint == 185:
            return self.run_f64convert_si64
        elif opcodeint == 186:
            return self.run_f64convert_ui64
        elif opcodeint == 187:
            return self.run_f64promotef32
        elif opcodeint == 188:
            return self.run_i32reinterpretf32
        elif opcodeint == 189:
            return self.run_i64reinterpretf64
        elif opcodeint == 190:
            return self.run_f32reinterpreti32
        elif opcodeint == 191:
            return self.run_f64reinterpreti64
        else:
            raise Exception(Colors.red + "unknown opcode" + Colors.ENDC)

    def run_unreachable(self, opcodeint, immediates):
        # trap
        raise Exception(Colors.red + "trapped." + Colors.ENDC)

    def run_nop(self, opcodeint, immediates):
        # literally do nothing
        pass

    def run_block(self, opcodeint, immediates):
        self.machinestate.Stack_Label.append(
            self.machinestate.Stack_Label_Height
        )
        self.machinestate.Stack_Label_Height += 1

    def run_loop(self, opcodeint, immediates):
        # assertion
        if not self.machinestate.Stack_Omni:
            print(Colors.red + "entered a loop. stack is empty." + Colors.ENDC)
            # exit 1
        self.machinestate.Stack_Label.append(
            self.machinestate.Stack_Label_Height
        )
        self.machinestate.Stack_Label_Height += 1
        val = self.machinestate.Stack_Omni.pop()
        if val != 0:
            pass
        else:
            pass

    def run_if(self, opcodeint, immediates):
        pass

    def run_else(self, opcodeint, immediates):
        pass

    def run_end(self, opcodeint, immediates):
        # self.machinestate.Stack_Label.pop()
        pass

    def run_br(self, opcodeint, immediates):
        if self.machinestate.Stack_Label_Height >= immediates[0] + 1:
            print(
                Colors.red
                + "label stack does not have enough labels."
                + Colors.ENDC
            )
            # exit 1
        if len(self.machinestate.Stack_Omni) < 1:
            print(
                Colors.red
                + "the value stack does not have enough values."
                + Colors.ENDC
            )
            # exit 1
        # val = self.machinestate.Stack_Omni.pop()
        # label = self.machinestate.Stack_Label.pop()

    def run_br_if(self, opcodeint, immediates):
        val = self.machinestate.Stack_Omni.pop()
        if val:
            pass
        else:
            self.run_br(dummy, immediates[0])

    def run_br_table(self, opcodeint, immediates):
        pass

    def run_return(self, opcodeint, immediates):
        pass

    def run_call(self, opcodeint, immediates):
        pass

    def run_call_indirect(self, opcodeint, immediates):
        pass

    def run_drop(self, opcodeint, immediates):
        self.machinestate.Stack_Omni.pop()

    def run_select(self, opcodeint, immediates):
        pass

    def run_getlocal(self, opcodeint, immediates):
        local = self.machinestate.Index_Space_Locals[int(immediates[0])]
        self.machinestate.Stack_Omni.append(local)

    def run_setlocal(self, opcodeint, immediates):
        self.machinestate.Index_Space_Locals[
            int(immediates[0])
        ] = self.machinestate.Stack_Omni.pop()

    def run_teelocal(self, dummy, immediates):
        # @DEVI-we dont pop and push
        self.machinestate.Index_Space_Locals[
            int(immediates[0])
        ] = self.machinestate.Stack_Omni[-1]

    def run_getglobal(self, opcodeint, immediates):
        val = self.machinestate.Index_Space_Global[immediates[0]]
        self.machinestate.Stack_Omni.append(val)

    def run_setglobal(self, opcodeint, immediates):
        val = self.machinestate.Stack_Omni.pop()
        self.machinestate.Index_Space_Global = val

    # currently only one linear memory is allowed so thats the default.
    def run_load(self, opcodeint, immediates):
        if opcodeint == 40:
            bytes = self.machinestate.Linear_Memory[0][
                int(immediates[1]) : int(immediates) + 4
            ]
            self.machinestate.Stack_Omni.append(np.int32(bytes))
        elif opcodeint == 41:
            bytes = self.machinestate.Linear_Memory[0][
                int(immediates[1]) : int(immediates) + 8
            ]
            self.machinestate.Stack_Omni.append(np.int64(bytes))
        elif opcodeint == 42:
            bytes = self.machinestate.Linear_Memory[0][
                int(immediates[1]) : int(immediates) + 4
            ]
            self.machinestate.Stack_Omni.append(np.float32(bytes))
        elif opcodeint == 43:
            bytes = self.machinestate.Linear_Memory[0][
                int(immediates[1]) : int(immediates) + 8
            ]
            self.machinestate.Stack_Omni.append(np.float64(bytes))
        elif opcodeint == 44:
            temp = np.int8(
                self.machinestate.Linear_Memory[0][int(immediates[1])]
            )
            temp2 = (temp & 0x0000007F) | ((temp & 0x80) << 24)
            self.machinestate.append(np.int32(temp2))
        elif opcodeint == 45:
            temp = np.int8(
                self.machinestate.Linear_Memory[0][int(immediates[1])]
            )
            temp2 = temp & 0x000000FF
            self.machinestate.append(np.uint32(temp2))
        elif opcodeint == 46:
            temp = np.int8(
                self.machinestate.Linear_Memory[0][
                    int(immediates[1]) : int(immediates[1] + 2)
                ]
            )
            temp2 = (temp & 0x00007FFF) | ((temp & 0x8000) << 16)
            self.machinestate.append(np.int32(temp2))
        elif opcodeint == 47:
            temp = np.int8(
                self.machinestate.Linear_Memory[0][
                    int(immediates[1]) : int(immediates[1] + 2)
                ]
            )
            temp2 = temp & 0x0000FFFF
            self.machinestate.append(np.uint32(temp2))
        elif opcodeint == 48:
            temp = np.int8(
                self.machinestate.Linear_Memory[0][int(immediates[1])]
            )
            temp2 = (temp & 0x000000000000007F) | ((temp & 0x80) << 56)
            self.machinestate.append(np.int64(temp2))
        elif opcodeint == 49:
            temp = np.uint8(
                self.machinestate.Linear_Memory[0][int(immediates[1])]
            )
            self.machinestate.append(np.uint64(temp))
        elif opcodeint == 50:
            temp = np.int8(
                self.machinestate.Linear_Memory[0][
                    int(immediates[1]) : int(immediates[1] + 2)
                ]
            )
            temp2 = (temp & 0x0000000000007FFF) | ((temp & 0x8000) << 48)
            self.machinestate.append(np.int64(temp2))
        elif opcodeint == 51:
            temp = np.uint8(
                self.machinestate.Linear_Memory[0][
                    int(immediates[1]) : int(immediates[1] + 2)
                ]
            )
            self.machinestate.append(np.uint64(temp))
        elif opcodeint == 52:
            temp = np.int8(
                self.machinestate.Linear_Memory[0][
                    int(immediates[1]) : int(immediates[1] + 4)
                ]
            )
            temp2 = (temp & 0x000000007FFFFFFF) | ((temp & 0x80000000) << 32)
            self.machinestate.append(np.int64(temp2))
        elif opcodeint == 53:
            temp = np.uint8(
                self.machinestate.Linear_Memory[0][
                    int(immediates[1]) : int(immediates[1] + 4)
                ]
            )
            self.machinestate.append(np.uint64(temp))
        else:
            raise Exception(
                Colors.red + "invalid load instruction." + Colors.ENDC
            )

    # currently only one linear memory is allowed so thats the default.
    def run_store(self, opcodeint, immediates):
        if opcodeint == 54:
            val = self.machinestate.Stack_Omni.pop()
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 0] = (
                val & 0x000000FF
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 1] = (
                val & 0x0000FF00 >> 8
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 2] = (
                val & 0x00FF0000 >> 16
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 3] = (
                val & 0xFF000000 >> 24
            )
        elif opcodeint == 55:
            val = self.machinestate.Stack_Omni.pop()
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 0] = (
                val & 0x00000000000000FF
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 1] = (
                val & 0x000000000000FF00 >> 8
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 2] = (
                val & 0x0000000000FF0000 >> 16
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 3] = (
                val & 0x00000000FF000000 >> 24
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 4] = (
                val & 0x000000FF00000000 >> 32
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 5] = (
                val & 0x0000FF0000000000 >> 40
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 6] = (
                val & 0x00FF000000000000 >> 48
            )
            self.machinestate.Linear_Memory[0][int(immediates[1]) + 7] = (
                val & 0xFF00000000000000 >> 56
            )
        # @DEVI-FIXME-needs reinterpret cast
        elif opcodeint == 56:
            pass
        # @DEVI-FIXME-needs reinterpret cast
        elif opcodeint == 57:
            pass
        elif opcodeint == 58:
            val = self.machinestate.Stack_Omni.pop()
            self.machinestate.Linear_Memory[0][int(immediates[1])] = np.in8(
                val & 0x000000FF
            )
        elif opcodeint == 59:
            val = self.machinestate.Stack_Omni.pop()
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 0
            ] = np.in8(val & 0x000000FF)
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 1
            ] = np.in8(val & 0x0000FF00 >> 8)
        elif opcodeint == 60:
            val = self.machinestate.Stack_Omni.pop()
            self.machinestate.Linear_Memory[0][int(immediates[1])] = np.in8(
                val & 0x00000000000000FF
            )
        elif opcodeint == 61:
            val = self.machinestate.Stack_Omni.pop()
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 0
            ] = np.in8(val & 0x00000000000000FF)
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 1
            ] = np.in8(val & 0x000000000000FF00 >> 8)
        elif opcodeint == 62:
            val = self.machinestate.Stack_Omni.pop()
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 0
            ] = np.in8(val & 0x00000000000000FF)
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 1
            ] = np.in8(val & 0x000000000000FF00 >> 8)
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 2
            ] = np.in8(val & 0x0000000000FF0000 >> 16)
            self.machinestate.Linear_Memory[0][
                int(immediates[1]) + 3
            ] = np.in8(val & 0x00000000FF000000 >> 24)
        else:
            raise Exception(
                Colors.red + "invalid store instruction" + Colors.ENDC
            )

    def run_current_memory(self, opcodeint, immediates):
        pass

    def run_grow_memory(self, opcodeint, immediates):
        pass

    def run_const(self, opcodeint, immediates):
        if opcodeint == 65:
            self.machinestate.Stack_Omni.append(immediates[0])
        elif opcodeint == 66:
            self.machinestate.Stack_Omni.append(immediates[0])
        elif opcodeint == 67:
            self.machinestate.Stack_Omni.append(immediates[0])
        elif opcodeint == 68:
            self.machinestate.Stack_Omni.append(immediates[0])
        else:
            raise Exception(
                Colors.red + "invalid const instruction" + Colors.ENDC
            )

    def run_eqz(self, opcodeint, immediates):
        if opcodeint == 69 or opcodeint == 80:
            val = self.machinestate.Stack_Omni.pop()
            if val == 0:
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid eqz instruction" + Colors.ENDC
            )

    def run_eq(self, opcodeint, immediates):
        if (
            opcodeint == 70
            or opcodeint == 81
            or opcodeint == 91
            or opcodeint == 97
        ):
            val2 = self.machinestate.Stack_Omni.pop()
            val1 = self.machinestate.Stack_Omni.pop()
            if val1 == val2:
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid eq instruction" + Colors.ENDC
            )

    def run_ne(self, opcodeint, immediates):
        if (
            opcodeint == 71
            or opcodeint == 82
            or opcodeint == 92
            or opcodeint == 98
        ):
            val2 = self.machinestate.Stack_Omni.pop()
            val1 = self.machinestate.Stack_Omni.pop()
            if val1 != val2:
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid ne instruction" + Colors.ENDC
            )

    def run_lt_s(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 72:
            if np.int32(val1) < np.int32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 83:
            if np.int64(val1) < np.int64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid lt_s instruction" + Colors.ENDC
            )

    def run_lt_u(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 73:
            if np.uint32(val1) < np.uint32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 84:
            if np.uint64(val1) < np.uint64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid lt_u instruction" + Colors.ENDC
            )

    def run_gt_s(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 74:
            if np.int32(val1) > np.int32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 85:
            if np.int64(val1) > np.int64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid gt_s instruction" + Colors.ENDC
            )

    def run_gt_u(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 75:
            if np.uint32(val1) > np.uint32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 86:
            if np.uint64(val1) > np.uint64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid gt_u instruction" + Colors.ENDC
            )

    def run_le_s(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 76:
            if np.int32(val1) <= np.int32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 87:
            if np.int64(val1) <= np.int64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid le_s instruction" + Colors.ENDC
            )

    def run_le_u(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 77:
            if np.uint32(val1) <= np.uint32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 88:
            if np.uint64(val1) <= np.uint64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid le_u instruction" + Colors.ENDC
            )

    def run_ge_s(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 78:
            if np.int32(val1) >= np.int32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 89:
            if np.int64(val1) >= np.int64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid ge_s instruction" + Colors.ENDC
            )

    def run_ge_u(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 79:
            if np.uint32(val1) >= np.uint32(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 90:
            if np.uint64(val1) >= np.uint64(val2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid ge_u instruction" + Colors.ENDC
            )

    def run_lt(self, opcodeint, immediates):
        v2 = self.machinestate.Stack_Omni.pop()
        v1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 93:
            if np.float32(v1) < np.float32(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 99:
            if np.float64(v1) < np.float64(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid lt instruction" + Colors.ENDC
            )

    def run_gt(self, opcodeint, immediates):
        v2 = self.machinestate.Stack_Omni.pop()
        v1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 94:
            if np.float32(v1) > np.float32(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 100:
            if np.float64(v1) > np.float64(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid gt instruction" + Colors.ENDC
            )

    def run_le(self, opcodeint, immediates):
        v2 = self.machinestate.Stack_Omni.pop()
        v1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 95:
            if np.float32(v1) <= np.float32(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 101:
            if np.float64(v1) <= np.float64(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid le instruction" + Colors.ENDC
            )

    def run_ge(self, opcodeint, immediates):
        v2 = self.machinestate.Stack_Omni.pop()
        v1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 96:
            if np.float32(v1) >= np.float32(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        elif opcodeint == 102:
            if np.float64(v1) >= np.float64(v2):
                self.machinestate.Stack_Omni.append(1)
            else:
                self.machinestate.Stack_Omni.append(0)
        else:
            raise Exception(
                Colors.red + "invalid ge instruction" + Colors.ENDC
            )

    def run_clz(self, opcodeint, immediates):
        val = self.machinestate.Stack_Omni.pop()
        if opcodeint == 103:
            self.machinestate.Stack_Omni.append(clz(val, "uint32"))
        elif opcodeint == 121:
            self.machinestate.Stack_Omni.append(clz(val, "uint64"))
        else:
            raise Exception(
                Colors.red + "invalid clz instruction" + Colors.ENDC
            )

    def run_ctz(self, opcodeint, immediates):
        val = self.machinestate.Stack_Omni.pop()
        if opcodeint == 104:
            self.machinestate.Stack_Omni.append(ctz(val, "uint32"))
        elif opcodeint == 122:
            self.machinestate.Stack_Omni.append(ctz(val, "uint64"))
        else:
            raise Exception(
                Colors.red + "invalid ctz instruction" + Colors.ENDC
            )

    def run_popcnt(self, opcodeint, immediates):
        val = self.machinestate.Stack_Omni.pop()
        if opcodeint == 105:
            self.machinestate.Stack_Omni.append(pop_cnt(val, "uint32"))
        elif opcodeint == 123:
            self.machinestate.Stack_Omni.append(pop_cnt(val, "uint64"))
        else:
            raise Exception(
                Colors.red + "invalid popcnt instruction" + Colors.ENDC
            )

    def run_add(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 106:
            self.machinestate.Stack_Omni.append(np.uint32(val1 + val2))
        elif opcodeint == 124:
            self.machinestate.Stack_Omni.append(np.uint64(val1 + val2))
        elif opcodeint == 146:
            self.machinestate.Stack_Omni.append(np.float32(val1 + val2))
        elif opcodeint == 160:
            self.machinestate.Stack_Omni.append(np.float64(val1 + val2))
        else:
            raise Exception(
                Colors.red + "invalid add instruction" + Colors.ENDC
            )

    def run_sub(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 107:
            self.machinestate.Stack_Omni.append(np.uint32(val1 - val2))
        elif opcodeint == 125:
            self.machinestate.Stack_Omni.append(np.uint64(val1 - val2))
        elif opcodeint == 147:
            self.machinestate.Stack_Omni.append(np.float32(val1 - val2))
        elif opcodeint == 161:
            self.machinestate.Stack_Omni.append(np.float64(val1 - val2))
        else:
            raise Exception(
                Colors.red + "invalid sub instruction" + Colors.ENDC
            )

    def run_mul(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 108:
            self.machinestate.Stack_Omni.append(np.uint32(val1 * val2))
        elif opcodeint == 126:
            self.machinestate.Stack_Omni.append(np.uint64(val1 * val2))
        elif opcodeint == 148:
            self.machinestate.Stack_Omni.append(np.float32(val1 * val2))
        elif opcodeint == 162:
            self.machinestate.Stack_Omni.append(np.float64(val1 * val2))
        else:
            raise Exception(
                Colors.red + "invalid mul instruction" + Colors.ENDC
            )

    def run_div_s(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 109:
            self.machinestate.Stack_Omni.append(
                np.int32(np.int32(val1) / np.int32(val2))
            )
        elif opcodeint == 127:
            self.machinestate.Stack_Omni.append(
                np.int64(np.int64(val1) / np.int64(val2))
            )
        else:
            raise Exception(
                Colors.red + "invalid div_s instruction" + Colors.ENDC
            )

    def run_div_u(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 110:
            self.machinestate.Stack_Omni.append(
                np.uint32(np.uint32(val1) / np.uint32(val2))
            )
        elif opcodeint == 128:
            self.machinestate.Stack_Omni.append(
                np.uint64(np.uint64(val1) / np.uint64(val2))
            )
        else:
            raise Exception(
                Colors.red + "invalid div_u instruction" + Colors.ENDC
            )

    def run_rem_s(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 111:
            self.machinestate.Stack_Omni.append(
                np.int32(np.int32(val1) % np.int32(val2))
            )
        elif opcodeint == 129:
            self.machinestate.Stack_Omni.append(
                np.int64(np.int64(val1) % np.int64(val2))
            )
        else:
            raise Exception(
                Colors.red + "invalid rem_s instruction" + Colors.ENDC
            )

    def run_rem_u(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 112:
            self.machinestate.Stack_Omni.append(
                np.uint32(np.uint32(val1) % np.uint32(val2))
            )
        elif opcodeint == 130:
            self.machinestate.Stack_Omni.append(
                np.uint64(np.uint64(val1) % np.uint64(val2))
            )
        else:
            raise Exception(
                Colors.red + "invalid rem_u instruction" + Colors.ENDC
            )

    def run_and(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 113:
            self.machinestate.Stack_Omni.append(
                np.uint32(np.uint32(val1) & np.uint32(val2))
            )
        elif opcodeint == 131:
            self.machinestate.Stack_Omni.append(
                np.uint64(np.uint64(val1) & np.uint64(val2))
            )
        else:
            raise Exception(
                Colors.red + "invalid and instruction" + Colors.ENDC
            )

    def run_or(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 114:
            self.machinestate.Stack_Omni.append(
                np.uint32(np.uint32(val1) | np.uint32(val2))
            )
        elif opcodeint == 132:
            self.machinestate.Stack_Omni.append(
                np.uint64(np.uint64(val1) | np.uint64(val2))
            )
        else:
            raise Exception(
                Colors.red + "invalid or instruction" + Colors.ENDC
            )

    def run_xor(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 115:
            self.machinestate.Stack_Omni.append(
                np.uint32(np.uint32(val1) ^ np.uint32(val2))
            )
        elif opcodeint == 133:
            self.machinestate.Stack_Omni.append(
                np.uint64(np.uint64(val1) ^ np.uint64(val2))
            )
        else:
            raise Exception(
                Colors.red + "invalid xor instruction" + Colors.ENDC
            )

    def run_shl(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 116:
            self.machinestate.Stack_Omni.append(
                np.uint32(np.uint32(val1) << (np.uint32(val2)))
            )
        elif opcodeint == 134:
            self.machinestate.Stack_Omni.append(
                np.uint64(np.uint64(val1) << (np.uint64(val2)))
            )
        else:
            raise Exception(
                Colors.red + "invalid shl instruction" + Colors.ENDC
            )

    def run_shr_s(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 117:
            self.machinestate.Stack_Omni.append(
                np.int32(np.int32(val1) >> (np.int32(val2)))
            )
        elif opcodeint == 135:
            self.machinestate.Stack_Omni.append(
                np.int64(np.int64(val1) >> (np.int64(val2)))
            )
        else:
            raise Exception(
                Colors.red + "invalid shr_s instruction" + Colors.ENDC
            )

    def run_shr_u(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 118:
            self.machinestate.Stack_Omni.append(
                np.uint32(np.uint32(val1) >> (np.uint32(val2)))
            )
        elif opcodeint == 136:
            self.machinestate.Stack_Omni.append(
                np.uint64(np.uint64(val1) >> (np.uint64(val2)))
            )
        else:
            raise Exception(
                Colors.red + "invalid shr_u instruction" + Colors.ENDC
            )

    def run_rotl(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 119:
            self.machinestate.Stack_Omni.append(rol(val1, 32, val2))
        elif opcodeint == 137:
            self.machinestate.Stack_Omni.append(rol(val1, 64, val2))
        else:
            raise Exception(
                Colors.red + "invalid rotl instruction" + Colors.ENDC
            )

    def run_rotr(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 120:
            self.machinestate.Stack_Omni.append(ror(val1, 32, val2))
        elif opcodeint == 138:
            self.machinestate.Stack_Omni.append(ror(val1, 32, val2))
        else:
            raise Exception(
                Colors.red + "invalid rotl instruction" + Colors.ENDC
            )

    def run_abs(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 139 or opcodeint == 153:
            self.machinestate.Stack_Omni.append(abs(val1))
        else:
            raise Exception(
                Colors.red + "invalid abs instruction" + Colors.ENDC
            )

    def run_neg(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 140 or opcodeint == 154:
            self.machinestate.Stack_Omni.append(-val1)
        else:
            raise Exception(
                Colors.red + "invalid neg instruction" + Colors.ENDC
            )

    def run_ceil(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 141 or opcodeint == 155:
            self.machinestate.Stack_Omni.append(math.ceil(val1))
        else:
            raise Exception(
                Colors.red + "invalid ceil instruction" + Colors.ENDC
            )

    def run_floor(self, opcodeint, immediates):
        if opcodeint == 142 or opcodeint == 156:
            self.machinestate.Stack_Omni.append(math.floor(val1))
        else:
            raise Exception(
                Colors.red + "invalid floor instruction" + Colors.ENDC
            )

    def run_trunc(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 143 or opcodeint == 157:
            self.machinestate.Stack_Omni.append(math.trunc(val1))
        else:
            raise Exception(
                Colors.red + "invalid trunc instruction" + Colors.ENDC
            )

    def run_nearest(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 144 or opcodeint == 158:
            self.machinestate.Stack_Omni.append(round(val1))
        else:
            raise Exception(
                Colors.red + "invalid nearest instruction" + Colors.ENDC
            )

    def run_sqrt(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 145 or opcodeint == 159:
            self.machinestate.Stack_Omni.append(math.sqrt(val1))
        else:
            raise Exception(
                Colors.red + "invalid sqrt instruction" + Colors.ENDC
            )

    def run_div(self, opcodeint, immediates):
        v2 = self.machinestate.Stack_Omni.pop()
        v1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 149:
            self.machinestate.Stack_Omni.append(v1 / v2)
        else:
            raise Exception(
                Colors.red + "invalid float div instruction" + Colors.ENDC
            )

    def run_min(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 150 or opcodeint == 164:
            self.machinestate.Stack_Omni.append(min(val1, val2))
        else:
            raise Exception(
                Colors.red + "invalid min instruction" + Colors.ENDC
            )

    def run_max(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 151 or opcodeint == 165:
            self.machinestate.Stack_Omni.append(max(val1, val2))
        else:
            raise Exception(
                Colors.red + "invalid max instruction" + Colors.ENDC
            )

    def run_copysign(self, opcodeint, immediates):
        val2 = self.machinestate.Stack_Omni.pop()
        val1 = self.machinestate.Stack_Omni.pop()
        if opcodeint == 152 or opcodeint == 166:
            self.machinestate.Stack_Omni.append(math.copysign(val1, val2))
        else:
            raise Exception(
                Colors.red + "invalid max instruction" + Colors.ENDC
            )

    def run_i32wrapi64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.int32(np.float64(val1)))

    def run_i32trunc_sf32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.int32(np.float32(val1)))

    def run_i32trunc_uf32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.uint32(np.float32(val1)))

    def run_i32trunc_sf64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.int32(np.float64(val1)))

    def run_i32trunc_uf64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.int32(np.float64(val1)))

    def run_i64extend_si32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float64(np.int32(val1)))

    def run_i64extend_ui32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float64(np.uint32(val1)))

    def run_i64trunc_sf32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.int64(np.float32(val1)))

    def run_i64trunc_uf32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.uint64(np.float32(val1)))

    def run_i64trunc_sf64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.int64(np.float64(val1)))

    def run_i64trunc_uf64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.uint64(np.float64(val1)))

    def run_f32convert_si32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float32(np.uint32(val1)))

    def run_f32convert_ui32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float32(np.int32(val1)))

    def run_f32convert_si64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float32(np.int64(val1)))

    def run_f32convert_ui64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float32(np.uint64(val1)))

    def run_f32demotef64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float32(np.float64(val1)))

    def run_f64convert_si32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float64(np.int32(val1)))

    def run_f64convert_ui32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float64(np.uint32(val1)))

    def run_f64convert_si64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float64(np.int64(val1)))

    def run_f64convert_ui64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float64(np.uint64(val1)))

    def run_f64promotef32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        self.machinestate.Stack_Omni.append(np.float64(np.float32(val1)))

    def run_i32reinterpretf32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        sel.machinestate.Stack_Omni.append(reinterpretf32toi32(val1))

    def run_i64reinterpretf64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        sel.machinestate.Stack_Omni.append(reinterpretf64toi64(val1))

    def run_f32reinterpreti32(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        sel.machinestate.Stack_Omni.append(reinterpreti32tof32(val1))

    def run_f64reinterpreti64(self, opcodeint, immediates):
        val1 = self.machinestate.Stack_Omni.pop()
        sel.machinestate.Stack_Omni.append(reinterpreti64tof64(val1))