-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcentos_combined_opcode_func_o3.count
executable file
·51943 lines (51943 loc) · 861 KB
/
centos_combined_opcode_func_o3.count
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
sets 5
sets setb 2
sets setb mov 2
sets test 1
sets test jnz 1
sets retn 2
sets retn </f> 2
syscall 2
syscall pop 1
syscall pop mov 1
syscall mov 1
syscall mov xor 1
fldz 53
fldz fxch 15
fldz fxch fucomi 7
fldz fxch fucomip 7
fldz fxch mov 1
fldz xor 1
fldz xor jmp 1
fldz fucomip 3
fldz fucomip fstp 2
fldz fucomip setnbe 1
fldz movsd 1
fldz movsd mov 1
fldz mov 11
fldz mov mov 7
fldz mov jmp 2
fldz mov fchs 2
fldz fchs 1
fldz fchs fldz 1
fldz pop 2
fldz pop pop 2
fldz sub 2
fldz sub xor 1
fldz sub mov 1
fldz test 1
fldz test fcmovne 1
fldz add 4
fldz add pop 1
fldz add fchs 2
fldz add movzx 1
fldz fmul 1
fldz fmul fxch 1
fldz nop 1
fldz nop mov 1
fldz jmp 7
fldz jmp mov 7
fldz xchg 1
fldz xchg add 1
fldz fld 2
fldz fld fxch 1
fldz fld jmp 1
setnb 178
setnb movzx 17
setnb movzx pop 2
setnb movzx mov 5
setnb movzx test 2
setnb movzx retn 4
setnb movzx lea 1
setnb movzx jmp 2
setnb movzx add 1
setnb xor 2
setnb xor jmp 1
setnb xor lea 1
setnb mov 19
setnb mov mov 1
setnb mov cmp 10
setnb mov test 1
setnb mov jmp 3
setnb mov shl 4
setnb and 1
setnb and call 1
setnb test 65
setnb test mov 4
setnb test jz 45
setnb test setnz 1
setnb test jnz 14
setnb test setz 1
setnb add 13
setnb add pop 5
setnb add test 5
setnb add mov 1
setnb add retn 2
setnb cmp 2
setnb cmp mov 1
setnb cmp jnb 1
setnb retn 8
setnb retn xor 1
setnb retn </f> 5
setnb retn ucomisd 1
setnb retn test 1
setnb jnb 8
setnb jnb jmp 3
setnb jnb cmp 3
setnb jnb mov 2
setnb nop 1
setnb nop mov 1
setnb jb 1
setnb jb movapd 1
setnb jmp 19
setnb jmp movsxd 1
setnb jmp movzx 1
setnb jmp xor 1
setnb jmp movsd 3
setnb jmp mov 4
setnb jmp call 1
setnb jmp test 3
setnb jmp subsd 1
setnb jmp unpcklps 1
setnb jmp ucomisd 1
setnb jmp jp 2
setnb addss 1
setnb addss xorps 1
setnb lea 9
setnb lea call 9
setnb shl 12
setnb shl and 4
setnb shl or 8
div 2648
div imul 73
div imul mov 32
div imul sub 3
div imul cmp 6
div imul add 4
div imul lea 22
div imul test 5
div imul jmp 1
div shr 4
div shr mov 3
div shr test 1
div xor 233
div xor imul 9
div xor div 12
div xor shr 1
div xor xor 1
div xor mov 147
div xor sub 7
div xor test 15
div xor or 3
div xor add 6
div xor cmp 1
div xor jmp 5
div xor lea 19
div xor divsd 1
div xor movsxd 1
div xor shl 5
div mov 1078
div mov imul 38
div mov movzx 16
div mov shr 4
div mov mulsd 1
div mov xor 26
div mov mov 518
div mov div 1
div mov movsd 3
div mov call 43
div mov and 1
div mov sub 28
div mov test 72
div mov add 66
div mov cmp 60
div mov retn 29
div mov sar 1
div mov nop 9
div mov cvtsi2ss 1
div mov jmp 70
div mov lea 55
div mov unpcklps 1
div mov movss 2
div mov cvtsi2sd 4
div mov movsxd 5
div mov shl 24
div movsx 4
div movsx movzx 1
div movsx mov 3
div pop 22
div pop add 1
div pop mov 14
div pop pop 7
div and 1
div and cmp 1
div push 3
div push mov 3
div movsd 2
div movsd ucomisd 1
div movsd mov 1
div sub 40
div sub mov 16
div sub cmovz 1
div sub jz 1
div sub add 2
div sub cmp 11
div sub test 2
div sub sub 1
div sub lea 4
div sub jmp 1
div sub cmovns 1
div test 364
div test js 8
div test mov 94
div test cmovz 2
div test jz 117
div test setnz 7
div test jnz 111
div test cmovnz 1
div test lea 12
div test jle 6
div test jg 1
div test jns 4
div test cvtsi2sd 1
div or 4
div or xor 1
div or mov 3
div add 119
div add imul 13
div add xor 6
div add mov 39
div add pop 10
div add sub 5
div add test 4
div add or 4
div add add 3
div add cmp 16
div add nop 7
div add jmp 7
div add lea 1
div add dec 1
div add inc 1
div add movsxd 1
div add movzx 1
div retn 12
div retn </f> 8
div retn cmp 2
div retn shr 2
div cmp 330
div cmp movzx 4
div cmp mov 68
div cmp setle 1
div cmp jge 6
div cmp jl 3
div cmp cmova 4
div cmp cmovnb 1
div cmp jz 23
div cmp jnz 21
div cmp jnb 41
div cmp cmovbe 4
div cmp jb 25
div cmp sbb 3
div cmp jle 1
div cmp jg 3
div cmp ja 53
div cmp jbe 65
div cmp lea 2
div cmp adc 2
div sar 2
div sar xor 2
div nop 2
div nop lea 1
div nop movsxd 1
div not 1
div not add 1
div neg 15
div neg imul 4
div neg cmp 3
div neg retn 4
div neg jmp 4
div jmp 79
div jmp shl 1
div jmp mov 8
div jmp </f> 1
div jmp test 5
div jmp cmp 18
div jmp add 5
div jmp movs 1
div jmp neg 1
div jmp lea 38
div jmp movsxd 1
div lea 149
div lea imul 7
div lea movzx 1
div lea xor 6
div lea mov 61
div lea pop 1
div lea call 2
div lea sub 2
div lea test 20
div lea add 2
div lea cmp 3
div lea nop 5
div lea jmp 13
div lea lea 20
div lea unpcklps 2
div lea movsxd 2
div lea shl 2
div dec 1
div dec mov 1
div divsd 2
div divsd mov 1
div divsd test 1
div movsxd 35
div movsxd imul 1
div movsxd mov 6
div movsxd xor 1
div movsxd test 6
div movsxd cmp 4
div movsxd lea 4
div movsxd shl 13
div addsd 1
div addsd sub 1
div shl 25
div shl mov 9
div shl jmp 5
div shl add 8
div shl lea 3
div movzx 47
div movzx imul 10
div movzx mov 15
div movzx call 3
div movzx sub 2
div movzx test 9
div movzx cmp 1
div movzx add 2
div movzx lea 4
div movzx shl 1
imul 17965
imul imul 801
imul imul imul 130
imul imul shr 16
imul imul div 7
imul imul movzx 3
imul imul xor 5
imul imul mov 94
imul imul mul 1
imul imul and 1
imul imul call 22
imul imul mulsd 1
imul imul pop 1
imul imul sub 43
imul imul test 17
imul imul cdqe 3
imul imul add 147
imul imul cmp 46
imul imul sar 40
imul imul nop 12
imul imul neg 2
imul imul jmp 16
imul imul lea 163
imul imul cvtsi2sd 1
imul imul divsd 1
imul imul movsxd 25
imul imul shl 4
imul div 105
imul div imul 4
imul div xor 30
imul div mov 33
imul div sub 1
imul div test 3
imul div cmp 16
imul div add 9
imul div nop 1
imul div or 2
imul div lea 5
imul div jmp 1
imul shr 143
imul shr imul 7
imul shr shr 21
imul shr movzx 1
imul shr xor 1
imul shr mov 38
imul shr mul 4
imul shr and 3
imul shr call 2
imul shr cdqe 1
imul shr test 6
imul shr sub 19
imul shr add 15
imul shr cmp 6
imul shr or 1
imul shr nop 1
imul shr not 1
imul shr jmp 1
imul shr lea 11
imul shr ucomisd 1
imul shr movsxd 1
imul shr shl 2
imul mulsd 10
imul mulsd mulsd 1
imul mulsd cvttsd2si 2
imul mulsd imul 1
imul mulsd cdqe 1
imul mulsd test 1
imul mulsd lea 1
imul mulsd cvtsi2sd 1
imul mulsd addsd 2
imul cvttsd2si 1
imul cvttsd2si imul 1
imul cdq 1
imul cdq idiv 1
imul xor 347
imul xor div 25
imul xor shr 15
imul xor imul 9
imul xor xor 8
imul xor mov 122
imul xor movsx 1
imul xor push 2
imul xor call 31
imul xor movsd 1
imul xor sub 12
imul xor test 3
imul xor cdqe 1
imul xor add 18
imul xor cmp 10
imul xor sar 49
imul xor nop 1
imul xor jmp 8
imul xor lea 23
imul xor ror 1
imul xor mulss 1
imul xor movsxd 5
imul xor shl 1
imul stos 2
imul stos jmp 1
imul stos mov 1
imul mov 6460
imul mov div 30
imul mov imul 166
imul mov shr 69
imul mov mulsd 1
imul mov xor 156
imul mov mov 1908
imul mov movsx 10
imul mov mul 30
imul mov pop 9
imul mov and 41
imul mov push 4
imul mov movsd 2
imul mov call 276
imul mov idiv 3
imul mov movaps 1
imul mov cdqe 17
imul mov sub 282
imul mov test 73
imul mov or 5
imul mov add 430
imul mov movapd 1
imul mov retn 20
imul mov cmp 115
imul mov sar 2032
imul mov nop 13
imul mov not 14
imul mov neg 8
imul mov cvtsi2ss 6
imul mov jmp 198
imul mov lea 253
imul mov xorps 1
imul mov inc 1
imul mov movss 2
imul mov cvtsi2sd 30
imul mov divsd 1
imul mov xchg 3
imul mov movsxd 108
imul mov shl 50
imul mov movzx 91
imul movsx 41
imul movsx imul 5
imul movsx mov 8
imul movsx sub 4
imul movsx add 12
imul movsx sar 1
imul movsx cmp 1
imul movsx lea 8
imul movsx inc 1
imul movsx movzx 1
imul pop 42
imul pop shr 2
imul pop pop 16
imul pop mov 6
imul pop add 5
imul pop retn 8
imul pop lea 4
imul pop jmp 1
imul mul 9
imul mul xor 2
imul mul mov 5
imul mul shr 2
imul idiv 3
imul idiv cmp 1
imul idiv mov 2
imul and 107
imul and imul 2
imul and mov 10
imul and and 1
imul and push 1
imul and sub 8
imul and jz 1
imul and add 26
imul and jnz 7
imul and cmp 24
imul and sar 1
imul and lea 4
imul and shl 22
imul movsd 15
imul movsd imul 1
imul movsd mov 3
imul movsd movsd 3
imul movsd sub 1
imul movsd cdqe 1
imul movsd test 1
imul movsd divsd 1
imul movsd movsxd 4
imul push 53
imul push imul 1
imul push mov 18
imul push push 18
imul push xor 8
imul push cdqe 2
imul push test 2
imul push sub 2
imul push movsxd 2
imul call 591
imul call imul 1
imul call xor 16
imul call mov 329
imul call call 5
imul call </f> 20
imul call test 110
imul call or 1
imul call add 20
imul call cmp 21
imul call retn 1
imul call xorpd 1
imul call neg 1
imul call jmp 25
imul call lea 18
imul call movsxd 11
imul call movzx 11
imul movaps 2
imul movaps movaps 1
imul movaps add 1
imul cdqe 158
imul cdqe movsxd 2
imul cdqe imul 5
imul cdqe mov 35
imul cdqe xor 2
imul cdqe movsd 1
imul cdqe sub 11
imul cdqe test 1
imul cdqe add 47
imul cdqe cmp 10
imul cdqe div 2
imul cdqe lea 39
imul cdqe shl 3
imul sub 1652
imul sub imul 56
imul sub div 2
imul sub shr 2
imul sub js 27
imul sub xor 14
imul sub mov 551
imul sub mul 4
imul sub movsd 2
imul sub and 2
imul sub call 18
imul sub cmovz 2
imul sub cdqe 2
imul sub sub 20
imul sub test 61
imul sub jz 23
imul sub andps 1
imul sub add 48
imul sub or 2
imul sub retn 1
imul sub cmp 87
imul sub jnz 4
imul sub sar 7
imul sub nop 5
imul sub neg 1
imul sub jns 2
imul sub jmp 22
imul sub lea 448
imul sub cvtsi2sd 4
imul sub cmovs 1
imul sub movsxd 197
imul sub addsd 1
imul sub shl 13
imul sub movzx 22
imul test 384
imul test js 17
imul test cmovle 1
imul test mov 91
imul test cmovz 5
imul test cdqe 1
imul test jz 131
imul test cmovnz 1
imul test setnle 1
imul test jnz 43
imul test cvtsi2ss 1
imul test jns 3
imul test jle 58
imul test lea 19
imul test jg 2
imul test movss 3
imul test cvtsi2sd 1
imul test cmovs 3
imul test movsxd 2
imul test movzx 1
imul xorpd 1
imul xorpd movsd 1
imul or 32
imul or imul 4
imul or xor 1
imul or mov 5
imul or cmp 2
imul or add 3
imul or lea 9
imul or jmp 4
imul or movzx 4
imul add 2293
imul add imul 100
imul add div 11
imul add shr 23
imul add mulsd 2
imul add js 11
imul add xor 32
imul add mov 722
imul add movsx 4
imul add pop 40
imul add and 5
imul add movsd 1
imul add call 71
imul add cdqe 28
imul add sub 36
imul add test 84
imul add or 3
imul add jz 32
imul add add 202
imul add retn 28
imul add cmp 288
imul add movs 4
imul add sar 102
imul add nop 21
imul add jb 1
imul add neg 3
imul add jmp 108
imul add jns 4
imul add lea 104
imul add dec 1
imul add inc 1
imul add movss 1
imul add cvtsi2sd 12
imul add cmovns 1
imul add xchg 1
imul add movsxd 125
imul add addsd 3
imul add shl 25
imul add movzx 53
imul movapd 3
imul movapd divsd 1
imul movapd mov 1
imul movapd cvtsi2sd 1
imul cqo 8
imul cqo idiv 8
imul retn 35
imul retn mov 16
imul retn </f> 14
imul retn xor 1
imul retn call 1
imul retn add 1
imul retn movsxd 2
imul cmp 932
imul cmp js 5
imul cmp cmovle 6
imul cmp mov 41
imul cmp setle 15
imul cmp cmovg 12
imul cmp jge 32
imul cmp jl 37
imul cmp setnl 4
imul cmp cmova 8
imul cmp cmovnb 1
imul cmp cmovl 14
imul cmp setnz 17
imul cmp jz 163
imul cmp cmovnz 1
imul cmp setnle 8
imul cmp jnz 97
imul cmp setz 18
imul cmp jnb 78
imul cmp cmovb 6
imul cmp sbb 1
imul cmp jb 113
imul cmp cmovbe 2
imul cmp cvtsi2ss 1
imul cmp lea 26
imul cmp jle 57
imul cmp jg 43
imul cmp cmovge 2
imul cmp ja 69
imul cmp jbe 43
imul cmp cvtsi2sd 1
imul cmp mulss 1
imul cmp movsxd 9
imul cmp movzx 1
imul sar 796
imul sar imul 24
imul sar xor 11
imul sar mov 226
imul sar movsx 7
imul sar and 2
imul sar call 1
imul sar sub 331
imul sar add 44
imul sar cmp 4
imul sar sar 91
imul sar neg 1
imul sar jmp 1
imul sar lea 44
imul sar movsxd 7
imul sar movzx 2
imul nop 28
imul nop mov 10
imul nop xor 1
imul nop add 3
imul nop lea 3
imul nop movsxd 11
imul not 1
imul not add 1
imul cvtsi2ss 17
imul cvtsi2ss imul 1
imul cvtsi2ss mov 12
imul cvtsi2ss xor 1
imul cvtsi2ss cvtsi2ss 1
imul cvtsi2ss divss 2
imul neg 31
imul neg shl 1
imul neg imul 1
imul neg mov 15
imul neg call 1
imul neg cdqe 1
imul neg nop 2
imul neg neg 1
imul neg lea 1
imul neg movsxd 8
imul leave 52
imul leave retn 52
imul jmp 379
imul jmp imul 3
imul jmp xor 6
imul jmp mov 145
imul jmp push 4
imul jmp call 3
imul jmp movsd 1
imul jmp </f> 43
imul jmp cdqe 1
imul jmp test 8
imul jmp or 9
imul jmp add 6
imul jmp cmp 103
imul jmp sub 7
imul jmp jmp 2
imul jmp lea 17
imul jmp movsxd 5
imul jmp movzx 16
imul divss 1
imul divss divss 1
imul lea 1492
imul lea imul 77
imul lea div 5
imul lea shr 12
imul lea xor 38
imul lea mov 414
imul lea movsx 12
imul lea movsd 2
imul lea and 7
imul lea call 72
imul lea cdqe 20
imul lea sub 40
imul lea test 52
imul lea or 1
imul lea add 120
imul lea retn 23
imul lea cmp 117
imul lea movs 1
imul lea sar 102
imul lea nop 11
imul lea neg 4
imul lea cvtsi2ss 2
imul lea jmp 51
imul lea lea 182
imul lea cvtps2pd 1
imul lea cvtsi2sd 11
imul lea xchg 1
imul lea movsxd 74
imul lea shl 13
imul lea movzx 27
imul cvttss2si 1
imul cvttss2si cdqe 1
imul unpcklps 4
imul unpcklps imul 1
imul unpcklps cvtps2pd 3
imul cvtps2pd 1
imul cvtps2pd cvtsi2sd 1
imul xorps 2
imul xorps lea 1
imul xorps test 1
imul inc 1
imul inc cmp 1
imul movss 11
imul movss mov 1
imul movss call 2
imul movss add 1
imul movss movsd 1
imul movss movss 6
imul ror 5
imul ror imul 3
imul ror xor 2
imul cvtsi2sd 49
imul cvtsi2sd mulsd 6
imul cvtsi2sd subsd 5
imul cvtsi2sd mov 17
imul cvtsi2sd movsd 4
imul cvtsi2sd imul 2
imul cvtsi2sd lea 1
imul cvtsi2sd jmp 2
imul cvtsi2sd cvtsi2sd 1
imul cvtsi2sd divsd 9
imul cvtsi2sd addsd 2
imul divsd 7
imul divsd addsd 2
imul divsd call 1
imul divsd cvtsi2sd 1
imul divsd mov 3
imul mulss 6
imul mulss cvttss2si 1
imul mulss pop 1
imul mulss add 1
imul mulss cvtsi2ss 1
imul mulss addss 1
imul mulss mulss 1
imul xchg 2
imul xchg cmp 1
imul xchg movsxd 1
imul movsxd 480
imul movsxd imul 27
imul movsxd movzx 8
imul movsxd shr 2
imul movsxd div 1
imul movsxd xor 3
imul movsxd mov 103
imul movsxd idiv 2
imul movsxd call 75
imul movsxd cdqe 3
imul movsxd test 4
imul movsxd sub 3
imul movsxd add 77
imul movsxd cmp 27
imul movsxd movapd 1
imul movsxd nop 1
imul movsxd neg 2
imul movsxd jmp 13
imul movsxd lea 77
imul movsxd dec 2
imul movsxd movsxd 29
imul movsxd shl 20
imul addsd 2
imul addsd mov 1
imul addsd lea 1
imul shl 125
imul shl imul 14
imul shl shr 1
imul shl xor 2
imul shl mov 26
imul shl movsx 1
imul shl and 5
imul shl call 5
imul shl sub 5
imul shl cdqe 1
imul shl or 4
imul shl add 23
imul shl cmp 5
imul shl test 1
imul shl sar 4
imul shl jmp 4
imul shl lea 17
imul shl movsxd 5
imul shl shl 2
imul movzx 241
imul movzx imul 10
imul movzx shl 2
imul movzx shr 1
imul movzx xor 61
imul movzx mov 27
imul movzx movsx 1
imul movzx and 3
imul movzx call 6
imul movzx sub 3
imul movzx test 7
imul movzx or 3
imul movzx add 57
imul movzx cmp 8
imul movzx retn 5
imul movzx bt 1
imul movzx sar 7
imul movzx cdqe 1
imul movzx lea 15
imul movzx movsxd 9
imul movzx movzx 14
<s> 150528
<s> <f> 150528
<s> <f> imul 27
<s> <f> DATA 22
<s> <f> shr 24
<s> <f> mulsd 9
<s> <f> cvttsd2si 7
<s> <f> subsd 1
<s> <f> xor 3495
<s> <f> ucomiss 1
<s> <f> mov 48805
<s> <f> movsx 140
<s> <f> pop 4
<s> <f> movsd 101
<s> <f> and 125
<s> <f> push 70005
<s> <f> call 86
<s> <f> movaps 99
<s> <f> cli 1
<s> <f> sub 13558
<s> <f> test 3305
<s> <f> xorpd 19
<s> <f> maxsd 3
<s> <f> or 36
<s> <f> jz 1
<s> <f> add 379
<s> <f> movapd 17
<s> <f> retn 2284
<s> <f> cmp 3206
<s> <f> setz 1
<s> <f> jnz 1
<s> <f> sar 7
<s> <f> int 1
<s> <f> not 2
<s> <f> bswap 2
<s> <f> cvtsi2ss 6
<s> <f> neg 1
<s> <f> jmp 1472
<s> <f> divss 2
<s> <f> lea 1650
<s> <f> cvttss2si 3
<s> <f> unpcklps 3
<s> <f> jg 2
<s> <f> xorps 2
<s> <f> dec 1
<s> <f> movss 22
<s> <f> cvtsi2sd 34
<s> <f> movq 11
<s> <f> movdqu 2
<s> <f> stmxcsr 26
<s> <f> divsd 2
<s> <f> ucomisd 20
<s> <f> movdqa 4
<s> <f> movsxd 325
<s> <f> addsd 2
<s> <f> shl 3
<s> <f> movzx 1161
psrldq 181
psrldq psrldq 15
psrldq psrldq jmp 15
psrldq mov 15
psrldq mov movdqa 15
psrldq nop 1
psrldq nop mov 1
psrldq jmp 74
psrldq jmp psrldq 56
psrldq jmp mov 14
psrldq jmp jmp 1
psrldq jmp movdqu 2
psrldq jmp pcmpeqb 1
psrldq movdqa 76
psrldq movdqa punpcklbw 1
psrldq movdqa jmp 75
in 10
in xchg 1
in xchg mov 1
in test 1
in test jnz 1
in and 7
in and mov 3
in and or 4
in lea 1
in lea and 1
cwd 11
cwd idiv 11
cwd idiv cwde 1
cwd idiv movsx 10
DATA 129
DATA adc 1
DATA adc jmp 1
DATA DATA 59
DATA DATA DATA 27