-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgcc-i686-mingw.s
8711 lines (8711 loc) · 132 KB
/
gcc-i686-mingw.s
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
.file "mini-libc.c"
.intel_syntax noprefix
.text
.p2align 4
.globl _memmove
.def _memmove; .scl 2; .type 32; .endef
_memmove:
LFB2:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
push edi
push esi
push ebx
and esp, -64
sub esp, 64
.cfi_offset 7, -12
.cfi_offset 6, -16
.cfi_offset 3, -20
mov edx, DWORD PTR [ebp+12]
mov eax, DWORD PTR [ebp+16]
cmp edx, DWORD PTR [ebp+8]
jnb L2
test eax, eax
je L3
lea ecx, [eax-1]
cmp ecx, 30
jbe L11
mov edi, DWORD PTR [ebp+8]
lea esi, [edx-2+eax]
sub edi, esi
lea ebx, [edi+62+ecx]
cmp ebx, 62
jbe L11
lea esi, [edx+eax]
mov DWORD PTR [esp+60], esi
mov esi, DWORD PTR [ebp+8]
add esi, eax
cmp ecx, 62
jbe L23
lea edi, [eax-64]
lea ecx, [edx+edi]
add edi, DWORD PTR [ebp+8]
mov DWORD PTR [esp+52], edi
mov edi, eax
mov ebx, ecx
and edi, -64
sub ebx, edi
mov DWORD PTR [esp+56], edi
mov edi, ebx
mov ebx, DWORD PTR [esp+52]
.p2align 5
.p2align 4
.p2align 3
L6:
vmovdqu8 zmm2, ZMMWORD PTR [ecx]
sub ecx, 64
sub ebx, 64
vmovdqu8 ZMMWORD PTR [ebx+64], zmm2
cmp edi, ecx
jne L6
mov edi, DWORD PTR [esp+56]
mov ecx, eax
sub DWORD PTR [esp+60], edi
sub esi, edi
sub ecx, edi
cmp eax, edi
je L49
lea ebx, [ecx-1]
mov eax, ecx
cmp ebx, 30
jbe L8
L5:
vmovdqu8 ymm3, YMMWORD PTR [edx-32+eax]
mov edi, eax
mov edx, DWORD PTR [ebp+8]
and edi, -32
sub DWORD PTR [esp+60], edi
vmovdqu8 YMMWORD PTR [edx-32+eax], ymm3
sub esi, edi
sub ecx, edi
test al, 31
je L49
L8:
mov edi, DWORD PTR [esp+60]
mov ebx, ecx
neg ebx
sub edi, ecx
.p2align 5
.p2align 4
.p2align 3
L10:
movzx edx, BYTE PTR [edi-1+ecx]
lea eax, [esi+ebx]
mov BYTE PTR [eax-1+ecx], dl
sub ecx, 1
jne L10
L49:
vzeroupper
L3:
mov eax, DWORD PTR [ebp+8]
lea esp, [ebp-12]
pop ebx
.cfi_remember_state
.cfi_restore 3
pop esi
.cfi_restore 6
pop edi
.cfi_restore 7
pop ebp
.cfi_restore 5
.cfi_def_cfa 4, 4
ret
.p2align 4,,10
.p2align 3
L2:
.cfi_restore_state
cmp DWORD PTR [ebp+8], edx
je L3
test eax, eax
je L3
lea ecx, [eax-1]
lea esi, [edx+1]
cmp ecx, 30
jbe L13
mov ebx, DWORD PTR [ebp+8]
sub ebx, esi
cmp ebx, 62
jbe L13
cmp ecx, 62
jbe L24
mov ecx, eax
mov ebx, DWORD PTR [ebp+8]
mov edi, edx
and ecx, -64
lea esi, [ecx+edx]
.p2align 5
.p2align 4
.p2align 3
L15:
vmovdqu8 zmm0, ZMMWORD PTR [edi]
add edi, 64
add ebx, 64
vmovdqu8 ZMMWORD PTR [ebx-64], zmm0
cmp esi, edi
jne L15
mov edi, DWORD PTR [ebp+8]
mov ebx, eax
mov DWORD PTR [esp+60], esi
sub ebx, ecx
add edi, ecx
cmp eax, ecx
je L49
lea esi, [ebx-1]
mov eax, ebx
cmp esi, 30
jbe L18
L14:
vmovdqu8 ymm1, YMMWORD PTR [edx+ecx]
mov edx, DWORD PTR [ebp+8]
vmovdqu8 YMMWORD PTR [edx+ecx], ymm1
mov ecx, eax
and ecx, -32
add DWORD PTR [esp+60], ecx
add edi, ecx
sub ebx, ecx
test al, 31
je L49
L18:
mov esi, DWORD PTR [esp+60]
add ebx, edi
.p2align 3
.p2align 4
.p2align 3
L20:
movsb
cmp ebx, edi
jne L20
vzeroupper
jmp L3
.p2align 4,,10
.p2align 3
L11:
mov esi, DWORD PTR [ebp+8]
jmp L45
.p2align 5
.p2align 4,,10
.p2align 3
L52:
sub ecx, 1
L45:
movzx ebx, BYTE PTR [edx-1+eax]
mov BYTE PTR [esi-1+eax], bl
mov eax, ecx
test ecx, ecx
jne L52
jmp L3
.p2align 4,,10
.p2align 3
L13:
mov edi, DWORD PTR [ebp+8]
add eax, DWORD PTR [ebp+8]
jmp L21
.p2align 5
.p2align 4,,10
.p2align 3
L53:
add esi, 1
L21:
movzx ebx, BYTE PTR [esi-1]
add edi, 1
mov BYTE PTR [edi-1], bl
cmp eax, edi
jne L53
jmp L3
L23:
mov ecx, eax
jmp L5
L24:
mov DWORD PTR [esp+60], edx
mov edi, DWORD PTR [ebp+8]
mov ebx, eax
xor ecx, ecx
jmp L14
.cfi_endproc
LFE2:
.p2align 4
.globl _memccpy
.def _memccpy; .scl 2; .type 32; .endef
_memccpy:
LFB3:
.cfi_startproc
push esi
.cfi_def_cfa_offset 8
.cfi_offset 6, -8
push ebx
.cfi_def_cfa_offset 12
.cfi_offset 3, -12
mov ecx, DWORD PTR [esp+24]
mov eax, DWORD PTR [esp+12]
mov ebx, DWORD PTR [esp+16]
movzx esi, BYTE PTR [esp+20]
test ecx, ecx
jne L55
jmp L57
.p2align 5
.p2align 4,,10
.p2align 3
L58:
add ebx, 1
add eax, 1
sub ecx, 1
je L57
L55:
movzx edx, BYTE PTR [ebx]
mov BYTE PTR [eax], dl
cmp edx, esi
jne L58
add eax, 1
pop ebx
.cfi_remember_state
.cfi_restore 3
.cfi_def_cfa_offset 8
pop esi
.cfi_restore 6
.cfi_def_cfa_offset 4
ret
.p2align 4,,10
.p2align 3
L57:
.cfi_restore_state
xor eax, eax
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 8
pop esi
.cfi_restore 6
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE3:
.p2align 4
.globl _memchr
.def _memchr; .scl 2; .type 32; .endef
_memchr:
LFB4:
.cfi_startproc
push ebx
.cfi_def_cfa_offset 8
.cfi_offset 3, -8
mov edx, DWORD PTR [esp+16]
mov eax, DWORD PTR [esp+8]
movzx ebx, BYTE PTR [esp+12]
test edx, edx
jne L67
jmp L70
.p2align 4
.p2align 4,,10
.p2align 3
L69:
add eax, 1
sub edx, 1
je L70
L67:
movzx ecx, BYTE PTR [eax]
cmp ecx, ebx
jne L69
pop ebx
.cfi_remember_state
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.p2align 4,,10
.p2align 3
L70:
.cfi_restore_state
xor eax, eax
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE4:
.p2align 4
.globl _memcmp
.def _memcmp; .scl 2; .type 32; .endef
_memcmp:
LFB5:
.cfi_startproc
push ebx
.cfi_def_cfa_offset 8
.cfi_offset 3, -8
mov eax, DWORD PTR [esp+16]
mov ecx, DWORD PTR [esp+8]
mov edx, DWORD PTR [esp+12]
test eax, eax
jne L76
jmp L75
.p2align 5
.p2align 4,,10
.p2align 3
L78:
add ecx, 1
add edx, 1
sub eax, 1
je L80
L76:
movzx ebx, BYTE PTR [edx]
cmp BYTE PTR [ecx], bl
je L78
movzx eax, BYTE PTR [ecx]
movzx edx, BYTE PTR [edx]
sub eax, edx
L75:
pop ebx
.cfi_remember_state
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.p2align 4,,10
.p2align 3
L80:
.cfi_restore_state
xor eax, eax
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE5:
.p2align 4
.globl _memcpy
.def _memcpy; .scl 2; .type 32; .endef
_memcpy:
LFB6:
.cfi_startproc
push ebx
.cfi_def_cfa_offset 8
.cfi_offset 3, -8
sub esp, 24
.cfi_def_cfa_offset 32
mov eax, DWORD PTR [esp+40]
mov ebx, DWORD PTR [esp+32]
test eax, eax
je L88
mov edx, DWORD PTR [esp+36]
mov DWORD PTR [esp+8], eax
mov DWORD PTR [esp], ebx
mov DWORD PTR [esp+4], edx
call _memcpy
L88:
add esp, 24
.cfi_def_cfa_offset 8
mov eax, ebx
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE6:
.p2align 4
.globl _memrchr
.def _memrchr; .scl 2; .type 32; .endef
_memrchr:
LFB7:
.cfi_startproc
push esi
.cfi_def_cfa_offset 8
.cfi_offset 6, -8
push ebx
.cfi_def_cfa_offset 12
.cfi_offset 3, -12
mov ebx, DWORD PTR [esp+12]
mov eax, DWORD PTR [esp+20]
movzx esi, BYTE PTR [esp+16]
lea eax, [ebx-1+eax]
sub ebx, 1
jmp L94
.p2align 4
.p2align 4,,10
.p2align 3
L96:
mov edx, eax
sub eax, 1
movzx ecx, BYTE PTR [edx]
cmp ecx, esi
je L93
L94:
cmp ebx, eax
jne L96
xor edx, edx
L93:
mov eax, edx
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 8
pop esi
.cfi_restore 6
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE7:
.p2align 4
.globl _memset
.def _memset; .scl 2; .type 32; .endef
_memset:
LFB8:
.cfi_startproc
push ebx
.cfi_def_cfa_offset 8
.cfi_offset 3, -8
sub esp, 24
.cfi_def_cfa_offset 32
mov eax, DWORD PTR [esp+40]
mov ebx, DWORD PTR [esp+32]
test eax, eax
je L101
movzx edx, BYTE PTR [esp+36]
mov DWORD PTR [esp+8], eax
mov DWORD PTR [esp], ebx
mov DWORD PTR [esp+4], edx
call _memset
L101:
add esp, 24
.cfi_def_cfa_offset 8
mov eax, ebx
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE8:
.p2align 4
.globl _stpcpy
.def _stpcpy; .scl 2; .type 32; .endef
_stpcpy:
LFB9:
.cfi_startproc
mov edx, DWORD PTR [esp+8]
mov eax, DWORD PTR [esp+4]
movzx ecx, BYTE PTR [edx]
mov BYTE PTR [eax], cl
test cl, cl
je L104
.p2align 4
.p2align 4
.p2align 3
L105:
movzx ecx, BYTE PTR [edx+1]
add edx, 1
add eax, 1
mov BYTE PTR [eax], cl
test cl, cl
jne L105
L104:
ret
.cfi_endproc
LFE9:
.p2align 4
.globl _strchrnul
.def _strchrnul; .scl 2; .type 32; .endef
_strchrnul:
LFB10:
.cfi_startproc
mov edx, DWORD PTR [esp+4]
movzx ecx, BYTE PTR [esp+8]
movzx eax, BYTE PTR [edx]
test al, al
jne L111
jmp L110
.p2align 4
.p2align 4,,10
.p2align 3
L113:
movzx eax, BYTE PTR [edx+1]
add edx, 1
test al, al
je L110
L111:
cmp eax, ecx
jne L113
L110:
mov eax, edx
ret
.cfi_endproc
LFE10:
.p2align 4
.globl _strchr
.def _strchr; .scl 2; .type 32; .endef
_strchr:
LFB11:
.cfi_startproc
push ebx
.cfi_def_cfa_offset 8
.cfi_offset 3, -8
mov eax, DWORD PTR [esp+8]
mov ebx, DWORD PTR [esp+12]
jmp L120
.p2align 4
.p2align 4,,10
.p2align 3
L124:
add eax, 1
test cl, cl
je L123
L120:
movsx ecx, BYTE PTR [eax]
cmp ecx, ebx
jne L124
pop ebx
.cfi_remember_state
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.p2align 4,,10
.p2align 3
L123:
.cfi_restore_state
xor eax, eax
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE11:
.p2align 4
.globl _strcmp
.def _strcmp; .scl 2; .type 32; .endef
_strcmp:
LFB12:
.cfi_startproc
push ebx
.cfi_def_cfa_offset 8
.cfi_offset 3, -8
mov edx, DWORD PTR [esp+8]
mov ecx, DWORD PTR [esp+12]
movzx eax, BYTE PTR [edx]
movzx ebx, BYTE PTR [ecx]
cmp al, bl
je L126
jmp L127
.p2align 5
.p2align 4,,10
.p2align 3
L128:
movzx eax, BYTE PTR [edx+1]
movzx ebx, BYTE PTR [ecx+1]
add edx, 1
add ecx, 1
cmp al, bl
jne L127
L126:
test al, al
jne L128
xor eax, eax
L127:
sub eax, ebx
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 4
ret
.cfi_endproc
LFE12:
.p2align 4
.globl _strlen
.def _strlen; .scl 2; .type 32; .endef
_strlen:
LFB13:
.cfi_startproc
mov edx, DWORD PTR [esp+4]
cmp BYTE PTR [edx], 0
je L137
mov eax, edx
.p2align 3
.p2align 4
.p2align 3
L136:
add eax, 1
cmp BYTE PTR [eax], 0
jne L136
sub eax, edx
ret
.p2align 4,,10
.p2align 3
L137:
xor eax, eax
ret
.cfi_endproc
LFE13:
.p2align 4
.globl _strncmp
.def _strncmp; .scl 2; .type 32; .endef
_strncmp:
LFB14:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
xor eax, eax
push edi
.cfi_def_cfa_offset 12
.cfi_offset 7, -12
push esi
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
push ebx
.cfi_def_cfa_offset 20
.cfi_offset 3, -20
sub esp, 4
.cfi_def_cfa_offset 24
mov ebp, DWORD PTR [esp+32]
test ebp, ebp
je L139
mov eax, DWORD PTR [esp+24]
mov edx, DWORD PTR [esp+28]
sub ebp, 1
movzx eax, BYTE PTR [eax]
add ebp, edx
test al, al
jne L143
jmp L158
.p2align 4,,10
.p2align 3
L160:
cmp edx, ebp
je L142
add DWORD PTR [esp+24], 1
mov eax, DWORD PTR [esp+24]
lea esi, [edx+1]
movzx eax, BYTE PTR [eax]
test al, al
je L159
mov edx, esi
L143:
movzx ecx, BYTE PTR [edx]
test cl, cl
mov BYTE PTR [esp+3], cl
setne bl
cmp cl, al
sete cl
test bl, cl
jne L160
L142:
movzx edi, BYTE PTR [esp+3]
sub eax, edi
L139:
add esp, 4
.cfi_remember_state
.cfi_def_cfa_offset 20
pop ebx
.cfi_restore 3
.cfi_def_cfa_offset 16
pop esi
.cfi_restore 6
.cfi_def_cfa_offset 12
pop edi
.cfi_restore 7
.cfi_def_cfa_offset 8
pop ebp
.cfi_restore 5
.cfi_def_cfa_offset 4
ret
.p2align 4,,10
.p2align 3
L159:
.cfi_restore_state
movzx edx, BYTE PTR [edx+1]
xor eax, eax
mov BYTE PTR [esp+3], dl
jmp L142
L158:
movzx ecx, BYTE PTR [edx]
xor eax, eax
mov BYTE PTR [esp+3], cl
jmp L142
.cfi_endproc
LFE14:
.p2align 4
.globl _swab
.def _swab; .scl 2; .type 32; .endef
_swab:
LFB15:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
push edi
push esi
push ebx
and esp, -64
sub esp, 64
.cfi_offset 7, -12
.cfi_offset 6, -16
.cfi_offset 3, -20
mov ecx, DWORD PTR [ebp+16]
cmp ecx, 1
jle L188
mov esi, ecx
lea edx, [ecx-2]
shr esi
lea eax, [esi-1]
mov DWORD PTR [esp+60], eax
cmp edx, 61
jbe L168
mov eax, DWORD PTR [ebp+8]
mov edi, ecx
mov ebx, ecx
mov edx, DWORD PTR [ebp+12]
and edi, -64
shr ebx, 6
vmovdqa64 zmm1, ZMMWORD PTR LC0
add edi, eax
.p2align 5
.p2align 4
.p2align 3
L164:
vmovdqu8 zmm0, ZMMWORD PTR [eax]
add eax, 64
add edx, 64
vpshufb zmm2, zmm0, zmm1
vmovdqu8 ZMMWORD PTR [edx-64], zmm2
cmp eax, edi
jne L164
mov edi, ebx
mov edx, DWORD PTR [ebp+12]
mov eax, DWORD PTR [ebp+8]
sal ebx, 6
sal edi, 5
add edx, ebx
add eax, ebx
mov ebx, edi
neg ebx
lea ecx, [ecx+ebx*2]
cmp edi, esi
je L187
L163:
mov ebx, DWORD PTR [esp+60]
sub ebx, edi
lea esi, [ebx+1]
cmp ebx, 14
jbe L166
mov ebx, DWORD PTR [ebp+8]
vmovdqu8 ymm3, YMMWORD PTR [ebx+edi*2]
mov ebx, DWORD PTR [ebp+12]
vpshufb ymm4, ymm3, YMMWORD PTR LC1
vmovdqu8 YMMWORD PTR [ebx+edi*2], ymm4
mov ebx, esi
and ebx, -16
lea edi, [ebx+ebx]
neg ebx
add edx, edi
add eax, edi
lea ecx, [ecx+ebx*2]
and esi, 15
je L187
L166:
movbe si, WORD PTR [eax]
mov WORD PTR [edx], si
cmp ecx, 3
jle L187
movbe bx, WORD PTR [eax+2]
mov WORD PTR [edx+2], bx
cmp ecx, 5
jle L187
movbe di, WORD PTR [eax+4]
mov WORD PTR [edx+4], di
cmp ecx, 7
jle L187
movbe si, WORD PTR [eax+6]
mov WORD PTR [edx+6], si
cmp ecx, 9
jle L187
movbe bx, WORD PTR [eax+8]
mov WORD PTR [edx+8], bx
cmp ecx, 11
jle L187
movbe di, WORD PTR [eax+10]
mov WORD PTR [edx+10], di
cmp ecx, 13
jle L187
movbe si, WORD PTR [eax+12]
mov WORD PTR [edx+12], si
cmp ecx, 15
jle L187
movbe bx, WORD PTR [eax+14]
mov WORD PTR [edx+14], bx
cmp ecx, 17
jle L187
movbe di, WORD PTR [eax+16]
mov WORD PTR [edx+16], di
cmp ecx, 19
jle L187
movbe si, WORD PTR [eax+18]
mov WORD PTR [edx+18], si
cmp ecx, 21
jle L187
movbe bx, WORD PTR [eax+20]
mov WORD PTR [edx+20], bx
cmp ecx, 23
jle L187
movbe di, WORD PTR [eax+22]
mov WORD PTR [edx+22], di
cmp ecx, 25
jle L187
movbe si, WORD PTR [eax+24]
mov WORD PTR [edx+24], si
cmp ecx, 27
jle L187
movbe bx, WORD PTR [eax+26]
mov WORD PTR [edx+26], bx
cmp ecx, 29
jle L187
movbe ax, WORD PTR [eax+28]
mov WORD PTR [edx+28], ax
vzeroupper
lea esp, [ebp-12]
pop ebx
.cfi_remember_state
.cfi_restore 3
pop esi
.cfi_restore 6
pop edi
.cfi_restore 7
pop ebp
.cfi_restore 5
.cfi_def_cfa 4, 4
ret
.p2align 4,,10
.p2align 3
L187:
.cfi_restore_state
vzeroupper
L188:
lea esp, [ebp-12]
pop ebx
.cfi_remember_state
.cfi_restore 3
pop esi
.cfi_restore 6
pop edi
.cfi_restore 7
pop ebp
.cfi_restore 5
.cfi_def_cfa 4, 4
ret
L168:
.cfi_restore_state
mov edx, DWORD PTR [ebp+12]
mov eax, DWORD PTR [ebp+8]
xor edi, edi
jmp L163
.cfi_endproc
LFE15:
.p2align 4
.globl _isalpha
.def _isalpha; .scl 2; .type 32; .endef
_isalpha:
LFB16:
.cfi_startproc
mov eax, DWORD PTR [esp+4]
or eax, 32
sub eax, 97
cmp eax, 25
setbe dl
movzx eax, dl
ret
.cfi_endproc
LFE16:
.p2align 4
.globl _isascii
.def _isascii; .scl 2; .type 32; .endef
_isascii:
LFB17:
.cfi_startproc
xor eax, eax
cmp DWORD PTR [esp+4], 127
setbe al
ret
.cfi_endproc
LFE17:
.p2align 4
.globl _isblank
.def _isblank; .scl 2; .type 32; .endef
_isblank:
LFB18:
.cfi_startproc
mov edx, DWORD PTR [esp+4]
cmp edx, 32
sete al
cmp edx, 9
sete cl
or eax, ecx
movzx eax, al
ret
.cfi_endproc
LFE18:
.p2align 4
.globl _iscntrl
.def _iscntrl; .scl 2; .type 32; .endef
_iscntrl:
LFB19:
.cfi_startproc
mov edx, DWORD PTR [esp+4]
cmp edx, 31
setbe al
cmp edx, 127
sete cl
or eax, ecx
movzx eax, al
ret
.cfi_endproc
LFE19:
.p2align 4
.globl _isdigit
.def _isdigit; .scl 2; .type 32; .endef
_isdigit:
LFB20:
.cfi_startproc
mov eax, DWORD PTR [esp+4]
sub eax, 48
cmp eax, 9
setbe dl
movzx eax, dl
ret
.cfi_endproc
LFE20:
.p2align 4
.globl _isgraph
.def _isgraph; .scl 2; .type 32; .endef
_isgraph:
LFB21:
.cfi_startproc
mov eax, DWORD PTR [esp+4]
sub eax, 33
cmp eax, 93
setbe dl
movzx eax, dl
ret
.cfi_endproc
LFE21:
.p2align 4
.globl _islower
.def _islower; .scl 2; .type 32; .endef
_islower:
LFB22:
.cfi_startproc
mov eax, DWORD PTR [esp+4]
sub eax, 97
cmp eax, 25
setbe dl
movzx eax, dl
ret
.cfi_endproc
LFE22:
.p2align 4