-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16.1.5.s
3498 lines (3497 loc) · 121 KB
/
16.1.5.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 "16.1.5.cc"
.text
.section .text._ZnwmPv,"axG",@progbits,_ZnwmPv,comdat
.weak _ZnwmPv
.type _ZnwmPv, @function
_ZnwmPv:
.LFB358:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
movq %rdi, -8(%rbp)
movq %rsi, -16(%rbp)
movq -16(%rbp), %rax
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE358:
.size _ZnwmPv, .-_ZnwmPv
.section .text._ZNKSt9type_infoeqERKS_,"axG",@progbits,_ZNKSt9type_infoeqERKS_,comdat
.align 2
.weak _ZNKSt9type_infoeqERKS_
.type _ZNKSt9type_infoeqERKS_, @function
_ZNKSt9type_infoeqERKS_:
.LFB1048:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq %rsi, -16(%rbp)
movq -8(%rbp), %rax
movq 8(%rax), %rdx
movq -16(%rbp), %rax
movq 8(%rax), %rax
cmpq %rax, %rdx
je .L4
movq -8(%rbp), %rax
movq 8(%rax), %rax
movzbl (%rax), %eax
cmpb $42, %al
je .L5
movq -16(%rbp), %rax
movq 8(%rax), %rdx
movq -8(%rbp), %rax
movq 8(%rax), %rax
movq %rdx, %rsi
movq %rax, %rdi
call strcmp@PLT
testl %eax, %eax
jne .L5
.L4:
movl $1, %eax
jmp .L6
.L5:
movl $0, %eax
.L6:
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE1048:
.size _ZNKSt9type_infoeqERKS_, .-_ZNKSt9type_infoeqERKS_
.section .rodata
.align 4
.type _ZN9__gnu_cxxL21__default_lock_policyE, @object
.size _ZN9__gnu_cxxL21__default_lock_policyE, 4
_ZN9__gnu_cxxL21__default_lock_policyE:
.long 2
.weak _ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag
.section .rodata._ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag,"aG",@progbits,_ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag,comdat
.align 8
.type _ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag, @gnu_unique_object
.size _ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag, 16
_ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag:
.zero 16
.section .text._ZNSt19_Sp_make_shared_tag5_S_tiEv,"axG",@progbits,_ZNSt19_Sp_make_shared_tag5_S_tiEv,comdat
.weak _ZNSt19_Sp_make_shared_tag5_S_tiEv
.type _ZNSt19_Sp_make_shared_tag5_S_tiEv, @function
_ZNSt19_Sp_make_shared_tag5_S_tiEv:
.LFB1258:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
leaq _ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag(%rip), %rax
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE1258:
.size _ZNSt19_Sp_make_shared_tag5_S_tiEv, .-_ZNSt19_Sp_make_shared_tag5_S_tiEv
.section .rodata
.type _ZN6__pstl9execution2v1L3seqE, @object
.size _ZN6__pstl9execution2v1L3seqE, 1
_ZN6__pstl9execution2v1L3seqE:
.zero 1
.type _ZN6__pstl9execution2v1L3parE, @object
.size _ZN6__pstl9execution2v1L3parE, 1
_ZN6__pstl9execution2v1L3parE:
.zero 1
.type _ZN6__pstl9execution2v1L9par_unseqE, @object
.size _ZN6__pstl9execution2v1L9par_unseqE, 1
_ZN6__pstl9execution2v1L9par_unseqE:
.zero 1
.type _ZN6__pstl9execution2v1L5unseqE, @object
.size _ZN6__pstl9execution2v1L5unseqE, 1
_ZN6__pstl9execution2v1L5unseqE:
.zero 1
.section .text._ZNSt11char_traitsIcE6lengthEPKc,"axG",@progbits,_ZNSt11char_traitsIcE6lengthEPKc,comdat
.weak _ZNSt11char_traitsIcE6lengthEPKc
.type _ZNSt11char_traitsIcE6lengthEPKc, @function
_ZNSt11char_traitsIcE6lengthEPKc:
.LFB2761:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $32, %rsp
movq %rdi, -24(%rbp)
movq -24(%rbp), %rax
movq %rax, -8(%rbp)
movl $0, %eax
testb %al, %al
je .L12
movq -24(%rbp), %rax
movq %rax, %rdi
call _ZN9__gnu_cxx11char_traitsIcE6lengthEPKc
jmp .L13
.L12:
movq -24(%rbp), %rax
movq %rax, %rdi
call strlen@PLT
nop
.L13:
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE2761:
.size _ZNSt11char_traitsIcE6lengthEPKc, .-_ZNSt11char_traitsIcE6lengthEPKc
.section .text._ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev,"axG",@progbits,_ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED5Ev,comdat
.align 2
.weak _ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev
.type _ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev, @function
_ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev:
.LFB3216:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
addq $8, %rax
movq %rax, %rdi
call _ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED1Ev
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3216:
.size _ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev, .-_ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev
.weak _ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED1Ev
.set _ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED1Ev,_ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev
.section .text._ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED2Ev,"axG",@progbits,_ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED5Ev,comdat
.align 2
.weak _ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED2Ev
.type _ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED2Ev, @function
_ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED2Ev:
.LFB3218:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
movq %rax, %rdi
call _ZNSt12__shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EELN9__gnu_cxx12_Lock_policyE2EED2Ev
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3218:
.size _ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED2Ev, .-_ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED2Ev
.weak _ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED1Ev
.set _ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED1Ev,_ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED2Ev
.section .text._ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev,"axG",@progbits,_ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED5Ev,comdat
.align 2
.weak _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev
.type _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev, @function
_ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev:
.LFB3220:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
movq %rax, %rdi
call _ZNSt10shared_ptrISt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS6_EEED1Ev
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3220:
.size _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev, .-_ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev
.weak _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev
.set _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev,_ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev
.section .text._ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev,"axG",@progbits,_ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED5Ev,comdat
.align 2
.weak _ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev
.type _ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev, @function
_ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev:
.LFB3225:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
addq $8, %rax
movq %rax, %rdi
call _ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED1Ev
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3225:
.size _ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev, .-_ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev
.weak _ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED1Ev
.set _ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED1Ev,_ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev
.section .text._ZNSt10shared_ptrISt6vectorIiSaIiEEED2Ev,"axG",@progbits,_ZNSt10shared_ptrISt6vectorIiSaIiEEED5Ev,comdat
.align 2
.weak _ZNSt10shared_ptrISt6vectorIiSaIiEEED2Ev
.type _ZNSt10shared_ptrISt6vectorIiSaIiEEED2Ev, @function
_ZNSt10shared_ptrISt6vectorIiSaIiEEED2Ev:
.LFB3227:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
movq %rax, %rdi
call _ZNSt12__shared_ptrISt6vectorIiSaIiEELN9__gnu_cxx12_Lock_policyE2EED2Ev
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3227:
.size _ZNSt10shared_ptrISt6vectorIiSaIiEEED2Ev, .-_ZNSt10shared_ptrISt6vectorIiSaIiEEED2Ev
.weak _ZNSt10shared_ptrISt6vectorIiSaIiEEED1Ev
.set _ZNSt10shared_ptrISt6vectorIiSaIiEEED1Ev,_ZNSt10shared_ptrISt6vectorIiSaIiEEED2Ev
.section .text._ZN4BlobIiED2Ev,"axG",@progbits,_ZN4BlobIiED5Ev,comdat
.align 2
.weak _ZN4BlobIiED2Ev
.type _ZN4BlobIiED2Ev, @function
_ZN4BlobIiED2Ev:
.LFB3229:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
movq %rax, %rdi
call _ZNSt10shared_ptrISt6vectorIiSaIiEEED1Ev
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3229:
.size _ZN4BlobIiED2Ev, .-_ZN4BlobIiED2Ev
.weak _ZN4BlobIiED1Ev
.set _ZN4BlobIiED1Ev,_ZN4BlobIiED2Ev
.section .rodata
.LC0:
.string "world"
.LC1:
.string "hello"
.text
.globl _Z4testv
.type _Z4testv, @function
_Z4testv:
.LFB3212:
.cfi_startproc
.cfi_personality 0x9b,DW.ref.__gxx_personality_v0
.cfi_lsda 0x1b,.LLSDA3212
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
pushq %rbx
subq $168, %rsp
.cfi_offset 3, -24
movq %fs:40, %rax
movq %rax, -24(%rbp)
xorl %eax, %eax
leaq -160(%rbp), %rax
movq %rax, %rdi
.LEHB0:
call _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1Ev@PLT
.LEHE0:
leaq -144(%rbp), %rax
movq %rax, %rdi
.LEHB1:
call _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1Ev@PLT
.LEHE1:
leaq -128(%rbp), %rax
movq %rax, %rdi
.LEHB2:
call _ZN4BlobIiEC1Ev
.LEHE2:
leaq -112(%rbp), %rax
movq %rax, %rdi
.LEHB3:
call _ZN4BlobIiEC1Ev
.LEHE3:
leaq -165(%rbp), %rax
movq %rax, %rdi
call _ZNSaIcEC1Ev@PLT
leaq -165(%rbp), %rdx
leaq -64(%rbp), %rax
leaq .LC0(%rip), %rcx
movq %rcx, %rsi
movq %rax, %rdi
.LEHB4:
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1IS3_EEPKcRKS3_
.LEHE4:
leaq -166(%rbp), %rax
movq %rax, %rdi
call _ZNSaIcEC1Ev@PLT
leaq -166(%rbp), %rdx
leaq -96(%rbp), %rax
leaq .LC1(%rip), %rcx
movq %rcx, %rsi
movq %rax, %rdi
.LEHB5:
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1IS3_EEPKcRKS3_
.LEHE5:
leaq -64(%rbp), %rdx
leaq -96(%rbp), %rax
movq %rdx, %rsi
movq %rax, %rdi
.LEHB6:
call _Z7compareINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4lessIS5_EEiRKT_SA_T0_@PLT
.LEHE6:
movl %eax, -164(%rbp)
leaq -96(%rbp), %rax
movq %rax, %rdi
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev@PLT
leaq -166(%rbp), %rax
movq %rax, %rdi
call _ZNSaIcED1Ev@PLT
leaq -64(%rbp), %rax
movq %rax, %rdi
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev@PLT
leaq -165(%rbp), %rax
movq %rax, %rdi
call _ZNSaIcED1Ev@PLT
leaq -112(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobIiED1Ev
leaq -128(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobIiED1Ev
leaq -144(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev
leaq -160(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev
movq -24(%rbp), %rax
subq %fs:40, %rax
je .L27
jmp .L34
.L33:
endbr64
movq %rax, %rbx
leaq -96(%rbp), %rax
movq %rax, %rdi
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev@PLT
jmp .L22
.L32:
endbr64
movq %rax, %rbx
.L22:
leaq -166(%rbp), %rax
movq %rax, %rdi
call _ZNSaIcED1Ev@PLT
leaq -64(%rbp), %rax
movq %rax, %rdi
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev@PLT
jmp .L23
.L31:
endbr64
movq %rax, %rbx
.L23:
leaq -165(%rbp), %rax
movq %rax, %rdi
call _ZNSaIcED1Ev@PLT
leaq -112(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobIiED1Ev
jmp .L24
.L30:
endbr64
movq %rax, %rbx
.L24:
leaq -128(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobIiED1Ev
jmp .L25
.L29:
endbr64
movq %rax, %rbx
.L25:
leaq -144(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev
jmp .L26
.L28:
endbr64
movq %rax, %rbx
.L26:
leaq -160(%rbp), %rax
movq %rax, %rdi
call _ZN4BlobINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev
movq %rbx, %rax
movq %rax, %rdi
.LEHB7:
call _Unwind_Resume@PLT
.LEHE7:
.L34:
call __stack_chk_fail@PLT
.L27:
movq -8(%rbp), %rbx
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3212:
.globl __gxx_personality_v0
.section .gcc_except_table,"a",@progbits
.LLSDA3212:
.byte 0xff
.byte 0xff
.byte 0x1
.uleb128 .LLSDACSE3212-.LLSDACSB3212
.LLSDACSB3212:
.uleb128 .LEHB0-.LFB3212
.uleb128 .LEHE0-.LEHB0
.uleb128 0
.uleb128 0
.uleb128 .LEHB1-.LFB3212
.uleb128 .LEHE1-.LEHB1
.uleb128 .L28-.LFB3212
.uleb128 0
.uleb128 .LEHB2-.LFB3212
.uleb128 .LEHE2-.LEHB2
.uleb128 .L29-.LFB3212
.uleb128 0
.uleb128 .LEHB3-.LFB3212
.uleb128 .LEHE3-.LEHB3
.uleb128 .L30-.LFB3212
.uleb128 0
.uleb128 .LEHB4-.LFB3212
.uleb128 .LEHE4-.LEHB4
.uleb128 .L31-.LFB3212
.uleb128 0
.uleb128 .LEHB5-.LFB3212
.uleb128 .LEHE5-.LEHB5
.uleb128 .L32-.LFB3212
.uleb128 0
.uleb128 .LEHB6-.LFB3212
.uleb128 .LEHE6-.LEHB6
.uleb128 .L33-.LFB3212
.uleb128 0
.uleb128 .LEHB7-.LFB3212
.uleb128 .LEHE7-.LEHB7
.uleb128 0
.uleb128 0
.LLSDACSE3212:
.text
.size _Z4testv, .-_Z4testv
.globl main
.type main, @function
main:
.LFB3231:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movl %edi, -4(%rbp)
movq %rsi, -16(%rbp)
call _Z4testv
movl $0, %eax
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3231:
.size main, .-main
.section .text._ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_,"axG",@progbits,_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_,comdat
.weak _ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_
.type _ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_, @function
_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_:
.LFB3245:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
movq %rdi, -8(%rbp)
movq %rsi, -16(%rbp)
movq -8(%rbp), %rax
movzbl (%rax), %edx
movq -16(%rbp), %rax
movzbl (%rax), %eax
cmpb %al, %dl
sete %al
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3245:
.size _ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_, .-_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_
.section .text._ZN9__gnu_cxx11char_traitsIcE6lengthEPKc,"axG",@progbits,_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc,comdat
.align 2
.weak _ZN9__gnu_cxx11char_traitsIcE6lengthEPKc
.type _ZN9__gnu_cxx11char_traitsIcE6lengthEPKc, @function
_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc:
.LFB3244:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $48, %rsp
movq %rdi, -40(%rbp)
movq %fs:40, %rax
movq %rax, -8(%rbp)
xorl %eax, %eax
movq $0, -16(%rbp)
jmp .L40
.L41:
addq $1, -16(%rbp)
.L40:
movb $0, -17(%rbp)
movq -40(%rbp), %rdx
movq -16(%rbp), %rax
addq %rax, %rdx
leaq -17(%rbp), %rax
movq %rax, %rsi
movq %rdx, %rdi
call _ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_
xorl $1, %eax
testb %al, %al
jne .L41
movq -16(%rbp), %rax
movq -8(%rbp), %rdx
subq %fs:40, %rdx
je .L43
call __stack_chk_fail@PLT
.L43:
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3244:
.size _ZN9__gnu_cxx11char_traitsIcE6lengthEPKc, .-_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc
.section .text._ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev,"axG",@progbits,_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD5Ev,comdat
.align 2
.weak _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev
.type _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev, @function
_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev:
.LFB3350:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
movq %rax, %rdi
call _ZNSaIcED2Ev@PLT
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3350:
.size _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev, .-_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev
.weak _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD1Ev
.set _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD1Ev,_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev
.section .text._ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev,"axG",@progbits,_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED5Ev,comdat
.align 2
.weak _ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev
.type _ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev, @function
_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev:
.LFB3500:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movq %rdi, -8(%rbp)
movq -8(%rbp), %rax
movq (%rax), %rax
testq %rax, %rax
je .L47
movq -8(%rbp), %rax
movq (%rax), %rax
movq %rax, %rdi
call _ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv
.L47:
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3500:
.size _ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev, .-_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev
.weak _ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED1Ev
.set _ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED1Ev,_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev
.section .text._ZN4BlobIiEC2Ev,"axG",@progbits,_ZN4BlobIiEC5Ev,comdat
.align 2
.weak _ZN4BlobIiEC2Ev
.type _ZN4BlobIiEC2Ev, @function
_ZN4BlobIiEC2Ev:
.LFB3503:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $32, %rsp
movq %rdi, -24(%rbp)
movq %fs:40, %rax
movq %rax, -8(%rbp)
xorl %eax, %eax
movq -24(%rbp), %rax
movq %rax, %rdi
call _ZSt11make_sharedISt6vectorIiSaIiEEJEESt10shared_ptrIT_EDpOT0_
nop
movq -8(%rbp), %rax
subq %fs:40, %rax
je .L49
call __stack_chk_fail@PLT
.L49:
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3503:
.size _ZN4BlobIiEC2Ev, .-_ZN4BlobIiEC2Ev
.weak _ZN4BlobIiEC1Ev
.set _ZN4BlobIiEC1Ev,_ZN4BlobIiEC2Ev
.section .text._ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_,"axG",@progbits,_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC5IS3_EEPKcRKS3_,comdat
.align 2
.weak _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_
.type _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_, @function
_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_:
.LFB3506:
.cfi_startproc
.cfi_personality 0x9b,DW.ref.__gxx_personality_v0
.cfi_lsda 0x1b,.LLSDA3506
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
pushq %rbx
subq $72, %rsp
.cfi_offset 3, -24
movq %rdi, -56(%rbp)
movq %rsi, -64(%rbp)
movq %rdx, -72(%rbp)
movq %fs:40, %rax
movq %rax, -24(%rbp)
xorl %eax, %eax
movq -56(%rbp), %rbx
movq -56(%rbp), %rax
movq %rax, %rdi
.LEHB8:
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv@PLT
movq %rax, %rcx
movq -72(%rbp), %rax
movq %rax, %rdx
movq %rcx, %rsi
movq %rbx, %rdi
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_@PLT
.LEHE8:
cmpq $0, -64(%rbp)
je .L51
movq -64(%rbp), %rax
movq %rax, %rdi
.LEHB9:
call _ZNSt11char_traitsIcE6lengthEPKc
movq -64(%rbp), %rdx
addq %rdx, %rax
jmp .L52
.L51:
movl $1, %eax
.L52:
movq %rax, -32(%rbp)
movq -32(%rbp), %rdx
movq -64(%rbp), %rcx
movq -56(%rbp), %rax
movq %rcx, %rsi
movq %rax, %rdi
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag
.LEHE9:
jmp .L56
.L55:
endbr64
movq %rax, %rbx
movq -56(%rbp), %rax
movq %rax, %rdi
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD1Ev
movq %rbx, %rax
movq %rax, %rdi
.LEHB10:
call _Unwind_Resume@PLT
.LEHE10:
.L56:
movq -24(%rbp), %rax
subq %fs:40, %rax
je .L54
call __stack_chk_fail@PLT
.L54:
movq -8(%rbp), %rbx
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3506:
.section .gcc_except_table
.LLSDA3506:
.byte 0xff
.byte 0xff
.byte 0x1
.uleb128 .LLSDACSE3506-.LLSDACSB3506
.LLSDACSB3506:
.uleb128 .LEHB8-.LFB3506
.uleb128 .LEHE8-.LEHB8
.uleb128 0
.uleb128 0
.uleb128 .LEHB9-.LFB3506
.uleb128 .LEHE9-.LEHB9
.uleb128 .L55-.LFB3506
.uleb128 0
.uleb128 .LEHB10-.LFB3506
.uleb128 .LEHE10-.LEHB10
.uleb128 0
.uleb128 0
.LLSDACSE3506:
.section .text._ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_,"axG",@progbits,_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC5IS3_EEPKcRKS3_,comdat
.size _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_, .-_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_
.weak _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1IS3_EEPKcRKS3_
.set _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1IS3_EEPKcRKS3_,_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_
.section .text._ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv,"axG",@progbits,_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv,comdat
.align 2
.weak _ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv
.type _ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv, @function
_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv:
.LFB3583:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $96, %rsp
movq %rdi, -88(%rbp)
movq -88(%rbp), %rax
addq $8, %rax
movq %rax, -48(%rbp)
movl $-1, -80(%rbp)
movzbl __libc_single_threaded(%rip), %eax
testb %al, %al
setne %al
testb %al, %al
je .L59
movq -48(%rbp), %rax
movq %rax, -40(%rbp)
movl -80(%rbp), %eax
movl %eax, -76(%rbp)
movq -40(%rbp), %rax
movl (%rax), %eax
movl %eax, -72(%rbp)
movq -40(%rbp), %rax
movl (%rax), %edx
movl -76(%rbp), %eax
addl %eax, %edx
movq -40(%rbp), %rax
movl %edx, (%rax)
movl -72(%rbp), %eax
jmp .L61
.L59:
movq -48(%rbp), %rax
movq %rax, -32(%rbp)
movl -80(%rbp), %eax
movl %eax, -68(%rbp)
movl -68(%rbp), %edx
movq -32(%rbp), %rax
lock xaddl %edx, (%rax)
movl %edx, %eax
nop
.L61:
cmpl $1, %eax
sete %al
testb %al, %al
je .L69
movq -88(%rbp), %rax
movq (%rax), %rax
addq $16, %rax
movq (%rax), %rdx
movq -88(%rbp), %rax
movq %rax, %rdi
call *%rdx
movq -88(%rbp), %rax
addq $12, %rax
movq %rax, -24(%rbp)
movl $-1, -64(%rbp)
movzbl __libc_single_threaded(%rip), %eax
testb %al, %al
setne %al
testb %al, %al
je .L65
movq -24(%rbp), %rax
movq %rax, -16(%rbp)
movl -64(%rbp), %eax
movl %eax, -60(%rbp)
movq -16(%rbp), %rax
movl (%rax), %eax
movl %eax, -56(%rbp)
movq -16(%rbp), %rax
movl (%rax), %edx
movl -60(%rbp), %eax
addl %eax, %edx
movq -16(%rbp), %rax
movl %edx, (%rax)
movl -56(%rbp), %eax
jmp .L67
.L65:
movq -24(%rbp), %rax
movq %rax, -8(%rbp)
movl -64(%rbp), %eax
movl %eax, -52(%rbp)
movl -52(%rbp), %edx
movq -8(%rbp), %rax
lock xaddl %edx, (%rax)
movl %edx, %eax
nop
.L67:
cmpl $1, %eax
sete %al
testb %al, %al
je .L69
movq -88(%rbp), %rax
movq (%rax), %rax
addq $24, %rax
movq (%rax), %rdx
movq -88(%rbp), %rax
movq %rax, %rdi
call *%rdx
.L69:
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3583:
.size _ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv, .-_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv
.section .text._ZSt11make_sharedISt6vectorIiSaIiEEJEESt10shared_ptrIT_EDpOT0_,"axG",@progbits,_ZSt11make_sharedISt6vectorIiSaIiEEJEESt10shared_ptrIT_EDpOT0_,comdat
.weak _ZSt11make_sharedISt6vectorIiSaIiEEJEESt10shared_ptrIT_EDpOT0_
.type _ZSt11make_sharedISt6vectorIiSaIiEEJEESt10shared_ptrIT_EDpOT0_, @function
_ZSt11make_sharedISt6vectorIiSaIiEEJEESt10shared_ptrIT_EDpOT0_:
.LFB3584:
.cfi_startproc
.cfi_personality 0x9b,DW.ref.__gxx_personality_v0
.cfi_lsda 0x1b,.LLSDA3584
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
pushq %rbx
subq $40, %rsp
.cfi_offset 3, -24
movq %rdi, -40(%rbp)
movq %fs:40, %rax
movq %rax, -24(%rbp)
xorl %eax, %eax
leaq -25(%rbp), %rax
movq %rax, %rdi
call _ZNSaISt6vectorIiSaIiEEEC1Ev
movq -40(%rbp), %rax
leaq -25(%rbp), %rdx
movq %rdx, %rsi
movq %rax, %rdi
.LEHB11:
call _ZSt15allocate_sharedISt6vectorIiSaIiEESaIS2_EJEESt10shared_ptrIT_ERKT0_DpOT1_
.LEHE11:
nop
leaq -25(%rbp), %rax
movq %rax, %rdi
call _ZNSaISt6vectorIiSaIiEEED1Ev
nop
movq -24(%rbp), %rax
subq %fs:40, %rax
je .L73
jmp .L75
.L74:
endbr64
movq %rax, %rbx
leaq -25(%rbp), %rax
movq %rax, %rdi
call _ZNSaISt6vectorIiSaIiEEED1Ev
movq %rbx, %rax
movq %rax, %rdi
.LEHB12:
call _Unwind_Resume@PLT
.LEHE12:
.L75:
call __stack_chk_fail@PLT
.L73:
movq -40(%rbp), %rax
movq -8(%rbp), %rbx
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE3584: