-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0627347E2568A92F.ll
5600 lines (4694 loc) · 328 KB
/
0627347E2568A92F.ll
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
; ModuleID = '/usr/local/google/home/aeubanks/repos/test-suite/MultiSource/Benchmarks/7zip/CPP/7zip/UI/Console/List.cpp'
source_filename = "/usr/local/google/home/aeubanks/repos/test-suite/MultiSource/Benchmarks/7zip/CPP/7zip/UI/Console/List.cpp"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
%class.CStdOutStream = type { i8, ptr }
%struct.CFieldInfoInit = type { i32, ptr, i32, i32, i32, i32 }
%struct.CPropIdToName = type { i32, ptr }
%class.CBaseRecordVector = type { ptr, i32, i32, ptr, i64 }
%struct.CFieldInfo = type { i32, %class.CStringBase, i32, i32, i32, i32 }
%class.CStringBase = type { ptr, i32, i32 }
%class.CMyComBSTR = type { ptr }
%struct._FILETIME = type { i32, i32 }
%"class.NWindows::NCOM::CPropVariant" = type { %struct.tagPROPVARIANT }
%struct.tagPROPVARIANT = type { i16, i16, i16, i16, %union.anon }
%union.anon = type { %struct.LARGE_INTEGER }
%struct.LARGE_INTEGER = type { i64 }
%class.CFieldPrinter = type { %class.CObjectVector }
%class.CObjectVector = type { %class.CRecordVector }
%class.CRecordVector = type { %class.CBaseRecordVector }
%"class.NWindows::NFile::NFind::CFileInfoW" = type { %"class.NWindows::NFile::NFind::CFileInfoBase", %class.CStringBase }
%"class.NWindows::NFile::NFind::CFileInfoBase" = type { i64, %struct._FILETIME, %struct._FILETIME, %struct._FILETIME, i32, i8 }
%struct.CArchiveLink = type <{ %class.CObjectVector.5, %class.CObjectVector.2, i64, i8, [7 x i8] }>
%class.CObjectVector.5 = type { %class.CRecordVector }
%class.CObjectVector.2 = type { %class.CRecordVector }
%class.COpenCallbackConsole = type { %struct.IOpenCallbackUI, ptr, i8, i8, %class.CStringBase }
%struct.IOpenCallbackUI = type { ptr }
%class.CCodecs = type { %struct.IUnknown, %class.CMyUnknownImp, %class.CObjectVector.0 }
%struct.IUnknown = type { ptr }
%class.CMyUnknownImp = type { i32 }
%class.CObjectVector.0 = type { %class.CRecordVector }
%struct.CArc = type { %class.CMyComPtr, %class.CStringBase, %class.CStringBase, i32, i32, %struct._FILETIME, i8, %class.CStringBase }
%class.CMyComPtr = type { ptr }
%struct.CArcInfoEx = type <{ i8, [7 x i8], ptr, ptr, %class.CStringBase, %class.CObjectVector.6, %class.CBuffer, i8, [7 x i8] }>
%class.CObjectVector.6 = type { %class.CRecordVector }
%class.CBuffer = type { ptr, i64, ptr }
$_ZN12CArchiveLinkD2Ev = comdat any
$_ZN13CFieldPrinterD2Ev = comdat any
$__clang_call_terminate = comdat any
$_ZN13CObjectVectorI10CFieldInfoED2Ev = comdat any
$_ZN13CObjectVectorI10CFieldInfoED0Ev = comdat any
$_ZN13CObjectVectorI10CFieldInfoE6DeleteEii = comdat any
$_ZN13CObjectVectorI4CArcED2Ev = comdat any
$_ZN13CObjectVectorI4CArcED0Ev = comdat any
$_ZN13CObjectVectorI4CArcE6DeleteEii = comdat any
$_ZN13CObjectVectorI11CStringBaseIwEED2Ev = comdat any
$_ZN13CObjectVectorI11CStringBaseIwEED0Ev = comdat any
$_ZN13CObjectVectorI11CStringBaseIwEE6DeleteEii = comdat any
$_ZTV13CObjectVectorI10CFieldInfoE = comdat any
$_ZTS13CObjectVectorI10CFieldInfoE = comdat any
$_ZTS13CRecordVectorIPvE = comdat any
$_ZTI13CRecordVectorIPvE = comdat any
$_ZTI13CObjectVectorI10CFieldInfoE = comdat any
$_ZTV13CObjectVectorI4CArcE = comdat any
$_ZTS13CObjectVectorI4CArcE = comdat any
$_ZTI13CObjectVectorI4CArcE = comdat any
$_ZTV13CObjectVectorI11CStringBaseIwEE = comdat any
$_ZTS13CObjectVectorI11CStringBaseIwEE = comdat any
$_ZTI13CObjectVectorI11CStringBaseIwEE = comdat any
@g_StdOut = external global %class.CStdOutStream, align 8
@.str = private unnamed_addr constant [4 x i8] c" = \00", align 1
@.str.4 = private unnamed_addr constant [23 x i8] c"GetPropertyValue error\00", align 1
@_ZTIPKc = external constant ptr
@_ZL19kStandardFieldTable = internal global [5 x %struct.CFieldInfoInit] [%struct.CFieldInfoInit { i32 12, ptr @.str.75, i32 0, i32 0, i32 0, i32 19 }, %struct.CFieldInfoInit { i32 9, ptr @.str.76, i32 2, i32 1, i32 1, i32 5 }, %struct.CFieldInfoInit { i32 7, ptr @.str.20, i32 2, i32 2, i32 1, i32 12 }, %struct.CFieldInfoInit { i32 8, ptr @.str.77, i32 2, i32 2, i32 1, i32 12 }, %struct.CFieldInfoInit { i32 3, ptr @.str.18, i32 0, i32 0, i32 2, i32 24 }], align 16
@.str.5 = private unnamed_addr constant [8 x i8] c"Error: \00", align 1
@.str.6 = private unnamed_addr constant [13 x i8] c" is not file\00", align 1
@.str.7 = private unnamed_addr constant [3 x i8] c": \00", align 1
@.str.8 = private unnamed_addr constant [48 x i8] c"Can not open encrypted archive. Wrong password?\00", align 1
@.str.9 = private unnamed_addr constant [29 x i8] c"Can not open file as archive\00", align 1
@.str.10 = private unnamed_addr constant [31 x i8] c"Can't allocate required memory\00", align 1
@.str.11 = private unnamed_addr constant [4 x i8] c"--\0A\00", align 1
@.str.12 = private unnamed_addr constant [5 x i32] [i32 80, i32 97, i32 116, i32 104, i32 0], align 4
@.str.13 = private unnamed_addr constant [5 x i32] [i32 84, i32 121, i32 112, i32 101, i32 0], align 4
@.str.14 = private unnamed_addr constant [6 x i32] [i32 69, i32 114, i32 114, i32 111, i32 114, i32 0], align 4
@.str.15 = private unnamed_addr constant [6 x i8] c"----\0A\00", align 1
@.str.16 = private unnamed_addr constant [12 x i8] c"----------\0A\00", align 1
@.str.17 = private unnamed_addr constant [11 x i8] c"Archives: \00", align 1
@_ZL13kPropIdToName = internal unnamed_addr constant [55 x %struct.CPropIdToName] [%struct.CPropIdToName { i32 3, ptr @.str.12 }, %struct.CPropIdToName { i32 4, ptr @.str.18 }, %struct.CPropIdToName { i32 6, ptr @.str.19 }, %struct.CPropIdToName { i32 7, ptr @.str.20 }, %struct.CPropIdToName { i32 8, ptr @.str.21 }, %struct.CPropIdToName { i32 9, ptr @.str.22 }, %struct.CPropIdToName { i32 10, ptr @.str.23 }, %struct.CPropIdToName { i32 11, ptr @.str.24 }, %struct.CPropIdToName { i32 12, ptr @.str.25 }, %struct.CPropIdToName { i32 13, ptr @.str.26 }, %struct.CPropIdToName { i32 14, ptr @.str.27 }, %struct.CPropIdToName { i32 15, ptr @.str.28 }, %struct.CPropIdToName { i32 16, ptr @.str.29 }, %struct.CPropIdToName { i32 17, ptr @.str.30 }, %struct.CPropIdToName { i32 18, ptr @.str.31 }, %struct.CPropIdToName { i32 19, ptr @.str.32 }, %struct.CPropIdToName { i32 20, ptr @.str.13 }, %struct.CPropIdToName { i32 21, ptr @.str.33 }, %struct.CPropIdToName { i32 22, ptr @.str.34 }, %struct.CPropIdToName { i32 23, ptr @.str.35 }, %struct.CPropIdToName { i32 24, ptr @.str.36 }, %struct.CPropIdToName { i32 25, ptr @.str.37 }, %struct.CPropIdToName { i32 26, ptr @.str.38 }, %struct.CPropIdToName { i32 27, ptr @.str.39 }, %struct.CPropIdToName { i32 28, ptr @.str.40 }, %struct.CPropIdToName { i32 29, ptr @.str.41 }, %struct.CPropIdToName { i32 30, ptr @.str.42 }, %struct.CPropIdToName { i32 31, ptr @.str.43 }, %struct.CPropIdToName { i32 32, ptr @.str.44 }, %struct.CPropIdToName { i32 33, ptr @.str.45 }, %struct.CPropIdToName { i32 34, ptr @.str.46 }, %struct.CPropIdToName { i32 35, ptr @.str.47 }, %struct.CPropIdToName { i32 36, ptr @.str.48 }, %struct.CPropIdToName { i32 37, ptr @.str.49 }, %struct.CPropIdToName { i32 38, ptr @.str.50 }, %struct.CPropIdToName { i32 39, ptr @.str.51 }, %struct.CPropIdToName { i32 41, ptr @.str.52 }, %struct.CPropIdToName { i32 42, ptr @.str.53 }, %struct.CPropIdToName { i32 43, ptr @.str.54 }, %struct.CPropIdToName { i32 44, ptr @.str.55 }, %struct.CPropIdToName { i32 45, ptr @.str.56 }, %struct.CPropIdToName { i32 46, ptr @.str.57 }, %struct.CPropIdToName { i32 47, ptr @.str.58 }, %struct.CPropIdToName { i32 48, ptr @.str.59 }, %struct.CPropIdToName { i32 49, ptr @.str.60 }, %struct.CPropIdToName { i32 50, ptr @.str.61 }, %struct.CPropIdToName { i32 51, ptr @.str.62 }, %struct.CPropIdToName { i32 52, ptr @.str.63 }, %struct.CPropIdToName { i32 53, ptr @.str.64 }, %struct.CPropIdToName { i32 54, ptr @.str.65 }, %struct.CPropIdToName { i32 55, ptr @.str.14 }, %struct.CPropIdToName { i32 4352, ptr @.str.66 }, %struct.CPropIdToName { i32 4353, ptr @.str.67 }, %struct.CPropIdToName { i32 4354, ptr @.str.68 }, %struct.CPropIdToName { i32 4355, ptr @.str.69 }], align 16
@.str.18 = private unnamed_addr constant [5 x i32] [i32 78, i32 97, i32 109, i32 101, i32 0], align 4
@.str.19 = private unnamed_addr constant [7 x i32] [i32 70, i32 111, i32 108, i32 100, i32 101, i32 114, i32 0], align 4
@.str.20 = private unnamed_addr constant [5 x i32] [i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.21 = private unnamed_addr constant [12 x i32] [i32 80, i32 97, i32 99, i32 107, i32 101, i32 100, i32 32, i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.22 = private unnamed_addr constant [11 x i32] [i32 65, i32 116, i32 116, i32 114, i32 105, i32 98, i32 117, i32 116, i32 101, i32 115, i32 0], align 4
@.str.23 = private unnamed_addr constant [8 x i32] [i32 67, i32 114, i32 101, i32 97, i32 116, i32 101, i32 100, i32 0], align 4
@.str.24 = private unnamed_addr constant [9 x i32] [i32 65, i32 99, i32 99, i32 101, i32 115, i32 115, i32 101, i32 100, i32 0], align 4
@.str.25 = private unnamed_addr constant [9 x i32] [i32 77, i32 111, i32 100, i32 105, i32 102, i32 105, i32 101, i32 100, i32 0], align 4
@.str.26 = private unnamed_addr constant [6 x i32] [i32 83, i32 111, i32 108, i32 105, i32 100, i32 0], align 4
@.str.27 = private unnamed_addr constant [10 x i32] [i32 67, i32 111, i32 109, i32 109, i32 101, i32 110, i32 116, i32 101, i32 100, i32 0], align 4
@.str.28 = private unnamed_addr constant [10 x i32] [i32 69, i32 110, i32 99, i32 114, i32 121, i32 112, i32 116, i32 101, i32 100, i32 0], align 4
@.str.29 = private unnamed_addr constant [13 x i32] [i32 83, i32 112, i32 108, i32 105, i32 116, i32 32, i32 66, i32 101, i32 102, i32 111, i32 114, i32 101, i32 0], align 4
@.str.30 = private unnamed_addr constant [12 x i32] [i32 83, i32 112, i32 108, i32 105, i32 116, i32 32, i32 65, i32 102, i32 116, i32 101, i32 114, i32 0], align 4
@.str.31 = private unnamed_addr constant [16 x i32] [i32 68, i32 105, i32 99, i32 116, i32 105, i32 111, i32 110, i32 97, i32 114, i32 121, i32 32, i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.32 = private unnamed_addr constant [4 x i32] [i32 67, i32 82, i32 67, i32 0], align 4
@.str.33 = private unnamed_addr constant [5 x i32] [i32 65, i32 110, i32 116, i32 105, i32 0], align 4
@.str.34 = private unnamed_addr constant [7 x i32] [i32 77, i32 101, i32 116, i32 104, i32 111, i32 100, i32 0], align 4
@.str.35 = private unnamed_addr constant [8 x i32] [i32 72, i32 111, i32 115, i32 116, i32 32, i32 79, i32 83, i32 0], align 4
@.str.36 = private unnamed_addr constant [12 x i32] [i32 70, i32 105, i32 108, i32 101, i32 32, i32 83, i32 121, i32 115, i32 116, i32 101, i32 109, i32 0], align 4
@.str.37 = private unnamed_addr constant [5 x i32] [i32 85, i32 115, i32 101, i32 114, i32 0], align 4
@.str.38 = private unnamed_addr constant [6 x i32] [i32 71, i32 114, i32 111, i32 117, i32 112, i32 0], align 4
@.str.39 = private unnamed_addr constant [6 x i32] [i32 66, i32 108, i32 111, i32 99, i32 107, i32 0], align 4
@.str.40 = private unnamed_addr constant [8 x i32] [i32 67, i32 111, i32 109, i32 109, i32 101, i32 110, i32 116, i32 0], align 4
@.str.41 = private unnamed_addr constant [9 x i32] [i32 80, i32 111, i32 115, i32 105, i32 116, i32 105, i32 111, i32 110, i32 0], align 4
@.str.42 = private unnamed_addr constant [7 x i32] [i32 80, i32 114, i32 101, i32 102, i32 105, i32 120, i32 0], align 4
@.str.43 = private unnamed_addr constant [8 x i32] [i32 70, i32 111, i32 108, i32 100, i32 101, i32 114, i32 115, i32 0], align 4
@.str.44 = private unnamed_addr constant [6 x i32] [i32 70, i32 105, i32 108, i32 101, i32 115, i32 0], align 4
@.str.45 = private unnamed_addr constant [8 x i32] [i32 86, i32 101, i32 114, i32 115, i32 105, i32 111, i32 110, i32 0], align 4
@.str.46 = private unnamed_addr constant [7 x i32] [i32 86, i32 111, i32 108, i32 117, i32 109, i32 101, i32 0], align 4
@.str.47 = private unnamed_addr constant [12 x i32] [i32 77, i32 117, i32 108, i32 116, i32 105, i32 118, i32 111, i32 108, i32 117, i32 109, i32 101, i32 0], align 4
@.str.48 = private unnamed_addr constant [7 x i32] [i32 79, i32 102, i32 102, i32 115, i32 101, i32 116, i32 0], align 4
@.str.49 = private unnamed_addr constant [6 x i32] [i32 76, i32 105, i32 110, i32 107, i32 115, i32 0], align 4
@.str.50 = private unnamed_addr constant [7 x i32] [i32 66, i32 108, i32 111, i32 99, i32 107, i32 115, i32 0], align 4
@.str.51 = private unnamed_addr constant [8 x i32] [i32 86, i32 111, i32 108, i32 117, i32 109, i32 101, i32 115, i32 0], align 4
@.str.52 = private unnamed_addr constant [7 x i32] [i32 54, i32 52, i32 45, i32 98, i32 105, i32 116, i32 0], align 4
@.str.53 = private unnamed_addr constant [11 x i32] [i32 66, i32 105, i32 103, i32 45, i32 101, i32 110, i32 100, i32 105, i32 97, i32 110, i32 0], align 4
@.str.54 = private unnamed_addr constant [4 x i32] [i32 67, i32 80, i32 85, i32 0], align 4
@.str.55 = private unnamed_addr constant [14 x i32] [i32 80, i32 104, i32 121, i32 115, i32 105, i32 99, i32 97, i32 108, i32 32, i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.56 = private unnamed_addr constant [13 x i32] [i32 72, i32 101, i32 97, i32 100, i32 101, i32 114, i32 115, i32 32, i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.57 = private unnamed_addr constant [9 x i32] [i32 67, i32 104, i32 101, i32 99, i32 107, i32 115, i32 117, i32 109, i32 0], align 4
@.str.58 = private unnamed_addr constant [16 x i32] [i32 67, i32 104, i32 97, i32 114, i32 97, i32 99, i32 116, i32 101, i32 114, i32 105, i32 115, i32 116, i32 105, i32 99, i32 115, i32 0], align 4
@.str.59 = private unnamed_addr constant [16 x i32] [i32 86, i32 105, i32 114, i32 116, i32 117, i32 97, i32 108, i32 32, i32 65, i32 100, i32 100, i32 114, i32 101, i32 115, i32 115, i32 0], align 4
@.str.60 = private unnamed_addr constant [3 x i32] [i32 73, i32 68, i32 0], align 4
@.str.61 = private unnamed_addr constant [11 x i32] [i32 83, i32 104, i32 111, i32 114, i32 116, i32 32, i32 78, i32 97, i32 109, i32 101, i32 0], align 4
@.str.62 = private unnamed_addr constant [20 x i32] [i32 67, i32 114, i32 101, i32 97, i32 116, i32 111, i32 114, i32 32, i32 65, i32 112, i32 112, i32 108, i32 105, i32 99, i32 97, i32 116, i32 105, i32 111, i32 110, i32 0], align 4
@.str.63 = private unnamed_addr constant [12 x i32] [i32 83, i32 101, i32 99, i32 116, i32 111, i32 114, i32 32, i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.64 = private unnamed_addr constant [5 x i32] [i32 77, i32 111, i32 100, i32 101, i32 0], align 4
@.str.65 = private unnamed_addr constant [5 x i32] [i32 76, i32 105, i32 110, i32 107, i32 0], align 4
@.str.66 = private unnamed_addr constant [11 x i32] [i32 84, i32 111, i32 116, i32 97, i32 108, i32 32, i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.67 = private unnamed_addr constant [11 x i32] [i32 70, i32 114, i32 101, i32 101, i32 32, i32 83, i32 112, i32 97, i32 99, i32 101, i32 0], align 4
@.str.68 = private unnamed_addr constant [13 x i32] [i32 67, i32 108, i32 117, i32 115, i32 116, i32 101, i32 114, i32 32, i32 83, i32 105, i32 122, i32 101, i32 0], align 4
@.str.69 = private unnamed_addr constant [6 x i32] [i32 76, i32 97, i32 98, i32 101, i32 108, i32 0], align 4
@.str.70 = private unnamed_addr constant [15 x i8] c"incorrect item\00", align 1
@.str.71 = private unnamed_addr constant [30 x i8] c"FileTimeToLocalFileTime error\00", align 1
@.str.72 = private unnamed_addr constant [20 x i8] c" \00", align 1
@_ZTV13CObjectVectorI10CFieldInfoE = linkonce_odr dso_local unnamed_addr constant { [5 x ptr] } { [5 x ptr] [ptr null, ptr @_ZTI13CObjectVectorI10CFieldInfoE, ptr @_ZN13CObjectVectorI10CFieldInfoED2Ev, ptr @_ZN13CObjectVectorI10CFieldInfoED0Ev, ptr @_ZN13CObjectVectorI10CFieldInfoE6DeleteEii] }, comdat, align 8
@_ZTVN10__cxxabiv120__si_class_type_infoE = external global ptr
@_ZTS13CObjectVectorI10CFieldInfoE = linkonce_odr dso_local constant [30 x i8] c"13CObjectVectorI10CFieldInfoE\00", comdat, align 1
@_ZTS13CRecordVectorIPvE = linkonce_odr dso_local constant [20 x i8] c"13CRecordVectorIPvE\00", comdat, align 1
@_ZTI17CBaseRecordVector = external constant ptr
@_ZTI13CRecordVectorIPvE = linkonce_odr dso_local constant { ptr, ptr, ptr } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv120__si_class_type_infoE, i64 2), ptr @_ZTS13CRecordVectorIPvE, ptr @_ZTI17CBaseRecordVector }, comdat, align 8
@_ZTI13CObjectVectorI10CFieldInfoE = linkonce_odr dso_local constant { ptr, ptr, ptr } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv120__si_class_type_infoE, i64 2), ptr @_ZTS13CObjectVectorI10CFieldInfoE, ptr @_ZTI13CRecordVectorIPvE }, comdat, align 8
@.str.75 = private unnamed_addr constant [18 x i32] [i32 32, i32 32, i32 32, i32 68, i32 97, i32 116, i32 101, i32 32, i32 32, i32 32, i32 32, i32 32, i32 32, i32 84, i32 105, i32 109, i32 101, i32 0], align 4
@.str.76 = private unnamed_addr constant [5 x i32] [i32 65, i32 116, i32 116, i32 114, i32 0], align 4
@.str.77 = private unnamed_addr constant [11 x i32] [i32 67, i32 111, i32 109, i32 112, i32 114, i32 101, i32 115, i32 115, i32 101, i32 100, i32 0], align 4
@_ZTV13CObjectVectorI4CArcE = linkonce_odr dso_local unnamed_addr constant { [5 x ptr] } { [5 x ptr] [ptr null, ptr @_ZTI13CObjectVectorI4CArcE, ptr @_ZN13CObjectVectorI4CArcED2Ev, ptr @_ZN13CObjectVectorI4CArcED0Ev, ptr @_ZN13CObjectVectorI4CArcE6DeleteEii] }, comdat, align 8
@_ZTS13CObjectVectorI4CArcE = linkonce_odr dso_local constant [23 x i8] c"13CObjectVectorI4CArcE\00", comdat, align 1
@_ZTI13CObjectVectorI4CArcE = linkonce_odr dso_local constant { ptr, ptr, ptr } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv120__si_class_type_infoE, i64 2), ptr @_ZTS13CObjectVectorI4CArcE, ptr @_ZTI13CRecordVectorIPvE }, comdat, align 8
@_ZTV13CObjectVectorI11CStringBaseIwEE = linkonce_odr dso_local unnamed_addr constant { [5 x ptr] } { [5 x ptr] [ptr null, ptr @_ZTI13CObjectVectorI11CStringBaseIwEE, ptr @_ZN13CObjectVectorI11CStringBaseIwEED2Ev, ptr @_ZN13CObjectVectorI11CStringBaseIwEED0Ev, ptr @_ZN13CObjectVectorI11CStringBaseIwEE6DeleteEii] }, comdat, align 8
@_ZTS13CObjectVectorI11CStringBaseIwEE = linkonce_odr dso_local constant [34 x i8] c"13CObjectVectorI11CStringBaseIwEE\00", comdat, align 1
@_ZTI13CObjectVectorI11CStringBaseIwEE = linkonce_odr dso_local constant { ptr, ptr, ptr } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv120__si_class_type_infoE, i64 2), ptr @_ZTS13CObjectVectorI11CStringBaseIwEE, ptr @_ZTI13CRecordVectorIPvE }, comdat, align 8
@_ZTV20COpenCallbackConsole = external unnamed_addr constant { [9 x ptr] }, align 8
@.str.78 = private unnamed_addr constant [18 x i8] c"Listing archive: \00", align 1
; Function Attrs: uwtable
define dso_local void @_ZN13CFieldPrinter4InitEPK14CFieldInfoIniti(ptr noundef nonnull align 8 dereferenceable(32) %this, ptr nocapture noundef readonly %standardFieldTable, i32 noundef %numItems) local_unnamed_addr #0 align 2 personality ptr @__gxx_personality_v0 {
entry:
tail call void @_ZN17CBaseRecordVector5ClearEv(ptr noundef nonnull align 8 dereferenceable(32) %this)
%cmp33 = icmp sgt i32 %numItems, 0
br i1 %cmp33, label %for.body.lr.ph, label %for.cond.cleanup
for.body.lr.ph: ; preds = %entry
%_items.i.i = getelementptr inbounds %class.CBaseRecordVector, ptr %this, i64 0, i32 3
%_size.i.i = getelementptr inbounds %class.CBaseRecordVector, ptr %this, i64 0, i32 2
%wide.trip.count = zext i32 %numItems to i64
br label %for.body
for.cond.cleanup: ; preds = %_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit, %entry
ret void
for.body: ; preds = %for.body.lr.ph, %_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit
%indvars.iv = phi i64 [ 0, %for.body.lr.ph ], [ %indvars.iv.next, %_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit ]
%call.i.i.i = tail call noalias noundef nonnull dereferenceable(16) ptr @_Znam(i64 noundef 16) #14
%arrayidx = getelementptr inbounds %struct.CFieldInfoInit, ptr %standardFieldTable, i64 %indvars.iv
%0 = load i32, ptr %arrayidx, align 8, !tbaa !5
%Name = getelementptr inbounds %struct.CFieldInfoInit, ptr %standardFieldTable, i64 %indvars.iv, i32 1
%1 = load ptr, ptr %Name, align 8, !tbaa !12
store i32 0, ptr %call.i.i.i, align 4, !tbaa !13
br label %for.cond.i.i
for.cond.i.i: ; preds = %for.cond.i.i, %for.body
%indvars.iv.i.i = phi i64 [ %indvars.iv.next.i.i, %for.cond.i.i ], [ 0, %for.body ]
%arrayidx.i.i = getelementptr inbounds i32, ptr %1, i64 %indvars.iv.i.i
%2 = load i32, ptr %arrayidx.i.i, align 4, !tbaa !13
%cmp.not.i.i = icmp eq i32 %2, 0
%indvars.iv.next.i.i = add nuw i64 %indvars.iv.i.i, 1
br i1 %cmp.not.i.i, label %_Z11MyStringLenIwEiPKT_.exit.i, label %for.cond.i.i, !llvm.loop !15
_Z11MyStringLenIwEiPKT_.exit.i: ; preds = %for.cond.i.i
%3 = trunc i64 %indvars.iv.i.i to i32
%add.i.i = add nsw i32 %3, 1
%cmp.i.i = icmp eq i32 %add.i.i, 4
br i1 %cmp.i.i, label %_ZN11CStringBaseIwE11SetCapacityEi.exit.i, label %if.end.i.i
if.end.i.i: ; preds = %_Z11MyStringLenIwEiPKT_.exit.i
%conv.i.i = zext i32 %add.i.i to i64
%4 = icmp slt i32 %3, -1
%5 = shl nuw nsw i64 %conv.i.i, 2
%6 = select i1 %4, i64 -1, i64 %5
%call.i.i19 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %6) #14
to label %delete.notnull.i.i unwind label %lpad
delete.notnull.i.i: ; preds = %if.end.i.i
tail call void @_ZdaPv(ptr noundef nonnull %call.i.i.i) #15
store i32 0, ptr %call.i.i19, align 4, !tbaa !13
br label %_ZN11CStringBaseIwE11SetCapacityEi.exit.i
_ZN11CStringBaseIwE11SetCapacityEi.exit.i: ; preds = %delete.notnull.i.i, %_Z11MyStringLenIwEiPKT_.exit.i
%7 = phi ptr [ %call.i.i.i, %_Z11MyStringLenIwEiPKT_.exit.i ], [ %call.i.i19, %delete.notnull.i.i ]
br label %while.cond.i.i
while.cond.i.i: ; preds = %while.cond.i.i, %_ZN11CStringBaseIwE11SetCapacityEi.exit.i
%src.addr.0.i.i = phi ptr [ %1, %_ZN11CStringBaseIwE11SetCapacityEi.exit.i ], [ %incdec.ptr.i.i, %while.cond.i.i ]
%dest.addr.0.i.i = phi ptr [ %7, %_ZN11CStringBaseIwE11SetCapacityEi.exit.i ], [ %incdec.ptr1.i.i, %while.cond.i.i ]
%incdec.ptr.i.i = getelementptr inbounds i32, ptr %src.addr.0.i.i, i64 1
%8 = load i32, ptr %src.addr.0.i.i, align 4, !tbaa !13
%incdec.ptr1.i.i = getelementptr inbounds i32, ptr %dest.addr.0.i.i, i64 1
store i32 %8, ptr %dest.addr.0.i.i, align 4, !tbaa !13
%cmp.not.i9.i = icmp eq i32 %8, 0
br i1 %cmp.not.i9.i, label %invoke.cont, label %while.cond.i.i, !llvm.loop !17
invoke.cont: ; preds = %while.cond.i.i
%TitleAdjustment = getelementptr inbounds %struct.CFieldInfoInit, ptr %standardFieldTable, i64 %indvars.iv, i32 2
%9 = load <4 x i32>, ptr %TitleAdjustment, align 8, !tbaa !18
%call.i21 = invoke noalias noundef nonnull dereferenceable(40) ptr @_Znwm(i64 noundef 40) #14
to label %call.i.noexc unwind label %lpad
call.i.noexc: ; preds = %invoke.cont
store i32 %0, ptr %call.i21, align 8, !tbaa !19
%Name.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %call.i21, i64 0, i32 1
tail call void @llvm.memset.p0.i64(ptr noundef nonnull align 8 dereferenceable(16) %Name.i.i, i8 0, i64 16, i1 false)
%cmp.i.i.i.i = icmp ne i32 %add.i.i, 0
tail call void @llvm.assume(i1 %cmp.i.i.i.i)
%conv.i.i.i.i = zext i32 %add.i.i to i64
%10 = icmp slt i32 %3, -1
%11 = shl nuw nsw i64 %conv.i.i.i.i, 2
%12 = select i1 %10, i64 -1, i64 %11
%call.i.i.i4.i = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %12) #14
to label %call.i.i.i.noexc.i unwind label %lpad.i
call.i.i.i.noexc.i: ; preds = %call.i.noexc
%_capacity.i.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %call.i21, i64 0, i32 1, i32 2
store ptr %call.i.i.i4.i, ptr %Name.i.i, align 8, !tbaa !22
store i32 0, ptr %call.i.i.i4.i, align 4, !tbaa !13
store i32 %add.i.i, ptr %_capacity.i.i.i, align 4, !tbaa !23
br label %while.cond.i.i.i.i
while.cond.i.i.i.i: ; preds = %call.i.i.i.noexc.i, %while.cond.i.i.i.i
%src.addr.0.i.i.i.i = phi ptr [ %incdec.ptr.i.i.i.i, %while.cond.i.i.i.i ], [ %7, %call.i.i.i.noexc.i ]
%dest.addr.0.i.i.i.i = phi ptr [ %incdec.ptr1.i.i.i.i, %while.cond.i.i.i.i ], [ %call.i.i.i4.i, %call.i.i.i.noexc.i ]
%incdec.ptr.i.i.i.i = getelementptr inbounds i32, ptr %src.addr.0.i.i.i.i, i64 1
%13 = load i32, ptr %src.addr.0.i.i.i.i, align 4, !tbaa !13
%incdec.ptr1.i.i.i.i = getelementptr inbounds i32, ptr %dest.addr.0.i.i.i.i, i64 1
store i32 %13, ptr %dest.addr.0.i.i.i.i, align 4, !tbaa !13
%cmp.not.i.i.i.i = icmp eq i32 %13, 0
br i1 %cmp.not.i.i.i.i, label %_ZN10CFieldInfoC2ERKS_.exit.i, label %while.cond.i.i.i.i, !llvm.loop !17
_ZN10CFieldInfoC2ERKS_.exit.i: ; preds = %while.cond.i.i.i.i
%_length.i.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %call.i21, i64 0, i32 1, i32 1
store i32 %3, ptr %_length.i.i.i, align 8, !tbaa !24
%TitleAdjustment.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %call.i21, i64 0, i32 2
store <4 x i32> %9, ptr %TitleAdjustment.i.i, align 8
invoke void @_ZN17CBaseRecordVector18ReserveOnePositionEv(ptr noundef nonnull align 8 dereferenceable(32) %this)
to label %_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit unwind label %lpad
lpad.i: ; preds = %call.i.noexc
%14 = landingpad { ptr, i32 }
cleanup
tail call void @_ZdlPv(ptr noundef nonnull %call.i21) #15
br label %delete.notnull.i.i26
_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit: ; preds = %_ZN10CFieldInfoC2ERKS_.exit.i
%15 = load ptr, ptr %_items.i.i, align 8, !tbaa !25
%16 = load i32, ptr %_size.i.i, align 4, !tbaa !28
%idxprom.i.i = sext i32 %16 to i64
%arrayidx.i.i20 = getelementptr inbounds ptr, ptr %15, i64 %idxprom.i.i
store ptr %call.i21, ptr %arrayidx.i.i20, align 8, !tbaa !29
%inc.i.i = add nsw i32 %16, 1
store i32 %inc.i.i, ptr %_size.i.i, align 4, !tbaa !28
tail call void @_ZdaPv(ptr noundef nonnull %7) #15
%indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
%exitcond.not = icmp eq i64 %indvars.iv.next, %wide.trip.count
br i1 %exitcond.not, label %for.cond.cleanup, label %for.body, !llvm.loop !30
lpad: ; preds = %_ZN10CFieldInfoC2ERKS_.exit.i, %invoke.cont, %if.end.i.i
%fieldInfo.sroa.528.2 = phi ptr [ %7, %_ZN10CFieldInfoC2ERKS_.exit.i ], [ %7, %invoke.cont ], [ %call.i.i.i, %if.end.i.i ]
%17 = landingpad { ptr, i32 }
cleanup
br label %delete.notnull.i.i26
delete.notnull.i.i26: ; preds = %lpad, %lpad.i
%fieldInfo.sroa.528.3 = phi ptr [ %fieldInfo.sroa.528.2, %lpad ], [ %7, %lpad.i ]
%eh.lpad-body = phi { ptr, i32 } [ %17, %lpad ], [ %14, %lpad.i ]
tail call void @_ZdaPv(ptr noundef nonnull %fieldInfo.sroa.528.3) #15
resume { ptr, i32 } %eh.lpad-body
}
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
declare void @llvm.lifetime.start.p0(i64 immarg, ptr nocapture) #1
declare i32 @__gxx_personality_v0(...)
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
declare void @llvm.lifetime.end.p0(i64 immarg, ptr nocapture) #1
; Function Attrs: uwtable
define dso_local noundef i32 @_ZN13CFieldPrinter4InitEP10IInArchive(ptr noundef nonnull align 8 dereferenceable(32) %this, ptr noundef %archive) local_unnamed_addr #0 align 2 personality ptr @__gxx_personality_v0 {
entry:
%numProps = alloca i32, align 4
%name = alloca %class.CMyComBSTR, align 8
%propID = alloca i32, align 4
%vt = alloca i16, align 2
%ref.tmp = alloca %class.CStringBase, align 8
tail call void @_ZN17CBaseRecordVector5ClearEv(ptr noundef nonnull align 8 dereferenceable(32) %this)
call void @llvm.lifetime.start.p0(i64 4, ptr nonnull %numProps) #16
%vtable = load ptr, ptr %archive, align 8, !tbaa !31
%vfn = getelementptr inbounds ptr, ptr %vtable, i64 11
%0 = load ptr, ptr %vfn, align 8
%call = call noundef i32 %0(ptr noundef nonnull align 8 dereferenceable(8) %archive, ptr noundef nonnull %numProps)
%cmp.not = icmp eq i32 %call, 0
br i1 %cmp.not, label %for.cond.preheader, label %cleanup42
for.cond.preheader: ; preds = %entry
%1 = load i32, ptr %numProps, align 4, !tbaa !33
%cmp2.not92.not = icmp eq i32 %1, 0
br i1 %cmp2.not92.not, label %cleanup42, label %for.body.lr.ph
for.body.lr.ph: ; preds = %for.cond.preheader
%_length.i = getelementptr inbounds %class.CStringBase, ptr %ref.tmp, i64 0, i32 1
%_items.i.i = getelementptr inbounds %class.CBaseRecordVector, ptr %this, i64 0, i32 3
%_size.i.i = getelementptr inbounds %class.CBaseRecordVector, ptr %this, i64 0, i32 2
br label %for.body
for.cond: ; preds = %_ZN10CMyComBSTRD2Ev.exit
%inc = add nuw i32 %i.093, 1
%2 = load i32, ptr %numProps, align 4, !tbaa !33
%cmp2.not = icmp ult i32 %inc, %2
br i1 %cmp2.not, label %for.body, label %cleanup42, !llvm.loop !34
for.body: ; preds = %for.body.lr.ph, %for.cond
%i.093 = phi i32 [ 0, %for.body.lr.ph ], [ %inc, %for.cond ]
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %name) #16
store ptr null, ptr %name, align 8, !tbaa !35
call void @llvm.lifetime.start.p0(i64 4, ptr nonnull %propID) #16
call void @llvm.lifetime.start.p0(i64 2, ptr nonnull %vt) #16
%vtable5 = load ptr, ptr %archive, align 8, !tbaa !31
%vfn6 = getelementptr inbounds ptr, ptr %vtable5, i64 12
%3 = load ptr, ptr %vfn6, align 8
%call8 = invoke noundef i32 %3(ptr noundef nonnull align 8 dereferenceable(8) %archive, i32 noundef %i.093, ptr noundef nonnull %name, ptr noundef nonnull %propID, ptr noundef nonnull %vt)
to label %invoke.cont7 unwind label %lpad
invoke.cont7: ; preds = %for.body
%cmp9.not.not = icmp eq i32 %call8, 0
br i1 %cmp9.not.not, label %cleanup.cont14, label %cleanup29
lpad: ; preds = %for.body
%4 = landingpad { ptr, i32 }
cleanup
br label %ehcleanup30
cleanup.cont14: ; preds = %invoke.cont7
%call.i.i.i56 = invoke noalias noundef nonnull dereferenceable(16) ptr @_Znam(i64 noundef 16) #14
to label %_ZN10CFieldInfoC2Ev.exit unwind label %lpad15
_ZN10CFieldInfoC2Ev.exit: ; preds = %cleanup.cont14
store i32 0, ptr %call.i.i.i56, align 4, !tbaa !13
%5 = load i32, ptr %propID, align 4, !tbaa !33
call void @llvm.lifetime.start.p0(i64 16, ptr nonnull %ref.tmp) #16
%6 = load ptr, ptr %name, align 8, !tbaa !35
invoke fastcc void @_ZL11GetPropNamejPw(ptr noalias nonnull align 8 %ref.tmp, i32 noundef %5, ptr noundef %6)
to label %invoke.cont20 unwind label %lpad17
invoke.cont20: ; preds = %_ZN10CFieldInfoC2Ev.exit
store i32 0, ptr %call.i.i.i56, align 4, !tbaa !13
%7 = load i32, ptr %_length.i, align 8, !tbaa !24
%add.i.i = add nsw i32 %7, 1
%cmp.i.i = icmp eq i32 %add.i.i, 4
br i1 %cmp.i.i, label %_ZN11CStringBaseIwE11SetCapacityEi.exit.i, label %if.end.i.i
if.end.i.i: ; preds = %invoke.cont20
%conv.i.i = zext i32 %add.i.i to i64
%8 = icmp slt i32 %7, -1
%9 = shl nuw nsw i64 %conv.i.i, 2
%10 = select i1 %8, i64 -1, i64 %9
%call.i.i58 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %10) #14
to label %delete.notnull.i.i unwind label %lpad21
delete.notnull.i.i: ; preds = %if.end.i.i
call void @_ZdaPv(ptr noundef nonnull %call.i.i.i56) #15
store i32 0, ptr %call.i.i58, align 4, !tbaa !13
br label %_ZN11CStringBaseIwE11SetCapacityEi.exit.i
_ZN11CStringBaseIwE11SetCapacityEi.exit.i: ; preds = %delete.notnull.i.i, %invoke.cont20
%11 = phi ptr [ %call.i.i.i56, %invoke.cont20 ], [ %call.i.i58, %delete.notnull.i.i ]
%12 = load ptr, ptr %ref.tmp, align 8, !tbaa !22
br label %while.cond.i.i
while.cond.i.i: ; preds = %while.cond.i.i, %_ZN11CStringBaseIwE11SetCapacityEi.exit.i
%src.addr.0.i.i = phi ptr [ %12, %_ZN11CStringBaseIwE11SetCapacityEi.exit.i ], [ %incdec.ptr.i.i, %while.cond.i.i ]
%dest.addr.0.i.i = phi ptr [ %11, %_ZN11CStringBaseIwE11SetCapacityEi.exit.i ], [ %incdec.ptr1.i.i, %while.cond.i.i ]
%incdec.ptr.i.i = getelementptr inbounds i32, ptr %src.addr.0.i.i, i64 1
%13 = load i32, ptr %src.addr.0.i.i, align 4, !tbaa !13
%incdec.ptr1.i.i = getelementptr inbounds i32, ptr %dest.addr.0.i.i, i64 1
store i32 %13, ptr %dest.addr.0.i.i, align 4, !tbaa !13
%cmp.not.i.i = icmp eq i32 %13, 0
br i1 %cmp.not.i.i, label %invoke.cont22, label %while.cond.i.i, !llvm.loop !17
invoke.cont22: ; preds = %while.cond.i.i
%isnull.i = icmp eq ptr %12, null
br i1 %isnull.i, label %_ZN11CStringBaseIwED2Ev.exit, label %delete.notnull.i
delete.notnull.i: ; preds = %invoke.cont22
call void @_ZdaPv(ptr noundef nonnull %12) #15
br label %_ZN11CStringBaseIwED2Ev.exit
_ZN11CStringBaseIwED2Ev.exit: ; preds = %invoke.cont22, %delete.notnull.i
call void @llvm.lifetime.end.p0(i64 16, ptr nonnull %ref.tmp) #16
%call.i59 = invoke noalias noundef nonnull dereferenceable(40) ptr @_Znwm(i64 noundef 40) #14
to label %call.i.noexc unwind label %lpad24
call.i.noexc: ; preds = %_ZN11CStringBaseIwED2Ev.exit
store i32 %5, ptr %call.i59, align 8, !tbaa !19
%Name.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %call.i59, i64 0, i32 1
call void @llvm.memset.p0.i64(ptr noundef nonnull align 8 dereferenceable(16) %Name.i.i, i8 0, i64 16, i1 false)
%cmp.i.i.i.i = icmp ne i32 %add.i.i, 0
call void @llvm.assume(i1 %cmp.i.i.i.i)
%conv.i.i.i.i = zext i32 %add.i.i to i64
%14 = icmp slt i32 %7, -1
%15 = shl nuw nsw i64 %conv.i.i.i.i, 2
%16 = select i1 %14, i64 -1, i64 %15
%call.i.i.i4.i = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %16) #14
to label %call.i.i.i.noexc.i unwind label %lpad.i
call.i.i.i.noexc.i: ; preds = %call.i.noexc
%_capacity.i.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %call.i59, i64 0, i32 1, i32 2
store ptr %call.i.i.i4.i, ptr %Name.i.i, align 8, !tbaa !22
store i32 0, ptr %call.i.i.i4.i, align 4, !tbaa !13
store i32 %add.i.i, ptr %_capacity.i.i.i, align 4, !tbaa !23
br label %while.cond.i.i.i.i
while.cond.i.i.i.i: ; preds = %call.i.i.i.noexc.i, %while.cond.i.i.i.i
%src.addr.0.i.i.i.i = phi ptr [ %incdec.ptr.i.i.i.i, %while.cond.i.i.i.i ], [ %11, %call.i.i.i.noexc.i ]
%dest.addr.0.i.i.i.i = phi ptr [ %incdec.ptr1.i.i.i.i, %while.cond.i.i.i.i ], [ %call.i.i.i4.i, %call.i.i.i.noexc.i ]
%incdec.ptr.i.i.i.i = getelementptr inbounds i32, ptr %src.addr.0.i.i.i.i, i64 1
%17 = load i32, ptr %src.addr.0.i.i.i.i, align 4, !tbaa !13
%incdec.ptr1.i.i.i.i = getelementptr inbounds i32, ptr %dest.addr.0.i.i.i.i, i64 1
store i32 %17, ptr %dest.addr.0.i.i.i.i, align 4, !tbaa !13
%cmp.not.i.i.i.i = icmp eq i32 %17, 0
br i1 %cmp.not.i.i.i.i, label %_ZN10CFieldInfoC2ERKS_.exit.i, label %while.cond.i.i.i.i, !llvm.loop !17
_ZN10CFieldInfoC2ERKS_.exit.i: ; preds = %while.cond.i.i.i.i
%_length.i.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %call.i59, i64 0, i32 1, i32 1
store i32 %7, ptr %_length.i.i.i, align 8, !tbaa !24
invoke void @_ZN17CBaseRecordVector18ReserveOnePositionEv(ptr noundef nonnull align 8 dereferenceable(32) %this)
to label %_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit unwind label %lpad24
lpad.i: ; preds = %call.i.noexc
%18 = landingpad { ptr, i32 }
cleanup
call void @_ZdlPv(ptr noundef nonnull %call.i59) #15
br label %delete.notnull.i.i67
_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit: ; preds = %_ZN10CFieldInfoC2ERKS_.exit.i
%19 = load ptr, ptr %_items.i.i, align 8, !tbaa !25
%20 = load i32, ptr %_size.i.i, align 4, !tbaa !28
%idxprom.i.i = sext i32 %20 to i64
%arrayidx.i.i = getelementptr inbounds ptr, ptr %19, i64 %idxprom.i.i
store ptr %call.i59, ptr %arrayidx.i.i, align 8, !tbaa !29
%inc.i.i = add nsw i32 %20, 1
store i32 %inc.i.i, ptr %_size.i.i, align 4, !tbaa !28
call void @_ZdaPv(ptr noundef nonnull %11) #15
br label %cleanup29
cleanup29: ; preds = %invoke.cont7, %_ZN13CObjectVectorI10CFieldInfoE3AddERKS0_.exit
call void @llvm.lifetime.end.p0(i64 2, ptr nonnull %vt) #16
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %propID) #16
%21 = load ptr, ptr %name, align 8, !tbaa !35
invoke void @SysFreeString(ptr noundef %21)
to label %_ZN10CMyComBSTRD2Ev.exit unwind label %terminate.lpad.i
terminate.lpad.i: ; preds = %cleanup29
%22 = landingpad { ptr, i32 }
catch ptr null
%23 = extractvalue { ptr, i32 } %22, 0
call void @__clang_call_terminate(ptr %23) #17
unreachable
_ZN10CMyComBSTRD2Ev.exit: ; preds = %cleanup29
call void @llvm.lifetime.end.p0(i64 8, ptr nonnull %name) #16
br i1 %cmp9.not.not, label %for.cond, label %cleanup42
lpad15: ; preds = %cleanup.cont14
%24 = landingpad { ptr, i32 }
cleanup
br label %ehcleanup30
lpad17: ; preds = %_ZN10CFieldInfoC2Ev.exit
%25 = landingpad { ptr, i32 }
cleanup
br label %ehcleanup
lpad21: ; preds = %if.end.i.i
%26 = landingpad { ptr, i32 }
cleanup
%27 = load ptr, ptr %ref.tmp, align 8, !tbaa !22
%isnull.i62 = icmp eq ptr %27, null
br i1 %isnull.i62, label %ehcleanup, label %delete.notnull.i63
delete.notnull.i63: ; preds = %lpad21
call void @_ZdaPv(ptr noundef nonnull %27) #15
br label %ehcleanup
ehcleanup: ; preds = %delete.notnull.i63, %lpad21, %lpad17
%.pn = phi { ptr, i32 } [ %25, %lpad17 ], [ %26, %lpad21 ], [ %26, %delete.notnull.i63 ]
call void @llvm.lifetime.end.p0(i64 16, ptr nonnull %ref.tmp) #16
br label %delete.notnull.i.i67
lpad24: ; preds = %_ZN10CFieldInfoC2ERKS_.exit.i, %_ZN11CStringBaseIwED2Ev.exit
%28 = landingpad { ptr, i32 }
cleanup
br label %delete.notnull.i.i67
delete.notnull.i.i67: ; preds = %ehcleanup, %lpad.i, %lpad24
%fieldInfo.sroa.571.3 = phi ptr [ %call.i.i.i56, %ehcleanup ], [ %11, %lpad.i ], [ %11, %lpad24 ]
%eh.lpad-body.pn = phi { ptr, i32 } [ %.pn, %ehcleanup ], [ %18, %lpad.i ], [ %28, %lpad24 ]
call void @_ZdaPv(ptr noundef nonnull %fieldInfo.sroa.571.3) #15
br label %ehcleanup30
ehcleanup30: ; preds = %lpad15, %delete.notnull.i.i67, %lpad
%eh.lpad-body.pn.pn.pn = phi { ptr, i32 } [ %4, %lpad ], [ %eh.lpad-body.pn, %delete.notnull.i.i67 ], [ %24, %lpad15 ]
call void @llvm.lifetime.end.p0(i64 2, ptr nonnull %vt) #16
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %propID) #16
%29 = load ptr, ptr %name, align 8, !tbaa !35
invoke void @SysFreeString(ptr noundef %29)
to label %_ZN10CMyComBSTRD2Ev.exit70 unwind label %terminate.lpad.i69
terminate.lpad.i69: ; preds = %ehcleanup30
%30 = landingpad { ptr, i32 }
catch ptr null
%31 = extractvalue { ptr, i32 } %30, 0
call void @__clang_call_terminate(ptr %31) #17
unreachable
_ZN10CMyComBSTRD2Ev.exit70: ; preds = %ehcleanup30
call void @llvm.lifetime.end.p0(i64 8, ptr nonnull %name) #16
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %numProps) #16
resume { ptr, i32 } %eh.lpad-body.pn.pn.pn
cleanup42: ; preds = %for.cond, %_ZN10CMyComBSTRD2Ev.exit, %for.cond.preheader, %entry
%retval.4 = phi i32 [ %call, %entry ], [ 0, %for.cond.preheader ], [ %call8, %_ZN10CMyComBSTRD2Ev.exit ], [ 0, %for.cond ]
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %numProps) #16
ret i32 %retval.4
}
; Function Attrs: uwtable
define internal fastcc void @_ZL11GetPropNamejPw(ptr noalias nocapture writeonly align 8 %agg.result, i32 noundef %propID, ptr noundef readonly %name) unnamed_addr #0 {
entry:
%s = alloca [16 x i32], align 16
%_capacity.i = getelementptr inbounds %class.CStringBase, ptr %agg.result, i64 0, i32 2
%_length.i = getelementptr inbounds %class.CStringBase, ptr %agg.result, i64 0, i32 1
switch i32 %propID, label %for.inc.54 [
i32 3, label %if.then
i32 4, label %if.then.fold.split
i32 6, label %if.then.fold.split64
i32 7, label %if.then.fold.split65
i32 8, label %if.then.fold.split66
i32 9, label %if.then.fold.split67
i32 10, label %if.then.fold.split68
i32 11, label %if.then.fold.split69
i32 12, label %if.then.fold.split70
i32 13, label %if.then.fold.split71
i32 14, label %if.then.fold.split72
i32 15, label %if.then.fold.split73
i32 16, label %if.then.fold.split74
i32 17, label %if.then.fold.split75
i32 18, label %if.then.fold.split76
i32 19, label %if.then.fold.split77
i32 20, label %if.then.fold.split78
i32 21, label %if.then.fold.split79
i32 22, label %if.then.fold.split80
i32 23, label %if.then.fold.split81
i32 24, label %if.then.fold.split82
i32 25, label %if.then.fold.split83
i32 26, label %if.then.fold.split84
i32 27, label %if.then.fold.split85
i32 28, label %if.then.fold.split86
i32 29, label %if.then.fold.split87
i32 30, label %if.then.fold.split88
i32 31, label %if.then.fold.split89
i32 32, label %if.then.fold.split90
i32 33, label %if.then.fold.split91
i32 34, label %if.then.fold.split92
i32 35, label %if.then.fold.split93
i32 36, label %if.then.fold.split94
i32 37, label %if.then.fold.split95
i32 38, label %if.then.fold.split96
i32 39, label %if.then.fold.split97
i32 41, label %if.then.fold.split98
i32 42, label %if.then.fold.split99
i32 43, label %if.then.fold.split100
i32 44, label %if.then.fold.split101
i32 45, label %if.then.fold.split102
i32 46, label %if.then.fold.split103
i32 47, label %if.then.fold.split104
i32 48, label %if.then.fold.split105
i32 49, label %if.then.fold.split106
i32 50, label %if.then.fold.split107
i32 51, label %if.then.fold.split108
i32 52, label %if.then.fold.split109
i32 53, label %if.then.fold.split110
i32 54, label %if.then.fold.split111
i32 55, label %if.then.fold.split112
i32 4352, label %if.then.fold.split113
i32 4353, label %if.then.fold.split114
i32 4354, label %if.then.fold.split115
i32 4355, label %if.then.fold.split116
]
if.then.fold.split: ; preds = %entry
br label %if.then
if.then.fold.split64: ; preds = %entry
br label %if.then
if.then.fold.split65: ; preds = %entry
br label %if.then
if.then.fold.split66: ; preds = %entry
br label %if.then
if.then.fold.split67: ; preds = %entry
br label %if.then
if.then.fold.split68: ; preds = %entry
br label %if.then
if.then.fold.split69: ; preds = %entry
br label %if.then
if.then.fold.split70: ; preds = %entry
br label %if.then
if.then.fold.split71: ; preds = %entry
br label %if.then
if.then.fold.split72: ; preds = %entry
br label %if.then
if.then.fold.split73: ; preds = %entry
br label %if.then
if.then.fold.split74: ; preds = %entry
br label %if.then
if.then.fold.split75: ; preds = %entry
br label %if.then
if.then.fold.split76: ; preds = %entry
br label %if.then
if.then.fold.split77: ; preds = %entry
br label %if.then
if.then.fold.split78: ; preds = %entry
br label %if.then
if.then.fold.split79: ; preds = %entry
br label %if.then
if.then.fold.split80: ; preds = %entry
br label %if.then
if.then.fold.split81: ; preds = %entry
br label %if.then
if.then.fold.split82: ; preds = %entry
br label %if.then
if.then.fold.split83: ; preds = %entry
br label %if.then
if.then.fold.split84: ; preds = %entry
br label %if.then
if.then.fold.split85: ; preds = %entry
br label %if.then
if.then.fold.split86: ; preds = %entry
br label %if.then
if.then.fold.split87: ; preds = %entry
br label %if.then
if.then.fold.split88: ; preds = %entry
br label %if.then
if.then.fold.split89: ; preds = %entry
br label %if.then
if.then.fold.split90: ; preds = %entry
br label %if.then
if.then.fold.split91: ; preds = %entry
br label %if.then
if.then.fold.split92: ; preds = %entry
br label %if.then
if.then.fold.split93: ; preds = %entry
br label %if.then
if.then.fold.split94: ; preds = %entry
br label %if.then
if.then.fold.split95: ; preds = %entry
br label %if.then
if.then.fold.split96: ; preds = %entry
br label %if.then
if.then.fold.split97: ; preds = %entry
br label %if.then
if.then.fold.split98: ; preds = %entry
br label %if.then
if.then.fold.split99: ; preds = %entry
br label %if.then
if.then.fold.split100: ; preds = %entry
br label %if.then
if.then.fold.split101: ; preds = %entry
br label %if.then
if.then.fold.split102: ; preds = %entry
br label %if.then
if.then.fold.split103: ; preds = %entry
br label %if.then
if.then.fold.split104: ; preds = %entry
br label %if.then
if.then.fold.split105: ; preds = %entry
br label %if.then
if.then.fold.split106: ; preds = %entry
br label %if.then
if.then.fold.split107: ; preds = %entry
br label %if.then
if.then.fold.split108: ; preds = %entry
br label %if.then
if.then.fold.split109: ; preds = %entry
br label %if.then
if.then.fold.split110: ; preds = %entry
br label %if.then
if.then.fold.split111: ; preds = %entry
br label %if.then
if.then.fold.split112: ; preds = %entry
br label %if.then
if.then.fold.split113: ; preds = %entry
br label %if.then
if.then.fold.split114: ; preds = %entry
br label %if.then
if.then.fold.split115: ; preds = %entry
br label %if.then
if.then.fold.split116: ; preds = %entry
br label %if.then
if.then: ; preds = %entry, %if.then.fold.split116, %if.then.fold.split115, %if.then.fold.split114, %if.then.fold.split113, %if.then.fold.split112, %if.then.fold.split111, %if.then.fold.split110, %if.then.fold.split109, %if.then.fold.split108, %if.then.fold.split107, %if.then.fold.split106, %if.then.fold.split105, %if.then.fold.split104, %if.then.fold.split103, %if.then.fold.split102, %if.then.fold.split101, %if.then.fold.split100, %if.then.fold.split99, %if.then.fold.split98, %if.then.fold.split97, %if.then.fold.split96, %if.then.fold.split95, %if.then.fold.split94, %if.then.fold.split93, %if.then.fold.split92, %if.then.fold.split91, %if.then.fold.split90, %if.then.fold.split89, %if.then.fold.split88, %if.then.fold.split87, %if.then.fold.split86, %if.then.fold.split85, %if.then.fold.split84, %if.then.fold.split83, %if.then.fold.split82, %if.then.fold.split81, %if.then.fold.split80, %if.then.fold.split79, %if.then.fold.split78, %if.then.fold.split77, %if.then.fold.split76, %if.then.fold.split75, %if.then.fold.split74, %if.then.fold.split73, %if.then.fold.split72, %if.then.fold.split71, %if.then.fold.split70, %if.then.fold.split69, %if.then.fold.split68, %if.then.fold.split67, %if.then.fold.split66, %if.then.fold.split65, %if.then.fold.split64, %if.then.fold.split
%indvars.iv.lcssa = phi i64 [ 0, %entry ], [ 1, %if.then.fold.split ], [ 2, %if.then.fold.split64 ], [ 3, %if.then.fold.split65 ], [ 4, %if.then.fold.split66 ], [ 5, %if.then.fold.split67 ], [ 6, %if.then.fold.split68 ], [ 7, %if.then.fold.split69 ], [ 8, %if.then.fold.split70 ], [ 9, %if.then.fold.split71 ], [ 10, %if.then.fold.split72 ], [ 11, %if.then.fold.split73 ], [ 12, %if.then.fold.split74 ], [ 13, %if.then.fold.split75 ], [ 14, %if.then.fold.split76 ], [ 15, %if.then.fold.split77 ], [ 16, %if.then.fold.split78 ], [ 17, %if.then.fold.split79 ], [ 18, %if.then.fold.split80 ], [ 19, %if.then.fold.split81 ], [ 20, %if.then.fold.split82 ], [ 21, %if.then.fold.split83 ], [ 22, %if.then.fold.split84 ], [ 23, %if.then.fold.split85 ], [ 24, %if.then.fold.split86 ], [ 25, %if.then.fold.split87 ], [ 26, %if.then.fold.split88 ], [ 27, %if.then.fold.split89 ], [ 28, %if.then.fold.split90 ], [ 29, %if.then.fold.split91 ], [ 30, %if.then.fold.split92 ], [ 31, %if.then.fold.split93 ], [ 32, %if.then.fold.split94 ], [ 33, %if.then.fold.split95 ], [ 34, %if.then.fold.split96 ], [ 35, %if.then.fold.split97 ], [ 36, %if.then.fold.split98 ], [ 37, %if.then.fold.split99 ], [ 38, %if.then.fold.split100 ], [ 39, %if.then.fold.split101 ], [ 40, %if.then.fold.split102 ], [ 41, %if.then.fold.split103 ], [ 42, %if.then.fold.split104 ], [ 43, %if.then.fold.split105 ], [ 44, %if.then.fold.split106 ], [ 45, %if.then.fold.split107 ], [ 46, %if.then.fold.split108 ], [ 47, %if.then.fold.split109 ], [ 48, %if.then.fold.split110 ], [ 49, %if.then.fold.split111 ], [ 50, %if.then.fold.split112 ], [ 51, %if.then.fold.split113 ], [ 52, %if.then.fold.split114 ], [ 53, %if.then.fold.split115 ], [ 54, %if.then.fold.split116 ]
%Name = getelementptr inbounds [55 x %struct.CPropIdToName], ptr @_ZL13kPropIdToName, i64 0, i64 %indvars.iv.lcssa, i32 1
%0 = load ptr, ptr %Name, align 8, !tbaa !37
tail call void @llvm.memset.p0.i64(ptr noundef nonnull align 8 dereferenceable(16) %agg.result, i8 0, i64 16, i1 false)
br label %for.cond.i.i
for.cond.i.i: ; preds = %for.cond.i.i, %if.then
%indvars.iv.i.i = phi i64 [ %indvars.iv.next.i.i, %for.cond.i.i ], [ 0, %if.then ]
%arrayidx.i.i = getelementptr inbounds i32, ptr %0, i64 %indvars.iv.i.i
%1 = load i32, ptr %arrayidx.i.i, align 4, !tbaa !13
%cmp.not.i.i = icmp eq i32 %1, 0
%indvars.iv.next.i.i = add nuw i64 %indvars.iv.i.i, 1
br i1 %cmp.not.i.i, label %_Z11MyStringLenIwEiPKT_.exit.i, label %for.cond.i.i, !llvm.loop !15
_Z11MyStringLenIwEiPKT_.exit.i: ; preds = %for.cond.i.i
%2 = trunc i64 %indvars.iv.i.i to i32
%add.i.i = add nsw i32 %2, 1
%cmp.i.i = icmp ne i32 %add.i.i, 0
tail call void @llvm.assume(i1 %cmp.i.i)
%conv.i.i = zext i32 %add.i.i to i64
%3 = icmp slt i32 %2, -1
%4 = shl nuw nsw i64 %conv.i.i, 2
%5 = select i1 %3, i64 -1, i64 %4
%call.i.i = tail call noalias noundef nonnull ptr @_Znam(i64 noundef %5) #14
store ptr %call.i.i, ptr %agg.result, align 8, !tbaa !22
store i32 0, ptr %call.i.i, align 4, !tbaa !13
store i32 %add.i.i, ptr %_capacity.i, align 4, !tbaa !23
br label %while.cond.i.i
while.cond.i.i: ; preds = %_Z11MyStringLenIwEiPKT_.exit.i, %while.cond.i.i
%src.addr.0.i.i = phi ptr [ %incdec.ptr.i.i, %while.cond.i.i ], [ %0, %_Z11MyStringLenIwEiPKT_.exit.i ]
%dest.addr.0.i.i = phi ptr [ %incdec.ptr1.i.i, %while.cond.i.i ], [ %call.i.i, %_Z11MyStringLenIwEiPKT_.exit.i ]
%incdec.ptr.i.i = getelementptr inbounds i32, ptr %src.addr.0.i.i, i64 1
%6 = load i32, ptr %src.addr.0.i.i, align 4, !tbaa !13
%incdec.ptr1.i.i = getelementptr inbounds i32, ptr %dest.addr.0.i.i, i64 1
store i32 %6, ptr %dest.addr.0.i.i, align 4, !tbaa !13
%cmp.not.i10.i = icmp eq i32 %6, 0
br i1 %cmp.not.i10.i, label %return.loopexit, label %while.cond.i.i, !llvm.loop !17
for.inc.54: ; preds = %entry
%tobool.not = icmp eq ptr %name, null
br i1 %tobool.not, label %if.end5, label %if.then4
if.then4: ; preds = %for.inc.54
tail call void @llvm.memset.p0.i64(ptr noundef nonnull align 8 dereferenceable(16) %agg.result, i8 0, i64 16, i1 false)
br label %for.cond.i.i19
for.cond.i.i19: ; preds = %for.cond.i.i19, %if.then4
%indvars.iv.i.i15 = phi i64 [ %indvars.iv.next.i.i18, %for.cond.i.i19 ], [ 0, %if.then4 ]
%arrayidx.i.i16 = getelementptr inbounds i32, ptr %name, i64 %indvars.iv.i.i15
%7 = load i32, ptr %arrayidx.i.i16, align 4, !tbaa !13
%cmp.not.i.i17 = icmp eq i32 %7, 0
%indvars.iv.next.i.i18 = add nuw i64 %indvars.iv.i.i15, 1
br i1 %cmp.not.i.i17, label %_Z11MyStringLenIwEiPKT_.exit.i22, label %for.cond.i.i19, !llvm.loop !15
_Z11MyStringLenIwEiPKT_.exit.i22: ; preds = %for.cond.i.i19
%8 = trunc i64 %indvars.iv.i.i15 to i32
%add.i.i20 = add nsw i32 %8, 1
%cmp.i.i21 = icmp ne i32 %add.i.i20, 0
tail call void @llvm.assume(i1 %cmp.i.i21)
%conv.i.i23 = zext i32 %add.i.i20 to i64
%9 = icmp slt i32 %8, -1
%10 = shl nuw nsw i64 %conv.i.i23, 2
%11 = select i1 %9, i64 -1, i64 %10
%call.i.i24 = tail call noalias noundef nonnull ptr @_Znam(i64 noundef %11) #14
store ptr %call.i.i24, ptr %agg.result, align 8, !tbaa !22
store i32 0, ptr %call.i.i24, align 4, !tbaa !13
store i32 %add.i.i20, ptr %_capacity.i, align 4, !tbaa !23
br label %while.cond.i.i32
while.cond.i.i32: ; preds = %_Z11MyStringLenIwEiPKT_.exit.i22, %while.cond.i.i32
%src.addr.0.i.i27 = phi ptr [ %incdec.ptr.i.i29, %while.cond.i.i32 ], [ %name, %_Z11MyStringLenIwEiPKT_.exit.i22 ]
%dest.addr.0.i.i28 = phi ptr [ %incdec.ptr1.i.i30, %while.cond.i.i32 ], [ %call.i.i24, %_Z11MyStringLenIwEiPKT_.exit.i22 ]
%incdec.ptr.i.i29 = getelementptr inbounds i32, ptr %src.addr.0.i.i27, i64 1
%12 = load i32, ptr %src.addr.0.i.i27, align 4, !tbaa !13
%incdec.ptr1.i.i30 = getelementptr inbounds i32, ptr %dest.addr.0.i.i28, i64 1
store i32 %12, ptr %dest.addr.0.i.i28, align 4, !tbaa !13
%cmp.not.i10.i31 = icmp eq i32 %12, 0
br i1 %cmp.not.i10.i31, label %_ZN11CStringBaseIwEC2EPKw.exit34, label %while.cond.i.i32, !llvm.loop !17
_ZN11CStringBaseIwEC2EPKw.exit34: ; preds = %while.cond.i.i32
store i32 %8, ptr %_length.i, align 8, !tbaa !24
br label %return
if.end5: ; preds = %for.inc.54
call void @llvm.lifetime.start.p0(i64 64, ptr nonnull %s) #16
call void @_Z21ConvertUInt32ToStringjPw(i32 noundef %propID, ptr noundef nonnull %s)
call void @llvm.memset.p0.i64(ptr noundef nonnull align 8 dereferenceable(16) %agg.result, i8 0, i64 16, i1 false)
br label %for.cond.i.i40
for.cond.i.i40: ; preds = %for.cond.i.i40, %if.end5
%indvars.iv.i.i36 = phi i64 [ %indvars.iv.next.i.i39, %for.cond.i.i40 ], [ 0, %if.end5 ]
%arrayidx.i.i37 = getelementptr inbounds i32, ptr %s, i64 %indvars.iv.i.i36
%13 = load i32, ptr %arrayidx.i.i37, align 4, !tbaa !13
%cmp.not.i.i38 = icmp eq i32 %13, 0
%indvars.iv.next.i.i39 = add nuw i64 %indvars.iv.i.i36, 1
br i1 %cmp.not.i.i38, label %_Z11MyStringLenIwEiPKT_.exit.i43, label %for.cond.i.i40, !llvm.loop !15
_Z11MyStringLenIwEiPKT_.exit.i43: ; preds = %for.cond.i.i40
%14 = trunc i64 %indvars.iv.i.i36 to i32
%add.i.i41 = add nsw i32 %14, 1
%cmp.i.i42 = icmp ne i32 %add.i.i41, 0
call void @llvm.assume(i1 %cmp.i.i42)
%conv.i.i44 = zext i32 %add.i.i41 to i64
%15 = icmp slt i32 %14, -1
%16 = shl nuw nsw i64 %conv.i.i44, 2
%17 = select i1 %15, i64 -1, i64 %16
%call.i.i45 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #14
store ptr %call.i.i45, ptr %agg.result, align 8, !tbaa !22
store i32 0, ptr %call.i.i45, align 4, !tbaa !13
store i32 %add.i.i41, ptr %_capacity.i, align 4, !tbaa !23
br label %while.cond.i.i53
while.cond.i.i53: ; preds = %_Z11MyStringLenIwEiPKT_.exit.i43, %while.cond.i.i53
%src.addr.0.i.i48 = phi ptr [ %incdec.ptr.i.i50, %while.cond.i.i53 ], [ %s, %_Z11MyStringLenIwEiPKT_.exit.i43 ]
%dest.addr.0.i.i49 = phi ptr [ %incdec.ptr1.i.i51, %while.cond.i.i53 ], [ %call.i.i45, %_Z11MyStringLenIwEiPKT_.exit.i43 ]
%incdec.ptr.i.i50 = getelementptr inbounds i32, ptr %src.addr.0.i.i48, i64 1
%18 = load i32, ptr %src.addr.0.i.i48, align 4, !tbaa !13
%incdec.ptr1.i.i51 = getelementptr inbounds i32, ptr %dest.addr.0.i.i49, i64 1
store i32 %18, ptr %dest.addr.0.i.i49, align 4, !tbaa !13
%cmp.not.i10.i52 = icmp eq i32 %18, 0
br i1 %cmp.not.i10.i52, label %_ZN11CStringBaseIwEC2EPKw.exit55, label %while.cond.i.i53, !llvm.loop !17
_ZN11CStringBaseIwEC2EPKw.exit55: ; preds = %while.cond.i.i53
store i32 %14, ptr %_length.i, align 8, !tbaa !24
call void @llvm.lifetime.end.p0(i64 64, ptr nonnull %s) #16
br label %return
return.loopexit: ; preds = %while.cond.i.i
store i32 %2, ptr %_length.i, align 8, !tbaa !24
br label %return
return: ; preds = %return.loopexit, %_ZN11CStringBaseIwEC2EPKw.exit55, %_ZN11CStringBaseIwEC2EPKw.exit34
ret void
}
; Function Attrs: mustprogress uwtable
define dso_local void @_ZN13CFieldPrinter10PrintTitleEv(ptr nocapture noundef nonnull readonly align 8 dereferenceable(32) %this) local_unnamed_addr #2 align 2 {
entry:
%_size.i = getelementptr inbounds %class.CBaseRecordVector, ptr %this, i64 0, i32 2
%0 = load i32, ptr %_size.i, align 4, !tbaa !28
%cmp11 = icmp sgt i32 %0, 0
br i1 %cmp11, label %for.body.lr.ph, label %for.cond.cleanup
for.body.lr.ph: ; preds = %entry
%_items.i.i = getelementptr inbounds %class.CBaseRecordVector, ptr %this, i64 0, i32 3
br label %for.body
for.cond.cleanup: ; preds = %_ZL11PrintString11EAdjustmentiRK11CStringBaseIwE.exit, %entry
ret void
for.body: ; preds = %for.body.lr.ph, %_ZL11PrintString11EAdjustmentiRK11CStringBaseIwE.exit
%indvars.iv = phi i64 [ 0, %for.body.lr.ph ], [ %indvars.iv.next, %_ZL11PrintString11EAdjustmentiRK11CStringBaseIwE.exit ]
%1 = load ptr, ptr %_items.i.i, align 8, !tbaa !25
%arrayidx.i.i = getelementptr inbounds ptr, ptr %1, i64 %indvars.iv
%2 = load ptr, ptr %arrayidx.i.i, align 8, !tbaa !29
%PrefixSpacesWidth = getelementptr inbounds %struct.CFieldInfo, ptr %2, i64 0, i32 4
%3 = load i32, ptr %PrefixSpacesWidth, align 8, !tbaa !39
%cmp2.i = icmp sgt i32 %3, 0
br i1 %cmp2.i, label %for.body.i, label %_ZL11PrintSpacesi.exit
for.body.i: ; preds = %for.body, %for.body.i
%i.03.i = phi i32 [ %inc.i, %for.body.i ], [ 0, %for.body ]
%call.i = tail call noundef nonnull align 8 dereferenceable(16) ptr @_ZN13CStdOutStreamlsEc(ptr noundef nonnull align 8 dereferenceable(16) @g_StdOut, i8 noundef signext 32)
%inc.i = add nuw nsw i32 %i.03.i, 1
%exitcond.not.i = icmp eq i32 %inc.i, %3
br i1 %exitcond.not.i, label %_ZL11PrintSpacesi.exit, label %for.body.i, !llvm.loop !40
_ZL11PrintSpacesi.exit: ; preds = %for.body.i, %for.body
%TitleAdjustment = getelementptr inbounds %struct.CFieldInfo, ptr %2, i64 0, i32 2
%4 = load i32, ptr %TitleAdjustment, align 8, !tbaa !41
%5 = load i32, ptr %2, align 8, !tbaa !19
%cmp4 = icmp eq i32 %5, 3
br i1 %cmp4, label %cond.end, label %cond.false
cond.false: ; preds = %_ZL11PrintSpacesi.exit
%Width = getelementptr inbounds %struct.CFieldInfo, ptr %2, i64 0, i32 5
%6 = load i32, ptr %Width, align 4, !tbaa !42
br label %cond.end
cond.end: ; preds = %_ZL11PrintSpacesi.exit, %cond.false
%cond = phi i32 [ %6, %cond.false ], [ 0, %_ZL11PrintSpacesi.exit ]
%Name = getelementptr inbounds %struct.CFieldInfo, ptr %2, i64 0, i32 1
%_length.i.i = getelementptr inbounds %struct.CFieldInfo, ptr %2, i64 0, i32 1, i32 1
%7 = load i32, ptr %_length.i.i, align 8, !tbaa !24
%sub.i = sub nsw i32 %cond, %7
switch i32 %4, label %_ZL11PrintSpacesi.exit.i [
i32 2, label %sw.epilog.i
i32 1, label %sw.bb1.i
]
sw.bb1.i: ; preds = %cond.end
%div.i = sdiv i32 %sub.i, 2
br label %sw.epilog.i
sw.epilog.i: ; preds = %sw.bb1.i, %cond.end
%numLeftSpaces.0.i = phi i32 [ %div.i, %sw.bb1.i ], [ %sub.i, %cond.end ]