-
Notifications
You must be signed in to change notification settings - Fork 0
/
y.tab.s
3936 lines (3885 loc) · 124 KB
/
y.tab.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
.section __TEXT,__text,regular,pure_instructions
.build_version macos, 13, 0 sdk_version 13, 0
.globl _yyparse ## -- Begin function yyparse
.p2align 4, 0x90
_yyparse: ## @yyparse
.cfi_startproc
## %bb.0:
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset %rbp, -16
movq %rsp, %rbp
.cfi_def_cfa_register %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $2056, %rsp ## imm = 0x808
.cfi_offset %rbx, -56
.cfi_offset %r12, -48
.cfi_offset %r13, -40
.cfi_offset %r14, -32
.cfi_offset %r15, -24
movq ___stack_chk_guard@GOTPCREL(%rip), %rax
movq (%rax), %rax
movq %rax, -48(%rbp)
leaq -448(%rbp), %r13
leaq -2048(%rbp), %rcx
movq _yynerrs@GOTPCREL(%rip), %rax
movl $0, (%rax)
movq _yychar@GOTPCREL(%rip), %r14
movl $-2, (%r14)
xorl %edx, %edx
movl $200, %ebx
movq %r13, -2080(%rbp) ## 8-byte Spill
movq %rcx, -2088(%rbp) ## 8-byte Spill
movq %rcx, %r15
jmp LBB0_4
.p2align 4, 0x90
LBB0_1: ## in Loop: Header=BB0_4 Depth=1
leaq _yydefgoto(%rip), %rcx
movsbl -33(%rax,%rcx), %edx
LBB0_2: ## in Loop: Header=BB0_4 Depth=1
movq -2064(%rbp), %rbx ## 8-byte Reload
LBB0_3: ## in Loop: Header=BB0_4 Depth=1
addq $2, %r13
LBB0_4: ## =>This Inner Loop Header: Depth=1
movw %dx, (%r13)
movq -2080(%rbp), %rax ## 8-byte Reload
leaq (%rax,%rbx,2), %rax
addq $-2, %rax
cmpq %r13, %rax
jbe LBB0_6
## %bb.5: ## in Loop: Header=BB0_4 Depth=1
movq %r13, -2072(%rbp) ## 8-byte Spill
movq %r15, %r13
movq %rbx, -2064(%rbp) ## 8-byte Spill
jmp LBB0_12
.p2align 4, 0x90
LBB0_6: ## in Loop: Header=BB0_4 Depth=1
movl %edx, -2056(%rbp) ## 4-byte Spill
cmpq $9999, %rbx ## imm = 0x270F
ja LBB0_72
## %bb.7: ## in Loop: Header=BB0_4 Depth=1
addq %rbx, %rbx
cmpq $10000, %rbx ## imm = 0x2710
movl $10000, %eax ## imm = 0x2710
cmovaeq %rax, %rbx
leaq (%rbx,%rbx,4), %rax
leaq (%rax,%rax), %rdi
addq $7, %rdi
callq _malloc
testq %rax, %rax
je LBB0_72
## %bb.8: ## in Loop: Header=BB0_4 Depth=1
movq %rax, %r12
movq -2080(%rbp), %r15 ## 8-byte Reload
subq %r15, %r13
movq %r13, %r14
sarq %r14
leaq 1(%r14), %r13
movq %r13, %rdx
addq %r13, %rdx
movq %rax, %rdi
movq %r15, %rsi
callq _memcpy
movq %rbx, -2064(%rbp) ## 8-byte Spill
addq %rbx, %rbx
addq $7, %rbx
andq $-8, %rbx
addq %r12, %rbx
shlq $3, %r13
movq %rbx, %rdi
movq -2088(%rbp), %rsi ## 8-byte Reload
movq %r13, %rdx
callq _memcpy
leaq -448(%rbp), %rax
cmpq %rax, %r15
je LBB0_10
## %bb.9: ## in Loop: Header=BB0_4 Depth=1
movq %r15, %rdi
callq _free
LBB0_10: ## in Loop: Header=BB0_4 Depth=1
leaq (%r12,%r14,2), %rcx
movq -2064(%rbp), %rax ## 8-byte Reload
leaq (%r12,%rax,2), %rax
addq $-2, %rax
cmpq %rcx, %rax
jbe LBB0_67
## %bb.11: ## in Loop: Header=BB0_4 Depth=1
movq %rcx, -2072(%rbp) ## 8-byte Spill
leaq (%rbx,%r14,8), %r13
movq %r12, -2080(%rbp) ## 8-byte Spill
movq %rbx, -2088(%rbp) ## 8-byte Spill
movq _yychar@GOTPCREL(%rip), %r14
movl -2056(%rbp), %edx ## 4-byte Reload
LBB0_12: ## %.thread288
## in Loop: Header=BB0_4 Depth=1
movslq %edx, %r15
leaq _yypact(%rip), %rax
movsbl (%r15,%rax), %ebx
cmpl $-41, %ebx
je LBB0_28
## %bb.13: ## in Loop: Header=BB0_4 Depth=1
movl (%r14), %eax
cmpl $-2, %eax
jne LBB0_15
## %bb.14: ## in Loop: Header=BB0_4 Depth=1
callq _yylex
movl %eax, (%r14)
LBB0_15: ## in Loop: Header=BB0_4 Depth=1
testl %eax, %eax
jle LBB0_18
## %bb.16: ## in Loop: Header=BB0_4 Depth=1
cmpl $287, %eax ## imm = 0x11F
ja LBB0_19
## %bb.17: ## in Loop: Header=BB0_4 Depth=1
movl %eax, %eax
leaq _yytranslate(%rip), %rcx
movzbl (%rax,%rcx), %ecx
jmp LBB0_20
LBB0_18: ## in Loop: Header=BB0_4 Depth=1
movl $0, (%r14)
xorl %ecx, %ecx
movb $1, %al
jmp LBB0_21
LBB0_19: ## in Loop: Header=BB0_4 Depth=1
movl $2, %ecx
LBB0_20: ## in Loop: Header=BB0_4 Depth=1
xorl %eax, %eax
LBB0_21: ## in Loop: Header=BB0_4 Depth=1
addl %ecx, %ebx
cmpl $68, %ebx
ja LBB0_28
## %bb.22: ## in Loop: Header=BB0_4 Depth=1
movl %ebx, %edx
leaq _yycheck(%rip), %rsi
movsbl (%rdx,%rsi), %esi
cmpl %esi, %ecx
jne LBB0_28
## %bb.23: ## in Loop: Header=BB0_4 Depth=1
leaq -65(%rdx), %rcx
cmpq $3, %rcx
jb LBB0_73
## %bb.24: ## in Loop: Header=BB0_4 Depth=1
cmpl $17, %ebx
je LBB0_71
## %bb.25: ## in Loop: Header=BB0_4 Depth=1
movq %r13, %r15
testb %al, %al
jne LBB0_27
## %bb.26: ## in Loop: Header=BB0_4 Depth=1
movl $-2, (%r14)
LBB0_27: ## in Loop: Header=BB0_4 Depth=1
leaq _yytable(%rip), %rax
movzbl (%rdx,%rax), %edx
movq _yylval@GOTPCREL(%rip), %rax
movq (%rax), %rax
movq %rax, 8(%r15)
addq $8, %r15
movq -2064(%rbp), %rbx ## 8-byte Reload
movq -2072(%rbp), %r13 ## 8-byte Reload
jmp LBB0_3
.p2align 4, 0x90
LBB0_28: ## in Loop: Header=BB0_4 Depth=1
leaq _yydefact(%rip), %rax
movzbl (%r15,%rax), %ebx
testq %rbx, %rbx
je LBB0_73
## %bb.29: ## in Loop: Header=BB0_4 Depth=1
leaq _yyr2(%rip), %rax
movzbl (%rbx,%rax), %edx
leal -2(%rbx), %eax
cmpb $41, %al
movq %r13, %r15
ja LBB0_39
## %bb.30: ## in Loop: Header=BB0_4 Depth=1
movzbl %al, %eax
leaq LJTI0_0(%rip), %rcx
movslq (%rcx,%rax,4), %rax
addq %rcx, %rax
movq -2072(%rbp), %r13 ## 8-byte Reload
jmpq *%rax
LBB0_31: ## in Loop: Header=BB0_4 Depth=1
movq _yytext@GOTPCREL(%rip), %rax
movq (%rax), %rsi
leaq L_.str.18(%rip), %rdi
LBB0_32: ## in Loop: Header=BB0_4 Depth=1
movq %rdx, %r12
callq _leaf
jmp LBB0_60
LBB0_33: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rsi
leaq L_.str(%rip), %rdi
jmp LBB0_58
LBB0_34: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rsi
leaq L_.str.1(%rip), %rdi
jmp LBB0_58
LBB0_35: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %r12
movq %r12, %rdi
movq %rdx, -2056(%rbp) ## 8-byte Spill
callq _tree
movq -2056(%rbp), %rdx ## 8-byte Reload
jmp LBB0_62
LBB0_36: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rsi
leaq L_.str.2(%rip), %rdi
jmp LBB0_58
LBB0_37: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %rsi
leaq L_.str.11(%rip), %rdi
jmp LBB0_58
LBB0_38: ## in Loop: Header=BB0_4 Depth=1
movq -16(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
leaq L_.str.11(%rip), %rdi
jmp LBB0_55
LBB0_39: ## in Loop: Header=BB0_4 Depth=1
movl $1, %eax
subq %rdx, %rax
movq (%r15,%rax,8), %r12
movq -2072(%rbp), %r13 ## 8-byte Reload
jmp LBB0_62
LBB0_40: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %r12
jmp LBB0_62
LBB0_41: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
leaq L_.str.3(%rip), %rdi
jmp LBB0_55
LBB0_42: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
leaq L_.str.4(%rip), %rdi
jmp LBB0_55
LBB0_43: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
leaq L_.str.5(%rip), %rdi
jmp LBB0_55
LBB0_44: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
leaq L_.str.6(%rip), %rdi
jmp LBB0_55
LBB0_45: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
leaq L_.str.7(%rip), %rdi
jmp LBB0_55
LBB0_46: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
jmp LBB0_60
LBB0_47: ## in Loop: Header=BB0_4 Depth=1
movq -16(%r15), %rax
movq %rax, -2056(%rbp) ## 8-byte Spill
movq -8(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
movq -2056(%rbp), %rdi ## 8-byte Reload
movq %rax, %rsi
callq _cons
jmp LBB0_60
LBB0_48: ## in Loop: Header=BB0_4 Depth=1
movq -24(%r15), %rdi
movq -16(%r15), %rsi
movq %rdx, -2056(%rbp) ## 8-byte Spill
callq _cons
movq %rax, %r12
movq -8(%r15), %rdi
movq (%r15), %rsi
callq _cons
movq %r12, %rdi
movq %rax, %rsi
callq _cons
movq -2056(%rbp), %rdx ## 8-byte Reload
jmp LBB0_61
LBB0_49: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %rsi
leaq L_.str.8(%rip), %rdi
jmp LBB0_58
LBB0_50: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %rsi
leaq L_.str.9(%rip), %rdi
jmp LBB0_58
LBB0_51: ## in Loop: Header=BB0_4 Depth=1
movq -8(%r15), %rsi
leaq L_.str.9(%rip), %rdi
movq %rdx, %r12
callq _node
movq (%r15), %rsi
movq %rax, %rdi
callq _cons
jmp LBB0_60
LBB0_52: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %rsi
leaq L_.str.10(%rip), %rdi
jmp LBB0_58
LBB0_53: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %rsi
leaq L_.str.12(%rip), %rdi
jmp LBB0_58
LBB0_54: ## in Loop: Header=BB0_4 Depth=1
movq -16(%r15), %rdi
movq (%r15), %rsi
movq %rdx, %r12
callq _cons
leaq L_.str.13(%rip), %rdi
LBB0_55: ## in Loop: Header=BB0_4 Depth=1
movq %rax, %rsi
jmp LBB0_59
LBB0_56: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %rsi
leaq L_.str.14(%rip), %rdi
jmp LBB0_58
LBB0_57: ## in Loop: Header=BB0_4 Depth=1
movq (%r15), %rsi
leaq L_.str.15(%rip), %rdi
.p2align 4, 0x90
LBB0_58: ## in Loop: Header=BB0_4 Depth=1
movq %rdx, %r12
LBB0_59: ## in Loop: Header=BB0_4 Depth=1
callq _node
LBB0_60: ## in Loop: Header=BB0_4 Depth=1
movq %r12, %rdx
LBB0_61: ## in Loop: Header=BB0_4 Depth=1
movq %rax, %r12
LBB0_62: ## in Loop: Header=BB0_4 Depth=1
leaq (,%rdx,8), %rax
subq %rax, %r15
addq %rdx, %rdx
subq %rdx, %r13
movq %r12, 8(%r15)
addq $8, %r15
leaq _yyr1(%rip), %rax
movzbl (%rbx,%rax), %eax
leaq _yypgoto(%rip), %rcx
movsbl -33(%rax,%rcx), %edx
movswl (%r13), %ecx
addl %ecx, %edx
cmpl $68, %edx
ja LBB0_1
## %bb.63: ## in Loop: Header=BB0_4 Depth=1
movl %edx, %edx
leaq _yycheck(%rip), %rsi
movsbl (%rdx,%rsi), %esi
cmpw %si, %cx
jne LBB0_1
## %bb.64: ## in Loop: Header=BB0_4 Depth=1
leaq _yytable(%rip), %rax
movzbl (%rdx,%rax), %edx
jmp LBB0_2
LBB0_65: ## in Loop: Header=BB0_4 Depth=1
movq _yytext@GOTPCREL(%rip), %rax
movq (%rax), %rsi
leaq L_.str.16(%rip), %rdi
jmp LBB0_32
LBB0_66: ## in Loop: Header=BB0_4 Depth=1
movq _yytext@GOTPCREL(%rip), %rax
movq (%rax), %rsi
leaq L_.str.17(%rip), %rdi
jmp LBB0_32
LBB0_67: ## %.thread295.thread.loopexit
movl $1, %ebx
movq %r12, %rdi
LBB0_68: ## %.thread295.thread
callq _free
LBB0_69:
movq ___stack_chk_guard@GOTPCREL(%rip), %rax
movq (%rax), %rax
cmpq -48(%rbp), %rax
jne LBB0_74
## %bb.70:
movl %ebx, %eax
addq $2056, %rsp ## imm = 0x808
popq %rbx
popq %r12
popq %r13
popq %r14
popq %r15
popq %rbp
retq
LBB0_71: ## %.thread295
xorl %ebx, %ebx
leaq -448(%rbp), %rax
movq -2080(%rbp), %rdi ## 8-byte Reload
cmpq %rax, %rdi
jne LBB0_68
jmp LBB0_69
LBB0_72:
leaq L_.str.22(%rip), %rdi
callq _yyerror
LBB0_73:
movq _yynerrs@GOTPCREL(%rip), %rax
addl $1, (%rax)
leaq L_.str.19(%rip), %rdi
callq _yyerror
LBB0_74:
callq ___stack_chk_fail
.cfi_endproc
.p2align 2, 0x90
.data_region jt32
.set L0_0_set_40, LBB0_40-LJTI0_0
.set L0_0_set_35, LBB0_35-LJTI0_0
.set L0_0_set_33, LBB0_33-LJTI0_0
.set L0_0_set_34, LBB0_34-LJTI0_0
.set L0_0_set_36, LBB0_36-LJTI0_0
.set L0_0_set_41, LBB0_41-LJTI0_0
.set L0_0_set_42, LBB0_42-LJTI0_0
.set L0_0_set_43, LBB0_43-LJTI0_0
.set L0_0_set_44, LBB0_44-LJTI0_0
.set L0_0_set_45, LBB0_45-LJTI0_0
.set L0_0_set_46, LBB0_46-LJTI0_0
.set L0_0_set_47, LBB0_47-LJTI0_0
.set L0_0_set_48, LBB0_48-LJTI0_0
.set L0_0_set_49, LBB0_49-LJTI0_0
.set L0_0_set_50, LBB0_50-LJTI0_0
.set L0_0_set_51, LBB0_51-LJTI0_0
.set L0_0_set_52, LBB0_52-LJTI0_0
.set L0_0_set_37, LBB0_37-LJTI0_0
.set L0_0_set_38, LBB0_38-LJTI0_0
.set L0_0_set_53, LBB0_53-LJTI0_0
.set L0_0_set_54, LBB0_54-LJTI0_0
.set L0_0_set_56, LBB0_56-LJTI0_0
.set L0_0_set_57, LBB0_57-LJTI0_0
.set L0_0_set_65, LBB0_65-LJTI0_0
.set L0_0_set_66, LBB0_66-LJTI0_0
.set L0_0_set_31, LBB0_31-LJTI0_0
LJTI0_0:
.long L0_0_set_40
.long L0_0_set_35
.long L0_0_set_35
.long L0_0_set_33
.long L0_0_set_34
.long L0_0_set_33
.long L0_0_set_34
.long L0_0_set_33
.long L0_0_set_34
.long L0_0_set_36
.long L0_0_set_36
.long L0_0_set_41
.long L0_0_set_42
.long L0_0_set_43
.long L0_0_set_44
.long L0_0_set_45
.long L0_0_set_46
.long L0_0_set_47
.long L0_0_set_48
.long L0_0_set_49
.long L0_0_set_50
.long L0_0_set_51
.long L0_0_set_52
.long L0_0_set_37
.long L0_0_set_38
.long L0_0_set_37
.long L0_0_set_38
.long L0_0_set_53
.long L0_0_set_54
.long L0_0_set_56
.long L0_0_set_57
.long L0_0_set_65
.long L0_0_set_66
.long L0_0_set_31
.long L0_0_set_31
.long L0_0_set_31
.long L0_0_set_31
.long L0_0_set_31
.long L0_0_set_31
.long L0_0_set_31
.long L0_0_set_31
.long L0_0_set_31
.end_data_region
## -- End function
.globl _yylex ## -- Begin function yylex
.p2align 4, 0x90
_yylex: ## @yylex
.cfi_startproc
## %bb.0:
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset %rbp, -16
movq %rsp, %rbp
.cfi_def_cfa_register %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
.cfi_offset %rbx, -56
.cfi_offset %r12, -48
.cfi_offset %r13, -40
.cfi_offset %r14, -32
.cfi_offset %r15, -24
cmpb $0, _yy_init(%rip)
jne LBB1_11
## %bb.1:
movb $1, _yy_init(%rip)
cmpb $0, _yy_start(%rip)
je LBB1_2
## %bb.3:
cmpq $0, _yyin(%rip)
je LBB1_4
LBB1_5:
cmpq $0, _yyout(%rip)
je LBB1_6
LBB1_7:
movq _yy_buffer_stack(%rip), %rcx
testq %rcx, %rcx
je LBB1_9
## %bb.8:
movq _yy_buffer_stack_top(%rip), %rdx
movq (%rcx,%rdx,8), %rax
testq %rax, %rax
jne LBB1_10
LBB1_9:
callq _yyensure_buffer_stack
movq _yyin(%rip), %rdi
movl $16384, %esi ## imm = 0x4000
callq _yy_create_buffer
movq _yy_buffer_stack(%rip), %rcx
movq _yy_buffer_stack_top(%rip), %rdx
movq %rax, (%rcx,%rdx,8)
LBB1_10:
movq 32(%rax), %rsi
movq %rsi, _yy_n_chars(%rip)
movq 16(%rax), %rax
movq %rax, _yy_c_buf_p(%rip)
movq _yytext@GOTPCREL(%rip), %rsi
movq %rax, (%rsi)
movq (%rcx,%rdx,8), %rcx
movq (%rcx), %rcx
movq %rcx, _yyin(%rip)
movb (%rax), %al
movb %al, _yy_hold_char(%rip)
LBB1_11: ## %yy_get_previous_state.exit118.thread.preheader
leaq _yy_ec(%rip), %r9
leaq _yy_accept(%rip), %r10
leaq _yy_base(%rip), %r13
leaq _yy_chk(%rip), %r12
leaq _yy_nxt(%rip), %r11
movq _yytext@GOTPCREL(%rip), %r8
leaq _yy_def(%rip), %r14
LBB1_12: ## %yy_get_previous_state.exit118.thread
## =>This Loop Header: Depth=1
## Child Loop BB1_14 Depth 2
## Child Loop BB1_17 Depth 3
## Child Loop BB1_24 Depth 3
## Child Loop BB1_27 Depth 4
## Child Loop BB1_65 Depth 4
## Child Loop BB1_71 Depth 5
## Child Loop BB1_80 Depth 4
## Child Loop BB1_102 Depth 4
## Child Loop BB1_108 Depth 5
## Child Loop BB1_89 Depth 3
## Child Loop BB1_95 Depth 4
movq _yy_c_buf_p(%rip), %r15
movb _yy_hold_char(%rip), %al
movb %al, (%r15)
movzbl _yy_start(%rip), %ecx
movq %r15, -48(%rbp) ## 8-byte Spill
jmp LBB1_14
.p2align 4, 0x90
LBB1_21: ## %._crit_edge
## in Loop: Header=BB1_14 Depth=2
movswq (%r11,%rdi,2), %rcx
addq $1, %r15
movzwl (%r13,%rcx,2), %eax
cmpl $135, %eax
je LBB1_22
LBB1_14: ## Parent Loop BB1_12 Depth=1
## => This Loop Header: Depth=2
## Child Loop BB1_17 Depth 3
## Child Loop BB1_24 Depth 3
## Child Loop BB1_27 Depth 4
## Child Loop BB1_65 Depth 4
## Child Loop BB1_71 Depth 5
## Child Loop BB1_80 Depth 4
## Child Loop BB1_102 Depth 4
## Child Loop BB1_108 Depth 5
## Child Loop BB1_89 Depth 3
## Child Loop BB1_95 Depth 4
movzbl (%r15), %edx
movslq %ecx, %rax
cmpw $0, (%r10,%rax,2)
je LBB1_16
## %bb.15: ## in Loop: Header=BB1_14 Depth=2
movl %ecx, _yy_last_accepting_state(%rip)
movq %r15, _yy_last_accepting_cpos(%rip)
LBB1_16: ## in Loop: Header=BB1_14 Depth=2
movb (%rdx,%r9), %dl
movzbl %dl, %esi
movswq (%r13,%rax,2), %rdi
addq %rsi, %rdi
movswl (%r12,%rdi,2), %ebx
cmpl %ebx, %ecx
leaq _yy_meta(%rip), %rbx
jne LBB1_17
jmp LBB1_21
.p2align 4, 0x90
LBB1_19: ## in Loop: Header=BB1_17 Depth=3
movzbl (%rsi,%rbx), %edx
LBB1_20: ## in Loop: Header=BB1_17 Depth=3
movswl (%r14,%rax,2), %ecx
movslq %ecx, %rax
movswq (%r13,%rax,2), %rdi
movzbl %dl, %esi
addq %rsi, %rdi
cmpw (%r12,%rdi,2), %ax
je LBB1_21
LBB1_17: ## %.lr.ph
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## => This Inner Loop Header: Depth=3
cmpl $30, %ecx
je LBB1_19
## %bb.18: ## %.lr.ph
## in Loop: Header=BB1_17 Depth=3
cmpl $8, %ecx
je LBB1_19
jmp LBB1_20
LBB1_22: ## %.preheader.preheader
## in Loop: Header=BB1_14 Depth=2
movl %ecx, %eax
LBB1_24: ## %.preheader
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## => This Loop Header: Depth=3
## Child Loop BB1_27 Depth 4
## Child Loop BB1_65 Depth 4
## Child Loop BB1_71 Depth 5
## Child Loop BB1_80 Depth 4
## Child Loop BB1_102 Depth 4
## Child Loop BB1_108 Depth 5
cltq
movzwl (%r10,%rax,2), %eax
testw %ax, %ax
movq -48(%rbp), %rdx ## 8-byte Reload
jne LBB1_26
## %bb.25: ## in Loop: Header=BB1_24 Depth=3
movq _yy_last_accepting_cpos(%rip), %r15
movslq _yy_last_accepting_state(%rip), %rax
movzwl (%r10,%rax,2), %eax
LBB1_26: ## in Loop: Header=BB1_24 Depth=3
cwtl
movq %rdx, (%r8)
movq %r15, %rcx
subq %rdx, %rcx
movq _yyleng@GOTPCREL(%rip), %rdx
movq %rcx, (%rdx)
movb (%r15), %cl
movb %cl, _yy_hold_char(%rip)
movb $0, (%r15)
movq %r15, %rcx
LBB1_27: ## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## Parent Loop BB1_24 Depth=3
## => This Inner Loop Header: Depth=4
movq %rcx, _yy_c_buf_p(%rip)
cmpl $38, %eax
ja LBB1_114
## %bb.28: ## in Loop: Header=BB1_27 Depth=4
movl %eax, %eax
leaq LJTI1_0(%rip), %rcx
movslq (%rcx,%rax,4), %rax
addq %rcx, %rax
jmpq *%rax
LBB1_59: ## in Loop: Header=BB1_27 Depth=4
movq (%r8), %rbx
movzbl _yy_hold_char(%rip), %eax
movb %al, (%r15)
movq _yy_buffer_stack(%rip), %rdx
movq _yy_buffer_stack_top(%rip), %rsi
movq (%rdx,%rsi,8), %rax
cmpl $0, 64(%rax)
je LBB1_61
## %bb.60: ## %._crit_edge335
## in Loop: Header=BB1_27 Depth=4
movq _yy_n_chars(%rip), %rcx
jmp LBB1_62
LBB1_61: ## in Loop: Header=BB1_27 Depth=4
movq 32(%rax), %rcx
movq %rcx, _yy_n_chars(%rip)
movq _yyin(%rip), %rdi
movq %rdi, (%rax)
movq (%rdx,%rsi,8), %rax
movl $1, 64(%rax)
LBB1_62: ## in Loop: Header=BB1_27 Depth=4
addq 8(%rax), %rcx
cmpq %rcx, _yy_c_buf_p(%rip)
jbe LBB1_63
## %bb.84: ## in Loop: Header=BB1_27 Depth=4
callq _yy_get_next_buffer
cmpl $1, %eax
jne LBB1_85
## %bb.113: ## %yy_get_previous_state.exit118
## in Loop: Header=BB1_27 Depth=4
movq _yytext@GOTPCREL(%rip), %r8
movq (%r8), %rcx
movl $38, %eax
leaq _yy_ec(%rip), %r9
leaq _yy_accept(%rip), %r10
leaq _yy_nxt(%rip), %r11
jmp LBB1_27
LBB1_85: ## in Loop: Header=BB1_24 Depth=3
cmpl $2, %eax
leaq _yy_ec(%rip), %r9
leaq _yy_accept(%rip), %r10
leaq _yy_nxt(%rip), %r11
movq _yytext@GOTPCREL(%rip), %r8
jne LBB1_86
## %bb.100: ## in Loop: Header=BB1_24 Depth=3
movq _yy_buffer_stack(%rip), %rax
movq _yy_buffer_stack_top(%rip), %rcx
movq (%rax,%rcx,8), %rax
movq 8(%rax), %r15
addq _yy_n_chars(%rip), %r15
movq %r15, _yy_c_buf_p(%rip)
movzbl _yy_start(%rip), %eax
movq (%r8), %rcx
movq %rcx, -48(%rbp) ## 8-byte Spill
cmpq %r15, %rcx
jae LBB1_24
## %bb.101: ## %.lr.ph30.preheader.i81
## in Loop: Header=BB1_24 Depth=3
movq -48(%rbp), %r8 ## 8-byte Reload
jmp LBB1_102
.p2align 4, 0x90
LBB1_112: ## %._crit_edge.i95
## in Loop: Header=BB1_102 Depth=4
movswl (%r11,%rcx,2), %eax
addq $1, %r8
cmpq %r15, %r8
je LBB1_23
LBB1_102: ## %.lr.ph30.i85
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## Parent Loop BB1_24 Depth=3
## => This Loop Header: Depth=4
## Child Loop BB1_108 Depth 5
movzbl (%r8), %ecx
testq %rcx, %rcx
je LBB1_103
## %bb.104: ## in Loop: Header=BB1_102 Depth=4
movb (%rcx,%r9), %dl
jmp LBB1_105
LBB1_103: ## in Loop: Header=BB1_102 Depth=4
movb $1, %dl
LBB1_105: ## in Loop: Header=BB1_102 Depth=4
movslq %eax, %rsi
cmpw $0, (%r10,%rsi,2)
je LBB1_107
## %bb.106: ## in Loop: Header=BB1_102 Depth=4
movl %eax, _yy_last_accepting_state(%rip)
movq %r8, _yy_last_accepting_cpos(%rip)
LBB1_107: ## in Loop: Header=BB1_102 Depth=4
movswq (%r13,%rsi,2), %rcx
movzbl %dl, %edi
addq %rdi, %rcx
movswl (%r12,%rcx,2), %ebx
cmpl %ebx, %eax
leaq _yy_meta(%rip), %rbx
jne LBB1_108
jmp LBB1_112
.p2align 4, 0x90
LBB1_110: ## in Loop: Header=BB1_108 Depth=5
movzbl (%rdi,%rbx), %edx
LBB1_111: ## in Loop: Header=BB1_108 Depth=5
movswl (%r14,%rsi,2), %eax
movslq %eax, %rsi
movswq (%r13,%rsi,2), %rcx
movzbl %dl, %edi
addq %rdi, %rcx
cmpw (%r12,%rcx,2), %si
je LBB1_112
LBB1_108: ## %.lr.ph.i90
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## Parent Loop BB1_24 Depth=3
## Parent Loop BB1_102 Depth=4
## => This Inner Loop Header: Depth=5
cmpl $30, %eax
je LBB1_110
## %bb.109: ## %.lr.ph.i90
## in Loop: Header=BB1_108 Depth=5
cmpl $8, %eax
je LBB1_110
jmp LBB1_111
LBB1_29: ## in Loop: Header=BB1_24 Depth=3
movb _yy_hold_char(%rip), %al
movb %al, (%r15)
movq _yy_last_accepting_cpos(%rip), %r15
movl _yy_last_accepting_state(%rip), %eax
jmp LBB1_24
LBB1_63: ## in Loop: Header=BB1_24 Depth=3
movl %r15d, %ecx
subl %ebx, %ecx
movq (%r8), %rdx
leal -1(%rcx), %eax
movslq %eax, %r15
addq %rdx, %r15
movq %r15, _yy_c_buf_p(%rip)
movzbl _yy_start(%rip), %eax
cmpl $2, %ecx
movq %rdx, -48(%rbp) ## 8-byte Spill
jl LBB1_77
## %bb.64: ## %.lr.ph30.i.preheader
## in Loop: Header=BB1_24 Depth=3
movq %rdx, %r8
jmp LBB1_65
.p2align 4, 0x90
LBB1_75: ## %._crit_edge.i
## in Loop: Header=BB1_65 Depth=4
movswl (%r11,%rcx,2), %eax
addq $1, %r8
cmpq %r15, %r8
je LBB1_76
LBB1_65: ## %.lr.ph30.i
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## Parent Loop BB1_24 Depth=3
## => This Loop Header: Depth=4
## Child Loop BB1_71 Depth 5
movzbl (%r8), %ecx
testq %rcx, %rcx
je LBB1_66
## %bb.67: ## in Loop: Header=BB1_65 Depth=4
movb (%rcx,%r9), %dl
jmp LBB1_68
LBB1_66: ## in Loop: Header=BB1_65 Depth=4
movb $1, %dl
LBB1_68: ## in Loop: Header=BB1_65 Depth=4
movslq %eax, %rsi
cmpw $0, (%r10,%rsi,2)
je LBB1_70
## %bb.69: ## in Loop: Header=BB1_65 Depth=4
movl %eax, _yy_last_accepting_state(%rip)
movq %r8, _yy_last_accepting_cpos(%rip)
LBB1_70: ## in Loop: Header=BB1_65 Depth=4
movswq (%r13,%rsi,2), %rcx
movzbl %dl, %edi
addq %rdi, %rcx
movswl (%r12,%rcx,2), %ebx
cmpl %ebx, %eax
leaq _yy_meta(%rip), %rbx
jne LBB1_71
jmp LBB1_75
.p2align 4, 0x90
LBB1_73: ## in Loop: Header=BB1_71 Depth=5
movzbl (%rdi,%rbx), %edx
LBB1_74: ## in Loop: Header=BB1_71 Depth=5
movswl (%r14,%rsi,2), %eax
movslq %eax, %rsi
movswq (%r13,%rsi,2), %rcx
movzbl %dl, %edi
addq %rdi, %rcx
cmpw (%r12,%rcx,2), %si
je LBB1_75
LBB1_71: ## %.lr.ph.i
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## Parent Loop BB1_24 Depth=3
## Parent Loop BB1_65 Depth=4
## => This Inner Loop Header: Depth=5
cmpl $30, %eax
je LBB1_73
## %bb.72: ## %.lr.ph.i
## in Loop: Header=BB1_71 Depth=5
cmpl $8, %eax
je LBB1_73
jmp LBB1_74
LBB1_76: ## %yy_get_previous_state.exit.loopexit
## in Loop: Header=BB1_24 Depth=3
movq _yytext@GOTPCREL(%rip), %r8
LBB1_77: ## %yy_get_previous_state.exit
## in Loop: Header=BB1_24 Depth=3
movslq %eax, %rcx
cmpw $0, (%r10,%rcx,2)
je LBB1_79
## %bb.78: ## in Loop: Header=BB1_24 Depth=3
movl %eax, _yy_last_accepting_state(%rip)
movq %r15, _yy_last_accepting_cpos(%rip)
LBB1_79: ## in Loop: Header=BB1_24 Depth=3
movswq (%r13,%rcx,2), %rdx
movswl 2(%r12,%rdx,2), %esi
cmpl %esi, %eax
je LBB1_81
.p2align 4, 0x90
LBB1_80: ## %.lr.ph.i120
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## Parent Loop BB1_24 Depth=3
## => This Inner Loop Header: Depth=4
movswq (%r14,%rcx,2), %rcx
movswq (%r13,%rcx,2), %rdx
cmpw 2(%r12,%rdx,2), %cx
jne LBB1_80
LBB1_81: ## in Loop: Header=BB1_24 Depth=3
addq $1, %rdx
movswl (%r11,%rdx,2), %ecx
cmpl $123, %ecx
je LBB1_24
## %bb.82: ## %yy_try_NUL_trans.exit
## in Loop: Header=BB1_24 Depth=3
testq %rdx, %rdx
je LBB1_24
jmp LBB1_83
LBB1_23: ## %.preheader.loopexit
## in Loop: Header=BB1_24 Depth=3
movq _yytext@GOTPCREL(%rip), %r8
jmp LBB1_24
LBB1_86: ## in Loop: Header=BB1_14 Depth=2
testl %eax, %eax
jne LBB1_12
## %bb.87: ## in Loop: Header=BB1_14 Depth=2
movl %r15d, %eax
subl %ebx, %eax
movq (%r8), %rdx
leal -1(%rax), %ecx
movslq %ecx, %r15
movq %rdx, -48(%rbp) ## 8-byte Spill
addq %rdx, %r15
movq %r15, _yy_c_buf_p(%rip)
movzbl _yy_start(%rip), %ecx
cmpl $2, %eax
jl LBB1_14
## %bb.88: ## %.lr.ph30.i105.preheader
## in Loop: Header=BB1_14 Depth=2
movq -48(%rbp), %r8 ## 8-byte Reload
jmp LBB1_89
.p2align 4, 0x90
LBB1_99: ## %._crit_edge.i115
## in Loop: Header=BB1_89 Depth=3
movswl (%r11,%rax,2), %ecx
addq $1, %r8
cmpq %r15, %r8
je LBB1_13
LBB1_89: ## %.lr.ph30.i105
## Parent Loop BB1_12 Depth=1
## Parent Loop BB1_14 Depth=2
## => This Loop Header: Depth=3
## Child Loop BB1_95 Depth 4
movzbl (%r8), %eax
testq %rax, %rax
je LBB1_90
## %bb.91: ## in Loop: Header=BB1_89 Depth=3
movb (%rax,%r9), %dl
jmp LBB1_92
LBB1_90: ## in Loop: Header=BB1_89 Depth=3
movb $1, %dl
LBB1_92: ## in Loop: Header=BB1_89 Depth=3
movslq %ecx, %rsi
cmpw $0, (%r10,%rsi,2)
je LBB1_94
## %bb.93: ## in Loop: Header=BB1_89 Depth=3
movl %ecx, _yy_last_accepting_state(%rip)
movq %r8, _yy_last_accepting_cpos(%rip)
LBB1_94: ## in Loop: Header=BB1_89 Depth=3
movswq (%r13,%rsi,2), %rax
movzbl %dl, %edi
addq %rdi, %rax