-
Notifications
You must be signed in to change notification settings - Fork 1
/
t.s
1528 lines (1526 loc) · 28.9 KB
/
t.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 "pcre_byte_order.c"
.section .debug_abbrev,"",@progbits
.Ldebug_abbrev0:
.section .debug_info,"",@progbits
.Ldebug_info0:
.section .debug_line,"",@progbits
.Ldebug_line0:
.text
.Ltext0:
# Compiler executable checksum: 508d862eaf4205b444fc28fd448263b4
.align 4
.type swap_uint32, @function
swap_uint32:
.file 1 "pcre_byte_order.c"
.loc 1 68 0
stm %r11,%r15,44(%r15) #,,
.LCFI0:
basr %r5,0 #
.L3:
ahi %r15,-104 #,
.LCFI1:
lr %r11,%r15 #,
.LCFI2:
st %r2,100(%r11) # value, value
.loc 1 69 0
l %r1,100(%r11) # tmp53, value
lr %r2,%r1 # D.2836, tmp53
sll %r2,24 # D.2836,
l %r1,100(%r11) # D.2837, value
n %r1,.L4-.L3(%r5) # D.2837,
sll %r1,8 # D.2838,
or %r2,%r1 # D.2839, D.2838
l %r1,100(%r11) # D.2840, value
n %r1,.L5-.L3(%r5) # D.2840,
srl %r1,8 # D.2841,
or %r2,%r1 # D.2842, D.2841
l %r1,100(%r11) # tmp54, value
srl %r1,24 # D.2843,
or %r1,%r2 # D.2835, D.2842
.loc 1 73 0
lr %r2,%r1 #, <result>
l %r4,160(%r11) #,
lm %r11,%r15,148(%r11) #,,
br %r4 #
.align 4 #
.L5:
.long 16711680
.L4:
.long 65280
.align 2 #
.LFE2:
.size swap_uint32, .-swap_uint32
.align 4
.type swap_uint16, @function
swap_uint16:
.LFB3:
.loc 1 77 0
stm %r11,%r15,44(%r15) #,,
.LCFI3:
basr %r5,0 #
.L8:
ahi %r15,-104 #,
.LCFI4:
lr %r11,%r15 #,
.LCFI5:
lr %r1,%r2 # tmp51, value
sth %r1,102(%r11) # tmp51, value
.loc 1 78 0
lh %r1,102(%r11) # tmp53, value
n %r1,.L9-.L8(%r5) # tmp52,
srl %r1,8 # tmp54,
lr %r2,%r1 # D.2850, D.2849
lh %r1,102(%r11) # tmp55, value
n %r1,.L9-.L8(%r5) # D.2851,
sll %r1,8 # D.2852,
or %r1,%r2 # D.2854, D.2850
n %r1,.L9-.L8(%r5) # tmp57,
.loc 1 79 0
lr %r2,%r1 #, <result>
l %r4,160(%r11) #,
lm %r11,%r15,148(%r11) #,,
br %r4 #
.align 4 #
.L9:
.long 65535
.align 2 #
.LFE3:
.size swap_uint16, .-swap_uint16
.align 4
.globl pcre_pattern_to_host_byte_order
.type pcre_pattern_to_host_byte_order, @function
pcre_pattern_to_host_byte_order:
.LFB4:
.loc 1 108 0
stm %r11,%r15,44(%r15) #,,
.LCFI6:
basr %r13,0 #
.L19:
ahi %r15,-120 #,
.LCFI7:
lr %r11,%r15 #,
.LCFI8:
st %r2,108(%r11) # argument_re, argument_re
st %r3,104(%r11) # extra_data, extra_data
st %r4,100(%r11) # tables, tables
.loc 1 109 0
l %r1,108(%r11) #, argument_re
st %r1,112(%r11) #, re
.loc 1 120 0
l %r1,112(%r11) # tmp91, re
ltr %r1,%r1 # tmp91
jne .L11 #,
lhi %r2,-2 #,
st %r2,96(%r11) #, D.2863
j .L12 #
.L11:
.loc 1 121 0
l %r1,112(%r11) # tmp92, re
l %r1,0(%r1) # D.2864, <variable>.magic_number
c %r1,.L20-.L19(%r13) # D.2864,
jne .L13 #,
.loc 1 123 0
l %r1,112(%r11) # tmp93, re
l %r1,12(%r1) # D.2865, <variable>.flags
n %r1,.L21-.L19(%r13) # D.2866,
ltr %r1,%r1 # D.2866
jne .L14 #,
lhi %r1,-28 #,
st %r1,96(%r11) #, D.2863
j .L12 #
.L14:
.loc 1 124 0
l %r1,112(%r11) # tmp94, re
l %r2,100(%r11) #, tables
st %r2,48(%r1) #, <variable>.tables
.loc 1 125 0
lhi %r1,0 #,
st %r1,96(%r11) #, D.2863
j .L12 #
.L13:
.loc 1 128 0
l %r1,112(%r11) # tmp95, re
l %r1,0(%r1) # D.2867, <variable>.magic_number
c %r1,.L22-.L19(%r13) # D.2867,
je .L15 #,
lhi %r2,-4 #,
st %r2,96(%r11) #, D.2863
j .L12 #
.L15:
.loc 1 129 0
l %r1,112(%r11) # tmp96, re
l %r1,12(%r1) # D.2868, <variable>.flags
lr %r2,%r1 #, D.2868
l %r1,.L23-.L19(%r13) # tmp97,
basr %r14,%r1 #, tmp97
lr %r1,%r2 # D.2869,
n %r1,.L21-.L19(%r13) # D.2870,
ltr %r1,%r1 # D.2870
jne .L16 #,
lhi %r1,-28 #,
st %r1,96(%r11) #, D.2863
j .L12 #
.L16:
.loc 1 131 0
l %r1,112(%r11) # tmp98, re
l %r2,.L20-.L19(%r13) #,
st %r2,0(%r1) #, <variable>.magic_number
.loc 1 132 0
l %r1,112(%r11) # tmp99, re
l %r1,4(%r1) # D.2871, <variable>.size
lr %r2,%r1 #, D.2871
l %r1,.L23-.L19(%r13) # tmp100,
basr %r14,%r1 #, tmp100
l %r1,112(%r11) # tmp101, re
st %r2,4(%r1) # D.2872, <variable>.size
.loc 1 133 0
l %r1,112(%r11) # tmp102, re
l %r1,8(%r1) # D.2873, <variable>.options
lr %r2,%r1 #, D.2873
l %r1,.L23-.L19(%r13) # tmp103,
basr %r14,%r1 #, tmp103
l %r1,112(%r11) # tmp104, re
st %r2,8(%r1) # D.2874, <variable>.options
.loc 1 134 0
l %r1,112(%r11) # tmp105, re
l %r1,12(%r1) # D.2875, <variable>.flags
lr %r2,%r1 #, D.2875
l %r1,.L23-.L19(%r13) # tmp106,
basr %r14,%r1 #, tmp106
l %r1,112(%r11) # tmp107, re
st %r2,12(%r1) # D.2876, <variable>.flags
.loc 1 135 0
l %r1,112(%r11) # tmp108, re
l %r1,16(%r1) # D.2877, <variable>.limit_match
lr %r2,%r1 #, D.2877
l %r1,.L23-.L19(%r13) # tmp109,
basr %r14,%r1 #, tmp109
l %r1,112(%r11) # tmp110, re
st %r2,16(%r1) # D.2878, <variable>.limit_match
.loc 1 136 0
l %r1,112(%r11) # tmp111, re
l %r1,20(%r1) # D.2879, <variable>.limit_recursion
lr %r2,%r1 #, D.2879
l %r1,.L23-.L19(%r13) # tmp112,
basr %r14,%r1 #, tmp112
l %r1,112(%r11) # tmp113, re
st %r2,20(%r1) # D.2880, <variable>.limit_recursion
.loc 1 139 0
l %r1,112(%r11) # tmp114, re
lh %r1,24(%r1) # D.2881, <variable>.first_char
n %r1,.L24-.L19(%r13) # tmp115,
lr %r2,%r1 #, tmp115
l %r1,.L25-.L19(%r13) # tmp116,
basr %r14,%r1 #, tmp116
lr %r1,%r2 # tmp117,
lr %r2,%r1 # D.2882, tmp117
l %r1,112(%r11) # tmp118, re
sth %r2,24(%r1) # D.2882, <variable>.first_char
.loc 1 140 0
l %r1,112(%r11) # tmp119, re
lh %r1,26(%r1) # D.2883, <variable>.req_char
n %r1,.L24-.L19(%r13) # tmp120,
lr %r2,%r1 #, tmp120
l %r1,.L25-.L19(%r13) # tmp121,
basr %r14,%r1 #, tmp121
lr %r1,%r2 # tmp122,
lr %r2,%r1 # D.2884, tmp122
l %r1,112(%r11) # tmp123, re
sth %r2,26(%r1) # D.2884, <variable>.req_char
.loc 1 146 0
l %r1,112(%r11) # tmp124, re
lh %r1,28(%r1) # D.2885, <variable>.max_lookbehind
n %r1,.L24-.L19(%r13) # tmp125,
lr %r2,%r1 #, tmp125
l %r1,.L25-.L19(%r13) # tmp126,
basr %r14,%r1 #, tmp126
lr %r1,%r2 # tmp127,
lr %r2,%r1 # D.2886, tmp127
l %r1,112(%r11) # tmp128, re
sth %r2,28(%r1) # D.2886, <variable>.max_lookbehind
.loc 1 147 0
l %r1,112(%r11) # tmp129, re
lh %r1,30(%r1) # D.2887, <variable>.top_bracket
n %r1,.L24-.L19(%r13) # tmp130,
lr %r2,%r1 #, tmp130
l %r1,.L25-.L19(%r13) # tmp131,
basr %r14,%r1 #, tmp131
lr %r1,%r2 # tmp132,
lr %r2,%r1 # D.2888, tmp132
l %r1,112(%r11) # tmp133, re
sth %r2,30(%r1) # D.2888, <variable>.top_bracket
.loc 1 148 0
l %r1,112(%r11) # tmp134, re
lh %r1,32(%r1) # D.2889, <variable>.top_backref
n %r1,.L24-.L19(%r13) # tmp135,
lr %r2,%r1 #, tmp135
l %r1,.L25-.L19(%r13) # tmp136,
basr %r14,%r1 #, tmp136
lr %r1,%r2 # tmp137,
lr %r2,%r1 # D.2890, tmp137
l %r1,112(%r11) # tmp138, re
sth %r2,32(%r1) # D.2890, <variable>.top_backref
.loc 1 149 0
l %r1,112(%r11) # tmp139, re
lh %r1,34(%r1) # D.2891, <variable>.name_table_offset
n %r1,.L24-.L19(%r13) # tmp140,
lr %r2,%r1 #, tmp140
l %r1,.L25-.L19(%r13) # tmp141,
basr %r14,%r1 #, tmp141
lr %r1,%r2 # tmp142,
lr %r2,%r1 # D.2892, tmp142
l %r1,112(%r11) # tmp143, re
sth %r2,34(%r1) # D.2892, <variable>.name_table_offset
.loc 1 150 0
l %r1,112(%r11) # tmp144, re
lh %r1,36(%r1) # D.2893, <variable>.name_entry_size
n %r1,.L24-.L19(%r13) # tmp145,
lr %r2,%r1 #, tmp145
l %r1,.L25-.L19(%r13) # tmp146,
basr %r14,%r1 #, tmp146
lr %r1,%r2 # tmp147,
lr %r2,%r1 # D.2894, tmp147
l %r1,112(%r11) # tmp148, re
sth %r2,36(%r1) # D.2894, <variable>.name_entry_size
.loc 1 151 0
l %r1,112(%r11) # tmp149, re
lh %r1,38(%r1) # D.2895, <variable>.name_count
n %r1,.L24-.L19(%r13) # tmp150,
lr %r2,%r1 #, tmp150
l %r1,.L25-.L19(%r13) # tmp151,
basr %r14,%r1 #, tmp151
lr %r1,%r2 # tmp152,
lr %r2,%r1 # D.2896, tmp152
l %r1,112(%r11) # tmp153, re
sth %r2,38(%r1) # D.2896, <variable>.name_count
.loc 1 152 0
l %r1,112(%r11) # tmp154, re
lh %r1,40(%r1) # D.2897, <variable>.ref_count
n %r1,.L24-.L19(%r13) # tmp155,
lr %r2,%r1 #, tmp155
l %r1,.L25-.L19(%r13) # tmp156,
basr %r14,%r1 #, tmp156
lr %r1,%r2 # tmp157,
lr %r2,%r1 # D.2898, tmp157
l %r1,112(%r11) # tmp158, re
sth %r2,40(%r1) # D.2898, <variable>.ref_count
.loc 1 153 0
l %r1,112(%r11) # tmp159, re
l %r2,100(%r11) #, tables
st %r2,48(%r1) #, <variable>.tables
.loc 1 155 0
l %r1,104(%r11) # tmp160, extra_data
ltr %r1,%r1 # tmp160
je .L17 #,
l %r1,104(%r11) # tmp161, extra_data
l %r1,0(%r1) # D.2899, <variable>.flags
n %r1,.L21-.L19(%r13) # D.2901,
n %r1,.L26-.L19(%r13) # tmp162,
ltr %r1,%r1 # tmp162
je .L17 #,
.loc 1 157 0
l %r1,104(%r11) # tmp163, extra_data
l %r1,4(%r1) # D.2903, <variable>.study_data
st %r1,116(%r11) # D.2903, study
.loc 1 158 0
l %r1,116(%r11) # tmp164, study
l %r1,0(%r1) # D.2904, <variable>.size
lr %r2,%r1 #, D.2904
l %r1,.L23-.L19(%r13) # tmp165,
basr %r14,%r1 #, tmp165
l %r1,116(%r11) # tmp166, study
st %r2,0(%r1) # D.2905, <variable>.size
.loc 1 159 0
l %r1,116(%r11) # tmp167, study
l %r1,4(%r1) # D.2906, <variable>.flags
lr %r2,%r1 #, D.2906
l %r1,.L23-.L19(%r13) # tmp168,
basr %r14,%r1 #, tmp168
l %r1,116(%r11) # tmp169, study
st %r2,4(%r1) # D.2907, <variable>.flags
.loc 1 160 0
l %r1,116(%r11) # tmp170, study
l %r1,40(%r1) # D.2908, <variable>.minlength
lr %r2,%r1 #, D.2908
l %r1,.L23-.L19(%r13) # tmp171,
basr %r14,%r1 #, tmp171
l %r1,116(%r11) # tmp172, study
st %r2,40(%r1) # D.2909, <variable>.minlength
.L17:
.loc 1 315 0
lhi %r1,0 #,
st %r1,96(%r11) #, D.2863
.L12:
l %r1,96(%r11) # <result>, D.2863
.loc 1 317 0
lr %r2,%r1 #, <result>
l %r4,176(%r11) #,
lm %r11,%r15,164(%r11) #,,
br %r4 #
.align 4 #
.L26:
.long 255
.L25:
.long swap_uint16
.L24:
.long 65535
.L23:
.long swap_uint32
.L22:
.long 1163019088
.L21:
.long 1
.L20:
.long 1346589253
.align 2 #
.LFE4:
.size pcre_pattern_to_host_byte_order, .-pcre_pattern_to_host_byte_order
.section .debug_frame,"",@progbits
.Lframe0:
.4byte .LECIE0-.LSCIE0
.LSCIE0:
.4byte 0xffffffff
.byte 0x1
.string ""
.uleb128 0x1
.sleb128 -4
.byte 0xe
.byte 0xc
.uleb128 0xf
.uleb128 0x60
.align 4
.LECIE0:
.LSFDE0:
.4byte .LEFDE0-.LASFDE0
.LASFDE0:
.4byte .Lframe0
.4byte .LFB2
.4byte .LFE2-.LFB2
.byte 0x4
.4byte .LCFI0-.LFB2
.byte 0x8f
.uleb128 0x9
.byte 0x8e
.uleb128 0xa
.byte 0x8d
.uleb128 0xb
.byte 0x8c
.uleb128 0xc
.byte 0x8b
.uleb128 0xd
.byte 0x4
.4byte .LCFI1-.LCFI0
.byte 0xe
.uleb128 0xc8
.byte 0x4
.4byte .LCFI2-.LCFI1
.byte 0xd
.uleb128 0xb
.align 4
.LEFDE0:
.LSFDE2:
.4byte .LEFDE2-.LASFDE2
.LASFDE2:
.4byte .Lframe0
.4byte .LFB3
.4byte .LFE3-.LFB3
.byte 0x4
.4byte .LCFI3-.LFB3
.byte 0x8f
.uleb128 0x9
.byte 0x8e
.uleb128 0xa
.byte 0x8d
.uleb128 0xb
.byte 0x8c
.uleb128 0xc
.byte 0x8b
.uleb128 0xd
.byte 0x4
.4byte .LCFI4-.LCFI3
.byte 0xe
.uleb128 0xc8
.byte 0x4
.4byte .LCFI5-.LCFI4
.byte 0xd
.uleb128 0xb
.align 4
.LEFDE2:
.LSFDE4:
.4byte .LEFDE4-.LASFDE4
.LASFDE4:
.4byte .Lframe0
.4byte .LFB4
.4byte .LFE4-.LFB4
.byte 0x4
.4byte .LCFI6-.LFB4
.byte 0x8f
.uleb128 0x9
.byte 0x8e
.uleb128 0xa
.byte 0x8d
.uleb128 0xb
.byte 0x8c
.uleb128 0xc
.byte 0x8b
.uleb128 0xd
.byte 0x4
.4byte .LCFI7-.LCFI6
.byte 0xe
.uleb128 0xd8
.byte 0x4
.4byte .LCFI8-.LCFI7
.byte 0xd
.uleb128 0xb
.align 4
.LEFDE4:
.section .eh_frame,"a",@progbits
.Lframe1:
.4byte .LECIE1-.LSCIE1
.LSCIE1:
.4byte 0x0
.byte 0x1
.string ""
.uleb128 0x1
.sleb128 -4
.byte 0xe
.byte 0xc
.uleb128 0xf
.uleb128 0x60
.align 4
.LECIE1:
.LSFDE1:
.4byte .LEFDE1-.LASFDE1
.LASFDE1:
.4byte .LASFDE1-.Lframe1
.4byte .LFB2
.4byte .LFE2-.LFB2
.byte 0x4
.4byte .LCFI0-.LFB2
.byte 0x8f
.uleb128 0x9
.byte 0x8e
.uleb128 0xa
.byte 0x8d
.uleb128 0xb
.byte 0x8c
.uleb128 0xc
.byte 0x8b
.uleb128 0xd
.byte 0x4
.4byte .LCFI1-.LCFI0
.byte 0xe
.uleb128 0xc8
.byte 0x4
.4byte .LCFI2-.LCFI1
.byte 0xd
.uleb128 0xb
.align 4
.LEFDE1:
.LSFDE3:
.4byte .LEFDE3-.LASFDE3
.LASFDE3:
.4byte .LASFDE3-.Lframe1
.4byte .LFB3
.4byte .LFE3-.LFB3
.byte 0x4
.4byte .LCFI3-.LFB3
.byte 0x8f
.uleb128 0x9
.byte 0x8e
.uleb128 0xa
.byte 0x8d
.uleb128 0xb
.byte 0x8c
.uleb128 0xc
.byte 0x8b
.uleb128 0xd
.byte 0x4
.4byte .LCFI4-.LCFI3
.byte 0xe
.uleb128 0xc8
.byte 0x4
.4byte .LCFI5-.LCFI4
.byte 0xd
.uleb128 0xb
.align 4
.LEFDE3:
.LSFDE5:
.4byte .LEFDE5-.LASFDE5
.LASFDE5:
.4byte .LASFDE5-.Lframe1
.4byte .LFB4
.4byte .LFE4-.LFB4
.byte 0x4
.4byte .LCFI6-.LFB4
.byte 0x8f
.uleb128 0x9
.byte 0x8e
.uleb128 0xa
.byte 0x8d
.uleb128 0xb
.byte 0x8c
.uleb128 0xc
.byte 0x8b
.uleb128 0xd
.byte 0x4
.4byte .LCFI7-.LCFI6
.byte 0xe
.uleb128 0xd8
.byte 0x4
.4byte .LCFI8-.LCFI7
.byte 0xd
.uleb128 0xb
.align 4
.LEFDE5:
.text
.Letext0:
.section .debug_loc,"",@progbits
.Ldebug_loc0:
.LLST0:
.4byte .LFB2-.Ltext0
.4byte .LCFI1-.Ltext0
.2byte 0x3
.byte 0x7f
.sleb128 96
.4byte .LCFI1-.Ltext0
.4byte .LCFI2-.Ltext0
.2byte 0x3
.byte 0x7f
.sleb128 200
.4byte .LCFI2-.Ltext0
.4byte .LFE2-.Ltext0
.2byte 0x3
.byte 0x7b
.sleb128 200
.4byte 0x0
.4byte 0x0
.LLST1:
.4byte .LFB3-.Ltext0
.4byte .LCFI4-.Ltext0
.2byte 0x3
.byte 0x7f
.sleb128 96
.4byte .LCFI4-.Ltext0
.4byte .LCFI5-.Ltext0
.2byte 0x3
.byte 0x7f
.sleb128 200
.4byte .LCFI5-.Ltext0
.4byte .LFE3-.Ltext0
.2byte 0x3
.byte 0x7b
.sleb128 200
.4byte 0x0
.4byte 0x0
.LLST2:
.4byte .LFB4-.Ltext0
.4byte .LCFI7-.Ltext0
.2byte 0x3
.byte 0x7f
.sleb128 96
.4byte .LCFI7-.Ltext0
.4byte .LCFI8-.Ltext0
.2byte 0x3
.byte 0x7f
.sleb128 216
.4byte .LCFI8-.Ltext0
.4byte .LFE4-.Ltext0
.2byte 0x3
.byte 0x7b
.sleb128 216
.4byte 0x0
.4byte 0x0
.file 2 "pcre_internal.h"
.file 3 "pcre.h"
.section .debug_info
.4byte 0x3df
.2byte 0x2
.4byte .Ldebug_abbrev0
.byte 0x4
.uleb128 0x1
.4byte .LASF52
.byte 0x1
.4byte .LASF53
.4byte .LASF54
.4byte .Ltext0
.4byte .Letext0
.4byte .Ldebug_line0
.uleb128 0x2
.byte 0x1
.byte 0x8
.4byte .LASF0
.uleb128 0x2
.byte 0x2
.byte 0x7
.4byte .LASF1
.uleb128 0x2
.byte 0x4
.byte 0x7
.4byte .LASF2
.uleb128 0x2
.byte 0x4
.byte 0x7
.4byte .LASF3
.uleb128 0x2
.byte 0x1
.byte 0x6
.4byte .LASF4
.uleb128 0x2
.byte 0x2
.byte 0x5
.4byte .LASF5
.uleb128 0x3
.byte 0x4
.byte 0x5
.string "int"
.uleb128 0x4
.byte 0x4
.byte 0x7
.uleb128 0x2
.byte 0x4
.byte 0x5
.4byte .LASF6
.uleb128 0x5
.byte 0x4
.uleb128 0x2
.byte 0x1
.byte 0x8
.4byte .LASF7
.uleb128 0x6
.byte 0x4
.4byte 0x25
.uleb128 0x7
.4byte .LASF8
.byte 0x2
.byte 0xc2
.4byte 0x25
.uleb128 0x7
.4byte .LASF9
.byte 0x2
.byte 0xc5
.4byte 0x2c
.uleb128 0x7
.4byte .LASF10
.byte 0x2
.byte 0xd3
.4byte 0x33
.uleb128 0x2
.byte 0x8
.byte 0x5
.4byte .LASF11
.uleb128 0x2
.byte 0x8
.byte 0x7
.4byte .LASF12
.uleb128 0x8
.4byte .LASF13
.byte 0x3
.2byte 0x145
.4byte 0xaa
.uleb128 0x9
.4byte .LASF42
.byte 0x1
.uleb128 0xa
.4byte .LASF22
.byte 0x20
.byte 0x3
.2byte 0x178
.4byte 0x136
.uleb128 0xb
.4byte .LASF14
.byte 0x3
.2byte 0x179
.4byte 0x3a
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0xb
.4byte .LASF15
.byte 0x3
.2byte 0x17a
.4byte 0x60
.byte 0x2
.byte 0x23
.uleb128 0x4
.uleb128 0xb
.4byte .LASF16
.byte 0x3
.2byte 0x17b
.4byte 0x3a
.byte 0x2
.byte 0x23
.uleb128 0x8
.uleb128 0xb
.4byte .LASF17
.byte 0x3
.2byte 0x17c
.4byte 0x60
.byte 0x2
.byte 0x23
.uleb128 0xc
.uleb128 0xb
.4byte .LASF18
.byte 0x3
.2byte 0x17d
.4byte 0x136
.byte 0x2
.byte 0x23
.uleb128 0x10
.uleb128 0xb
.4byte .LASF19
.byte 0x3
.2byte 0x17e
.4byte 0x3a
.byte 0x2
.byte 0x23
.uleb128 0x14
.uleb128 0xb
.4byte .LASF20
.byte 0x3
.2byte 0x17f
.4byte 0x141
.byte 0x2
.byte 0x23
.uleb128 0x18
.uleb128 0xb
.4byte .LASF21
.byte 0x3
.2byte 0x180
.4byte 0x60
.byte 0x2
.byte 0x23
.uleb128 0x1c
.byte 0x0
.uleb128 0x6
.byte 0x4
.4byte 0x13c
.uleb128 0xc
.4byte 0x25
.uleb128 0x6
.byte 0x4
.4byte 0x69
.uleb128 0x8
.4byte .LASF22
.byte 0x3
.2byte 0x181
.4byte 0xb0
.uleb128 0xa
.4byte .LASF23
.byte 0x38
.byte 0x2
.2byte 0x90d
.4byte 0x28d
.uleb128 0xb
.4byte .LASF24
.byte 0x2
.2byte 0x90e
.4byte 0x85
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0xb
.4byte .LASF25
.byte 0x2
.2byte 0x90f
.4byte 0x85
.byte 0x2
.byte 0x23
.uleb128 0x4
.uleb128 0xb
.4byte .LASF26
.byte 0x2
.2byte 0x910
.4byte 0x85
.byte 0x2
.byte 0x23
.uleb128 0x8
.uleb128 0xb
.4byte .LASF14
.byte 0x2
.2byte 0x911
.4byte 0x85
.byte 0x2
.byte 0x23
.uleb128 0xc
.uleb128 0xb
.4byte .LASF27
.byte 0x2
.2byte 0x912
.4byte 0x85
.byte 0x2
.byte 0x23
.uleb128 0x10
.uleb128 0xb
.4byte .LASF28
.byte 0x2
.2byte 0x913
.4byte 0x85
.byte 0x2
.byte 0x23
.uleb128 0x14
.uleb128 0xb
.4byte .LASF29
.byte 0x2
.2byte 0x914
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x18
.uleb128 0xb
.4byte .LASF30
.byte 0x2
.2byte 0x915
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x1a
.uleb128 0xb
.4byte .LASF31
.byte 0x2
.2byte 0x916
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x1c
.uleb128 0xb
.4byte .LASF32
.byte 0x2
.2byte 0x917
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x1e
.uleb128 0xb
.4byte .LASF33
.byte 0x2
.2byte 0x918
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x20
.uleb128 0xb
.4byte .LASF34
.byte 0x2
.2byte 0x919
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x22
.uleb128 0xb
.4byte .LASF35
.byte 0x2
.2byte 0x91a
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x24
.uleb128 0xb
.4byte .LASF36
.byte 0x2
.2byte 0x91b
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x26
.uleb128 0xb
.4byte .LASF37
.byte 0x2
.2byte 0x91c
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x28
.uleb128 0xb
.4byte .LASF38
.byte 0x2
.2byte 0x91d
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x2a
.uleb128 0xb
.4byte .LASF39
.byte 0x2
.2byte 0x91e
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x2c
.uleb128 0xb
.4byte .LASF40
.byte 0x2
.2byte 0x91f
.4byte 0x7a
.byte 0x2
.byte 0x23
.uleb128 0x2e
.uleb128 0xb
.4byte .LASF18
.byte 0x2
.2byte 0x920
.4byte 0x28d
.byte 0x2
.byte 0x23
.uleb128 0x30
.uleb128 0xb
.4byte .LASF41
.byte 0x2
.2byte 0x921
.4byte 0x60
.byte 0x2
.byte 0x23
.uleb128 0x34
.byte 0x0
.uleb128 0x6
.byte 0x4
.4byte 0x293
.uleb128 0xc
.4byte 0x6f
.uleb128 0x8
.4byte .LASF42
.byte 0x2
.2byte 0x924
.4byte 0x153
.uleb128 0xa
.4byte .LASF43
.byte 0x2c
.byte 0x2
.2byte 0x953
.4byte 0x2ee
.uleb128 0xb
.4byte .LASF25
.byte 0x2
.2byte 0x954
.4byte 0x85
.byte 0x2
.byte 0x23
.uleb128 0x0