-
Notifications
You must be signed in to change notification settings - Fork 0
/
04E5AC8E3DC1ABB9.ll
2851 lines (2548 loc) · 152 KB
/
04E5AC8E3DC1ABB9.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/MiBench/consumer-typeset/z21.c'
source_filename = "/usr/local/google/home/aeubanks/repos/test-suite/MultiSource/Benchmarks/MiBench/consumer-typeset/z21.c"
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"
%struct.CONSTRAINT = type { i32, i32, i32, i32 }
%struct.word_type = type { [2 x %struct.LIST], %union.FIRST_UNION, %union.SECOND_UNION, %union.THIRD_UNION, [4 x i8] }
%struct.LIST = type { ptr, ptr }
%union.FIRST_UNION = type { %struct.FILE_POS }
%struct.FILE_POS = type { i8, i8, i16, i32 }
%union.SECOND_UNION = type { %struct.anon.1 }
%struct.anon.1 = type { i32 }
%union.THIRD_UNION = type { ptr, [8 x i8] }
%struct.closure_type = type { [2 x %struct.LIST], %union.FIRST_UNION, %union.SECOND_UNION, %union.THIRD_UNION, %union.FOURTH_UNION, ptr, %union.anon.12 }
%union.FOURTH_UNION = type { %struct.STYLE }
%struct.STYLE = type { %union.anon, %union.anon.10, i16, i16, i32 }
%union.anon = type { %struct.GAP }
%struct.GAP = type { i16, i16 }
%union.anon.10 = type { %struct.GAP }
%union.anon.12 = type { ptr }
%struct.symbol_type = type { [2 x %struct.LIST], %union.FIRST_UNION, %union.SECOND_UNION, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i16, i16, i8, i8, i8 }
%struct.head_type = type { [2 x %struct.LIST], %union.FIRST_UNION, %union.SECOND_UNION, %union.THIRD_UNION, %union.FOURTH_UNION, ptr, %union.anon.13, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i32 }
%union.anon.13 = type { ptr }
%struct.gapobj_type = type { [2 x %struct.LIST], %union.FIRST_UNION, %union.SECOND_UNION, %struct.GAP, i32, i16, i16, ptr, ptr }
@.str = private unnamed_addr constant [20 x i8] c"assert failed in %s\00", align 1
@no_fpos = external local_unnamed_addr global ptr, align 8
@.str.1 = private unnamed_addr constant [26 x i8] c"SizeGalley: precondition!\00", align 1
@.str.2 = private unnamed_addr constant [27 x i8] c"SizeGalley: already sized!\00", align 1
@zz_lengths = external local_unnamed_addr global [0 x i8], align 1
@zz_size = external local_unnamed_addr global i32, align 4
@zz_free = external local_unnamed_addr global [0 x ptr], align 8
@zz_hold = external local_unnamed_addr global ptr, align 8
@xx_link = external local_unnamed_addr global ptr, align 8
@zz_res = external local_unnamed_addr global ptr, align 8
@zz_tmp = external local_unnamed_addr global ptr, align 8
@AllowCrossDb = external local_unnamed_addr global i32, align 4
@.str.4 = private unnamed_addr constant [21 x i8] c"SizeGalley: threads!\00", align 1
@.str.5 = private unnamed_addr constant [41 x i8] c"galley %s must have just one column mark\00", align 1
@.str.6 = private unnamed_addr constant [42 x i8] c"%s,%s object too wide for available space\00", align 1
@.str.7 = private unnamed_addr constant [39 x i8] c"SizeGalley: BreakObject failed to fit!\00", align 1
@.str.8 = private unnamed_addr constant [27 x i8] c"TransferLinks: start_link!\00", align 1
@xx_tmp = external local_unnamed_addr global ptr, align 8
@.str.9 = private unnamed_addr constant [38 x i8] c"SizeGalley COL_THR: Up(y)!=LastUp(y)!\00", align 1
@.str.10 = private unnamed_addr constant [29 x i8] c"SizeGalley: missing COL_THR!\00", align 1
@.str.11 = private unnamed_addr constant [31 x i8] c"SizeGalley/SPLIT: hor != thor!\00", align 1
@.str.12 = private unnamed_addr constant [40 x i8] c"SizeGalley COL_THR: Up(y) != LastUp(y)!\00", align 1
@.str.13 = private unnamed_addr constant [30 x i8] c"SizeObject: type(z) != SCALE!\00", align 1
@.str.14 = private unnamed_addr constant [35 x i8] c"SizeObject: bc(constraint(z)) != 0\00", align 1
@.str.15 = private unnamed_addr constant [32 x i8] c"SizeObject SCALE: Down(z) == z!\00", align 1
@.str.16 = private unnamed_addr constant [54 x i8] c"%s with unspecified scale factor in horizontal galley\00", align 1
@.str.17 = private unnamed_addr constant [7 x i8] c"@Scale\00", align 1
@.str.18 = private unnamed_addr constant [61 x i8] c"replacing infinite scale factor (unconstrained width) by 1.0\00", align 1
@.str.19 = private unnamed_addr constant [59 x i8] c"replacing infinite scale factor (zero width object) by 1.0\00", align 1
@.str.20 = private unnamed_addr constant [52 x i8] c"replacing very large scale factor (over 100) by 1.0\00", align 1
@.str.21 = private unnamed_addr constant [38 x i8] c"object deleted (scale factor is zero)\00", align 1
@.str.22 = private unnamed_addr constant [51 x i8] c"object deleted (scale factor is smaller than 0.01)\00", align 1
@.str.23 = private unnamed_addr constant [1 x i8] zeroinitializer, align 1
@GalleySym = external local_unnamed_addr global ptr, align 8
@ForceGalleySym = external local_unnamed_addr global ptr, align 8
@InputSym = external local_unnamed_addr global ptr, align 8
@.str.24 = private unnamed_addr constant [36 x i8] c"%s replaced by %s (mark not shared)\00", align 1
@.str.25 = private unnamed_addr constant [42 x i8] c"%s replaced by %s (infinite scale factor)\00", align 1
@.str.26 = private unnamed_addr constant [38 x i8] c"%s replaced by %s (zero scale factor)\00", align 1
@.str.27 = private unnamed_addr constant [39 x i8] c"%s replaced by %s (insufficient space)\00", align 1
@.str.28 = private unnamed_addr constant [23 x i8] c"assert failed in %s %s\00", align 1
@.str.29 = private unnamed_addr constant [12 x i8] c"SizeGalley:\00", align 1
@.str.30 = private unnamed_addr constant [15 x i8] c"SizeG: extras!\00", align 1
@.str.31 = private unnamed_addr constant [45 x i8] c"unexpected absence of %s from the body of %s\00", align 1
; Function Attrs: nounwind uwtable
define dso_local void @SizeGalley(ptr noundef %hd, ptr noundef %env, i32 noundef %rows, i32 noundef %joined, i32 noundef %nonblock, i32 noundef %trig, ptr noundef %style, ptr noundef %c, ptr noundef %target, ptr nocapture noundef %dest_index, ptr nocapture noundef %recs, ptr nocapture noundef %inners, ptr noundef %enclose) local_unnamed_addr #0 {
entry:
%crs = alloca ptr, align 8
%why = alloca ptr, align 8
%extras = alloca ptr, align 8
%tmp1 = alloca ptr, align 8
%tmp2 = alloca ptr, align 8
%bt = alloca [2 x ptr], align 16
%ft = alloca [2 x ptr], align 16
%zc = alloca %struct.CONSTRAINT, align 4
%c2682 = alloca %struct.CONSTRAINT, align 4
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %crs) #4
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %why) #4
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %extras) #4
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %tmp1) #4
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %tmp2) #4
call void @llvm.lifetime.start.p0(i64 16, ptr nonnull %bt) #4
call void @llvm.lifetime.start.p0(i64 16, ptr nonnull %ft) #4
%ou1 = getelementptr inbounds %struct.word_type, ptr %hd, i64 0, i32 1
%0 = load i8, ptr %ou1, align 8, !tbaa !5
%cmp = icmp eq i8 %0, 8
br i1 %cmp, label %land.lhs.true, label %if.then
land.lhs.true: ; preds = %entry
%osucc = getelementptr inbounds %struct.LIST, ptr %hd, i64 0, i32 1
%1 = load ptr, ptr %osucc, align 8, !tbaa !5
%cmp2.not = icmp eq ptr %1, %hd
br i1 %cmp2.not, label %if.then, label %if.end
if.then: ; preds = %land.lhs.true, %entry
%2 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call = tail call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %2, ptr noundef nonnull @.str.1) #4
br label %if.end
if.end: ; preds = %if.then, %land.lhs.true
%osized = getelementptr inbounds i8, ptr %hd, i64 42
%bf.load = load i16, ptr %osized, align 2
%3 = and i16 %bf.load, 2
%tobool.not = icmp eq i16 %3, 0
br i1 %tobool.not, label %if.end6, label %if.then4
if.then4: ; preds = %if.end
%4 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call5 = tail call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %4, ptr noundef nonnull @.str.2) #4
br label %if.end6
if.end6: ; preds = %if.then4, %if.end
%osucc9 = getelementptr inbounds %struct.LIST, ptr %hd, i64 0, i32 1
%5 = load ptr, ptr %osucc9, align 8, !tbaa !5
br label %for.cond
for.cond: ; preds = %for.cond, %if.end6
%.pn = phi ptr [ %5, %if.end6 ], [ %y.0, %for.cond ]
%y.0.in = getelementptr inbounds [2 x %struct.LIST], ptr %.pn, i64 0, i64 1
%y.0 = load ptr, ptr %y.0.in, align 8, !tbaa !5
%ou112 = getelementptr inbounds %struct.word_type, ptr %y.0, i64 0, i32 1
%6 = load i8, ptr %ou112, align 8, !tbaa !5
%cmp15 = icmp eq i8 %6, 0
br i1 %cmp15, label %for.cond, label %for.end, !llvm.loop !10
for.end: ; preds = %for.cond
%ou112.le = getelementptr inbounds %struct.word_type, ptr %y.0, i64 0, i32 1
store ptr %target, ptr %tmp1, align 8, !tbaa !8
store ptr %enclose, ptr %tmp2, align 8, !tbaa !8
store ptr null, ptr %crs, align 8, !tbaa !8
%arrayidx20 = getelementptr inbounds [2 x ptr], ptr %ft, i64 0, i64 1
store ptr null, ptr %arrayidx20, align 8, !tbaa !8
%arrayidx21 = getelementptr inbounds [2 x ptr], ptr %bt, i64 0, i64 1
store ptr null, ptr %arrayidx21, align 8, !tbaa !8
store ptr null, ptr %ft, align 16, !tbaa !8
store ptr null, ptr %bt, align 16, !tbaa !8
%7 = load i8, ptr getelementptr inbounds ([0 x i8], ptr @zz_lengths, i64 0, i64 17), align 1, !tbaa !5
%conv24 = zext i8 %7 to i32
store i32 %conv24, ptr @zz_size, align 4, !tbaa !12
%conv25 = zext i8 %7 to i64
%arrayidx30 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %conv25
%8 = load ptr, ptr %arrayidx30, align 8, !tbaa !8
%cmp31 = icmp eq ptr %8, null
br i1 %cmp31, label %if.then33, label %if.else35
if.then33: ; preds = %for.end
%9 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call34 = tail call ptr @GetMemory(i32 noundef %conv24, ptr noundef %9) #4
store ptr %call34, ptr @zz_hold, align 8, !tbaa !8
br label %if.end44
if.else35: ; preds = %for.end
store ptr %8, ptr @zz_hold, align 8, !tbaa !8
%10 = load ptr, ptr %8, align 8, !tbaa !5
%idxprom41 = zext i8 %7 to i64
%arrayidx42 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %idxprom41
store ptr %10, ptr %arrayidx42, align 8, !tbaa !8
br label %if.end44
if.end44: ; preds = %if.then33, %if.else35
%11 = phi ptr [ %call34, %if.then33 ], [ %8, %if.else35 ]
%ou145 = getelementptr inbounds %struct.word_type, ptr %11, i64 0, i32 1
store i8 17, ptr %ou145, align 8, !tbaa !5
%arrayidx48 = getelementptr inbounds [2 x %struct.LIST], ptr %11, i64 0, i64 1
%osucc49 = getelementptr inbounds [2 x %struct.LIST], ptr %11, i64 0, i64 1, i32 1
store ptr %11, ptr %osucc49, align 8, !tbaa !5
store ptr %11, ptr %arrayidx48, align 8, !tbaa !5
%osucc55 = getelementptr inbounds %struct.LIST, ptr %11, i64 0, i32 1
store ptr %11, ptr %osucc55, align 8, !tbaa !5
store ptr %11, ptr %11, align 8, !tbaa !5
%12 = load i8, ptr @zz_lengths, align 1, !tbaa !5
%conv59 = zext i8 %12 to i32
store i32 %conv59, ptr @zz_size, align 4, !tbaa !12
%conv60 = zext i8 %12 to i64
%arrayidx67 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %conv60
%13 = load ptr, ptr %arrayidx67, align 8, !tbaa !8
%cmp68 = icmp eq ptr %13, null
br i1 %cmp68, label %if.then70, label %if.else72
if.then70: ; preds = %if.end44
%14 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call71 = tail call ptr @GetMemory(i32 noundef %conv59, ptr noundef %14) #4
br label %cond.end123
if.else72: ; preds = %if.end44
store ptr %13, ptr @zz_hold, align 8, !tbaa !8
%15 = load ptr, ptr %13, align 8, !tbaa !5
%idxprom78 = zext i8 %12 to i64
%arrayidx79 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %idxprom78
store ptr %15, ptr %arrayidx79, align 8, !tbaa !8
br label %cond.end123
cond.end123: ; preds = %if.then70, %if.else72
%16 = phi ptr [ %call71, %if.then70 ], [ %13, %if.else72 ]
%ou182 = getelementptr inbounds %struct.word_type, ptr %16, i64 0, i32 1
store i8 0, ptr %ou182, align 8, !tbaa !5
%arrayidx85 = getelementptr inbounds [2 x %struct.LIST], ptr %16, i64 0, i64 1
%osucc86 = getelementptr inbounds [2 x %struct.LIST], ptr %16, i64 0, i64 1, i32 1
store ptr %16, ptr %osucc86, align 8, !tbaa !5
store ptr %16, ptr %arrayidx85, align 8, !tbaa !5
%osucc92 = getelementptr inbounds %struct.LIST, ptr %16, i64 0, i32 1
store ptr %16, ptr %osucc92, align 8, !tbaa !5
store ptr %16, ptr %16, align 8, !tbaa !5
store ptr %16, ptr @xx_link, align 8, !tbaa !8
store ptr %16, ptr @zz_res, align 8, !tbaa !8
store ptr %11, ptr @zz_hold, align 8, !tbaa !8
%17 = load ptr, ptr %11, align 8, !tbaa !5
store ptr %17, ptr @zz_tmp, align 8, !tbaa !8
%18 = load ptr, ptr %16, align 8, !tbaa !5
store ptr %18, ptr %11, align 8, !tbaa !5
%19 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%20 = load ptr, ptr @zz_res, align 8, !tbaa !8
%21 = load ptr, ptr %20, align 8, !tbaa !5
%osucc116 = getelementptr inbounds %struct.LIST, ptr %21, i64 0, i32 1
store ptr %19, ptr %osucc116, align 8, !tbaa !5
%22 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
store ptr %22, ptr %20, align 8, !tbaa !5
%23 = load ptr, ptr @zz_res, align 8, !tbaa !8
%24 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
%osucc122 = getelementptr inbounds %struct.LIST, ptr %24, i64 0, i32 1
store ptr %23, ptr %osucc122, align 8, !tbaa !5
%25 = load ptr, ptr @xx_link, align 8, !tbaa !8
store ptr %25, ptr @zz_res, align 8, !tbaa !8
store ptr %env, ptr @zz_hold, align 8, !tbaa !8
%cmp125 = icmp eq ptr %env, null
%cmp129 = icmp eq ptr %25, null
%or.cond3607 = select i1 %cmp125, i1 true, i1 %cmp129
br i1 %or.cond3607, label %cond.end156, label %cond.false132
cond.false132: ; preds = %cond.end123
%arrayidx134 = getelementptr inbounds [2 x %struct.LIST], ptr %env, i64 0, i64 1
%26 = load ptr, ptr %arrayidx134, align 8, !tbaa !5
store ptr %26, ptr @zz_tmp, align 8, !tbaa !8
%arrayidx137 = getelementptr inbounds [2 x %struct.LIST], ptr %25, i64 0, i64 1
%27 = load ptr, ptr %arrayidx137, align 8, !tbaa !5
store ptr %27, ptr %arrayidx134, align 8, !tbaa !5
%28 = load ptr, ptr %arrayidx137, align 8, !tbaa !5
%osucc147 = getelementptr inbounds [2 x %struct.LIST], ptr %28, i64 0, i64 1, i32 1
store ptr %env, ptr %osucc147, align 8, !tbaa !5
store ptr %26, ptr %arrayidx137, align 8, !tbaa !5
%osucc153 = getelementptr inbounds [2 x %struct.LIST], ptr %26, i64 0, i64 1, i32 1
store ptr %25, ptr %osucc153, align 8, !tbaa !5
br label %cond.end156
cond.end156: ; preds = %cond.end123, %cond.false132
%29 = load i32, ptr @AllowCrossDb, align 4, !tbaa !12
%tobool158.not = icmp eq i32 %29, 0
br i1 %tobool158.not, label %if.end175, label %land.lhs.true159
land.lhs.true159: ; preds = %cond.end156
%30 = load i8, ptr %ou112.le, align 8, !tbaa !5
%cmp163 = icmp eq i8 %30, 2
br i1 %cmp163, label %land.lhs.true165, label %if.end175
land.lhs.true165: ; preds = %land.lhs.true159
%oactual = getelementptr inbounds %struct.closure_type, ptr %y.0, i64 0, i32 5
%31 = load ptr, ptr %oactual, align 8, !tbaa !5
%ohas_optimize = getelementptr inbounds %struct.symbol_type, ptr %31, i64 0, i32 16
%bf.load166 = load i8, ptr %ohas_optimize, align 2
%32 = and i8 %bf.load166, 2
%tobool170.not = icmp eq i8 %32, 0
br i1 %tobool170.not, label %if.end175, label %land.lhs.true171
land.lhs.true171: ; preds = %land.lhs.true165
%call172 = tail call i32 @FindOptimize(ptr noundef nonnull %y.0, ptr noundef %env) #4
%tobool173.not = icmp eq i32 %call172, 0
br i1 %tobool173.not, label %if.end175, label %if.then174
if.then174: ; preds = %land.lhs.true171
tail call void @SetOptimize(ptr noundef %hd, ptr noundef %style) #4
br label %if.end175
if.end175: ; preds = %if.then174, %land.lhs.true171, %land.lhs.true165, %land.lhs.true159, %cond.end156
%tobool176.not = icmp eq i32 %joined, 0
br i1 %tobool176.not, label %if.else350, label %if.then177
if.then177: ; preds = %if.end175
%33 = load i8, ptr getelementptr inbounds ([0 x i8], ptr @zz_lengths, i64 0, i64 139), align 1, !tbaa !5
%conv178 = zext i8 %33 to i32
store i32 %conv178, ptr @zz_size, align 4, !tbaa !12
%conv179 = zext i8 %33 to i64
%arrayidx186 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %conv179
%34 = load ptr, ptr %arrayidx186, align 8, !tbaa !8
%cmp187 = icmp eq ptr %34, null
br i1 %cmp187, label %if.then189, label %if.else191
if.then189: ; preds = %if.then177
%35 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call190 = tail call ptr @GetMemory(i32 noundef %conv178, ptr noundef %35) #4
store ptr %call190, ptr @zz_hold, align 8, !tbaa !8
br label %if.end200
if.else191: ; preds = %if.then177
store ptr %34, ptr @zz_hold, align 8, !tbaa !8
%36 = load ptr, ptr %34, align 8, !tbaa !5
store ptr %36, ptr %arrayidx186, align 8, !tbaa !8
br label %if.end200
if.end200: ; preds = %if.then189, %if.else191
%37 = phi ptr [ %call190, %if.then189 ], [ %34, %if.else191 ]
%ou1201 = getelementptr inbounds %struct.word_type, ptr %37, i64 0, i32 1
store i8 -117, ptr %ou1201, align 8, !tbaa !5
%arrayidx204 = getelementptr inbounds [2 x %struct.LIST], ptr %37, i64 0, i64 1
%osucc205 = getelementptr inbounds [2 x %struct.LIST], ptr %37, i64 0, i64 1, i32 1
store ptr %37, ptr %osucc205, align 8, !tbaa !5
store ptr %37, ptr %arrayidx204, align 8, !tbaa !5
%osucc211 = getelementptr inbounds %struct.LIST, ptr %37, i64 0, i32 1
store ptr %37, ptr %osucc211, align 8, !tbaa !5
store ptr %37, ptr %37, align 8, !tbaa !5
store ptr %37, ptr %bt, align 16, !tbaa !8
%38 = load i8, ptr getelementptr inbounds ([0 x i8], ptr @zz_lengths, i64 0, i64 139), align 1, !tbaa !5
%conv216 = zext i8 %38 to i32
store i32 %conv216, ptr @zz_size, align 4, !tbaa !12
%conv217 = zext i8 %38 to i64
%arrayidx224 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %conv217
%39 = load ptr, ptr %arrayidx224, align 8, !tbaa !8
%cmp225 = icmp eq ptr %39, null
br i1 %cmp225, label %if.then227, label %if.else229
if.then227: ; preds = %if.end200
%40 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call228 = tail call ptr @GetMemory(i32 noundef %conv216, ptr noundef %40) #4
store ptr %call228, ptr @zz_hold, align 8, !tbaa !8
br label %if.end238
if.else229: ; preds = %if.end200
store ptr %39, ptr @zz_hold, align 8, !tbaa !8
%41 = load ptr, ptr %39, align 8, !tbaa !5
store ptr %41, ptr %arrayidx224, align 8, !tbaa !8
br label %if.end238
if.end238: ; preds = %if.then227, %if.else229
%42 = phi ptr [ %call228, %if.then227 ], [ %39, %if.else229 ]
%ou1239 = getelementptr inbounds %struct.word_type, ptr %42, i64 0, i32 1
store i8 -117, ptr %ou1239, align 8, !tbaa !5
%arrayidx242 = getelementptr inbounds [2 x %struct.LIST], ptr %42, i64 0, i64 1
%osucc243 = getelementptr inbounds [2 x %struct.LIST], ptr %42, i64 0, i64 1, i32 1
store ptr %42, ptr %osucc243, align 8, !tbaa !5
store ptr %42, ptr %arrayidx242, align 8, !tbaa !5
%osucc249 = getelementptr inbounds %struct.LIST, ptr %42, i64 0, i32 1
store ptr %42, ptr %osucc249, align 8, !tbaa !5
store ptr %42, ptr %42, align 8, !tbaa !5
store ptr %42, ptr %ft, align 16, !tbaa !8
%bf.load256 = load i16, ptr %osized, align 2
%bf.lshr257 = lshr i16 %bf.load256, 7
%bf.clear258 = and i16 %bf.lshr257, 1
%bf.cast259 = zext i16 %bf.clear258 to i32
%call260 = call ptr @Manifest(ptr noundef nonnull %y.0, ptr noundef %env, ptr noundef %style, ptr noundef nonnull %bt, ptr noundef nonnull %ft, ptr noundef nonnull %tmp1, ptr noundef nonnull %crs, i32 noundef 1, i32 noundef %bf.cast259, ptr noundef nonnull %tmp2, i32 noundef 0) #4
%43 = load ptr, ptr %bt, align 16, !tbaa !8
%osucc264 = getelementptr inbounds %struct.LIST, ptr %43, i64 0, i32 1
%44 = load ptr, ptr %osucc264, align 8, !tbaa !5
%cmp266.not = icmp eq ptr %44, %43
br i1 %cmp266.not, label %if.then276, label %land.lhs.true268
land.lhs.true268: ; preds = %if.end238
%45 = load ptr, ptr %ft, align 16, !tbaa !8
%osucc272 = getelementptr inbounds %struct.LIST, ptr %45, i64 0, i32 1
%46 = load ptr, ptr %osucc272, align 8, !tbaa !5
%cmp274.not = icmp eq ptr %46, %45
br i1 %cmp274.not, label %if.then276, label %if.end278
if.then276: ; preds = %land.lhs.true268, %if.end238
%47 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call277 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %47, ptr noundef nonnull @.str.4) #4
%.pre = load ptr, ptr %bt, align 16, !tbaa !8
%osucc282.phi.trans.insert = getelementptr inbounds %struct.LIST, ptr %.pre, i64 0, i32 1
%.pre3709 = load ptr, ptr %osucc282.phi.trans.insert, align 8, !tbaa !5
br label %if.end278
if.end278: ; preds = %if.then276, %land.lhs.true268
%48 = phi ptr [ %.pre3709, %if.then276 ], [ %44, %land.lhs.true268 ]
%49 = phi ptr [ %.pre, %if.then276 ], [ %43, %land.lhs.true268 ]
br label %for.cond286
for.cond286: ; preds = %for.cond286, %if.end278
%.pn3590 = phi ptr [ %48, %if.end278 ], [ %storemerge, %for.cond286 ]
%storemerge.in = getelementptr inbounds [2 x %struct.LIST], ptr %.pn3590, i64 0, i64 1
%storemerge = load ptr, ptr %storemerge.in, align 8, !tbaa !5
%ou1287 = getelementptr inbounds %struct.word_type, ptr %storemerge, i64 0, i32 1
%50 = load i8, ptr %ou1287, align 8, !tbaa !5
%cmp290 = icmp eq i8 %50, 0
br i1 %cmp290, label %for.cond286, label %for.end297, !llvm.loop !14
for.end297: ; preds = %for.cond286
store ptr %storemerge, ptr %tmp1, align 8, !tbaa !8
%51 = load ptr, ptr %ft, align 16, !tbaa !8
%osucc301 = getelementptr inbounds %struct.LIST, ptr %51, i64 0, i32 1
%52 = load ptr, ptr %osucc301, align 8, !tbaa !5
br label %for.cond305
for.cond305: ; preds = %for.cond305, %for.end297
%.pn3592 = phi ptr [ %52, %for.end297 ], [ %storemerge3591, %for.cond305 ]
%storemerge3591.in = getelementptr inbounds [2 x %struct.LIST], ptr %.pn3592, i64 0, i64 1
%storemerge3591 = load ptr, ptr %storemerge3591.in, align 8, !tbaa !5
%ou1306 = getelementptr inbounds %struct.word_type, ptr %storemerge3591, i64 0, i32 1
%53 = load i8, ptr %ou1306, align 8, !tbaa !5
%cmp309 = icmp eq i8 %53, 0
br i1 %cmp309, label %for.cond305, label %for.end316, !llvm.loop !15
for.end316: ; preds = %for.cond305
store ptr %storemerge3591, ptr %tmp2, align 8, !tbaa !8
%54 = load ptr, ptr %49, align 8, !tbaa !5
%cmp325.not = icmp eq ptr %48, %54
br i1 %cmp325.not, label %lor.lhs.false, label %if.then340
lor.lhs.false: ; preds = %for.end316
%55 = load ptr, ptr %51, align 8, !tbaa !5
%cmp335.not = icmp eq ptr %52, %55
%cmp338.not = icmp eq ptr %storemerge, %storemerge3591
%or.cond3593 = and i1 %cmp338.not, %cmp335.not
br i1 %or.cond3593, label %if.end345, label %if.then340
if.then340: ; preds = %lor.lhs.false, %for.end316
%ou1341 = getelementptr inbounds %struct.word_type, ptr %call260, i64 0, i32 1
%oactual342 = getelementptr inbounds %struct.closure_type, ptr %hd, i64 0, i32 5
%56 = load ptr, ptr %oactual342, align 8, !tbaa !5
%call343 = call ptr @SymName(ptr noundef %56) #4
%call344 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 21, i32 noundef 1, ptr noundef nonnull @.str.5, i32 noundef 1, ptr noundef nonnull %ou1341, ptr noundef %call343) #4
%.pre3710 = load ptr, ptr %bt, align 16, !tbaa !8
br label %if.end345
if.end345: ; preds = %lor.lhs.false, %if.then340
%57 = phi ptr [ %49, %lor.lhs.false ], [ %.pre3710, %if.then340 ]
%call347 = call i32 @DisposeObject(ptr noundef %57) #4
%58 = load ptr, ptr %ft, align 16, !tbaa !8
%call349 = call i32 @DisposeObject(ptr noundef %58) #4
br label %if.end360
if.else350: ; preds = %if.end175
%bf.load355 = load i16, ptr %osized, align 2
%bf.lshr356 = lshr i16 %bf.load355, 7
%bf.clear357 = and i16 %bf.lshr356, 1
%bf.cast358 = zext i16 %bf.clear357 to i32
%call359 = call ptr @Manifest(ptr noundef nonnull %y.0, ptr noundef %env, ptr noundef %style, ptr noundef nonnull %bt, ptr noundef nonnull %ft, ptr noundef nonnull %tmp1, ptr noundef nonnull %crs, i32 noundef 1, i32 noundef %bf.cast358, ptr noundef nonnull %tmp2, i32 noundef 0) #4
br label %if.end360
if.end360: ; preds = %if.else350, %if.end345
%y.1 = phi ptr [ %call260, %if.end345 ], [ %call359, %if.else350 ]
%call361 = call i32 @DisposeObject(ptr noundef nonnull %11) #4
%59 = load i8, ptr getelementptr inbounds ([0 x i8], ptr @zz_lengths, i64 0, i64 17), align 1, !tbaa !5
%conv362 = zext i8 %59 to i32
store i32 %conv362, ptr @zz_size, align 4, !tbaa !12
%conv363 = zext i8 %59 to i64
%arrayidx370 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %conv363
%60 = load ptr, ptr %arrayidx370, align 8, !tbaa !8
%cmp371 = icmp eq ptr %60, null
br i1 %cmp371, label %if.then373, label %if.else375
if.then373: ; preds = %if.end360
%61 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call374 = call ptr @GetMemory(i32 noundef %conv362, ptr noundef %61) #4
store ptr %call374, ptr @zz_hold, align 8, !tbaa !8
br label %if.end384
if.else375: ; preds = %if.end360
store ptr %60, ptr @zz_hold, align 8, !tbaa !8
%62 = load ptr, ptr %60, align 8, !tbaa !5
store ptr %62, ptr %arrayidx370, align 8, !tbaa !8
br label %if.end384
if.end384: ; preds = %if.then373, %if.else375
%63 = phi ptr [ %call374, %if.then373 ], [ %60, %if.else375 ]
%ou1385 = getelementptr inbounds %struct.word_type, ptr %63, i64 0, i32 1
store i8 17, ptr %ou1385, align 8, !tbaa !5
%arrayidx388 = getelementptr inbounds [2 x %struct.LIST], ptr %63, i64 0, i64 1
%osucc389 = getelementptr inbounds [2 x %struct.LIST], ptr %63, i64 0, i64 1, i32 1
store ptr %63, ptr %osucc389, align 8, !tbaa !5
store ptr %63, ptr %arrayidx388, align 8, !tbaa !5
%osucc395 = getelementptr inbounds %struct.LIST, ptr %63, i64 0, i32 1
store ptr %63, ptr %osucc395, align 8, !tbaa !5
store ptr %63, ptr %63, align 8, !tbaa !5
store ptr %63, ptr %extras, align 8, !tbaa !8
%call399 = call ptr @MinSize(ptr noundef %y.1, i32 noundef 0, ptr noundef nonnull %extras) #4
%bf.load401 = load i16, ptr %osized, align 2
%64 = and i16 %bf.load401, 256
%cmp405.not = icmp eq i16 %64, 0
br i1 %cmp405.not, label %if.else485, label %if.then407
if.then407: ; preds = %if.end384
%65 = load i32, ptr %c, align 4, !tbaa !16
%ou4 = getelementptr inbounds %struct.closure_type, ptr %hd, i64 0, i32 4
store i32 %65, ptr %ou4, align 8, !tbaa !5
%obfc = getelementptr inbounds %struct.CONSTRAINT, ptr %c, i64 0, i32 1
%66 = load i32, ptr %obfc, align 4, !tbaa !18
%obfc410 = getelementptr inbounds %struct.closure_type, ptr %hd, i64 0, i32 4, i32 0, i32 1
store i32 %66, ptr %obfc410, align 4, !tbaa !5
%ofc = getelementptr inbounds %struct.CONSTRAINT, ptr %c, i64 0, i32 2
%67 = load i32, ptr %ofc, align 4, !tbaa !19
%ofc412 = getelementptr inbounds %struct.closure_type, ptr %hd, i64 0, i32 4, i32 0, i32 2
store i32 %67, ptr %ofc412, align 8, !tbaa !5
%call413 = call ptr @BreakObject(ptr noundef %call399, ptr noundef nonnull %c) #4
%ou3 = getelementptr inbounds %struct.word_type, ptr %call413, i64 0, i32 3
%68 = load i32, ptr %ou3, align 8, !tbaa !5
%69 = load i32, ptr %c, align 4, !tbaa !16
%cmp416.not = icmp sgt i32 %68, %69
br i1 %cmp416.not, label %if.then434, label %land.lhs.true418
land.lhs.true418: ; preds = %if.then407
%ofwd = getelementptr inbounds %struct.word_type, ptr %call413, i64 0, i32 3, i32 1
%70 = load i32, ptr %ofwd, align 8, !tbaa !5
%add = add nsw i32 %70, %68
%71 = load i32, ptr %obfc, align 4, !tbaa !18
%cmp425.not = icmp sgt i32 %add, %71
br i1 %cmp425.not, label %if.then434, label %land.lhs.true427
land.lhs.true427: ; preds = %land.lhs.true418
%72 = load i32, ptr %ofc, align 4, !tbaa !19
%cmp432.not = icmp sgt i32 %70, %72
br i1 %cmp432.not, label %if.then434, label %if.end445
if.then434: ; preds = %land.lhs.true427, %land.lhs.true418, %if.then407
%ou1435 = getelementptr inbounds %struct.word_type, ptr %call413, i64 0, i32 1
%call439 = call ptr @EchoLength(i32 noundef %68) #4
%ofwd441 = getelementptr inbounds %struct.word_type, ptr %call413, i64 0, i32 3, i32 1
%73 = load i32, ptr %ofwd441, align 8, !tbaa !5
%call443 = call ptr @EchoLength(i32 noundef %73) #4
%call444 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 21, i32 noundef 13, ptr noundef nonnull @.str.6, i32 noundef 1, ptr noundef nonnull %ou1435, ptr noundef %call439, ptr noundef %call443) #4
%.pre3711 = load i32, ptr %ou3, align 8, !tbaa !5
br label %if.end445
if.end445: ; preds = %if.then434, %land.lhs.true427
%74 = phi i32 [ %.pre3711, %if.then434 ], [ %68, %land.lhs.true427 ]
%ou3449 = getelementptr inbounds %struct.word_type, ptr %hd, i64 0, i32 3
store i32 %74, ptr %ou3449, align 8, !tbaa !5
%ofwd453 = getelementptr inbounds %struct.word_type, ptr %call413, i64 0, i32 3, i32 1
%75 = load i32, ptr %ofwd453, align 8, !tbaa !5
%ofwd456 = getelementptr inbounds %struct.word_type, ptr %hd, i64 0, i32 3, i32 1
store i32 %75, ptr %ofwd456, align 8, !tbaa !5
%76 = load i32, ptr %c, align 4, !tbaa !16
%cmp462.not = icmp sgt i32 %74, %76
br i1 %cmp462.not, label %if.then482, label %land.lhs.true464
land.lhs.true464: ; preds = %if.end445
%add471 = add nsw i32 %75, %74
%77 = load i32, ptr %obfc, align 4, !tbaa !18
%cmp473.not = icmp sgt i32 %add471, %77
br i1 %cmp473.not, label %if.then482, label %land.lhs.true475
land.lhs.true475: ; preds = %land.lhs.true464
%78 = load i32, ptr %ofc, align 4, !tbaa !19
%cmp480.not = icmp sgt i32 %75, %78
br i1 %cmp480.not, label %if.then482, label %if.end504
if.then482: ; preds = %land.lhs.true475, %land.lhs.true464, %if.end445
%79 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call483 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %79, ptr noundef nonnull @.str.7) #4
br label %if.end504
if.else485: ; preds = %if.end384
%oopt_components = getelementptr inbounds %struct.head_type, ptr %hd, i64 0, i32 8
%80 = load ptr, ptr %oopt_components, align 8, !tbaa !5
%cmp486.not = icmp eq ptr %80, null
%81 = and i16 %bf.load401, 512
%tobool494.not = icmp eq i16 %81, 0
%or.cond3594 = or i1 %tobool494.not, %cmp486.not
br i1 %or.cond3594, label %if.end504, label %land.lhs.true495
land.lhs.true495: ; preds = %if.else485
%ou1496 = getelementptr inbounds %struct.word_type, ptr %call399, i64 0, i32 1
%82 = load i8, ptr %ou1496, align 8, !tbaa !5
%cmp499 = icmp eq i8 %82, 17
br i1 %cmp499, label %if.then501, label %if.end504
if.then501: ; preds = %land.lhs.true495
%call502 = call ptr @Hyphenate(ptr noundef nonnull %call399) #4
br label %if.end504
if.end504: ; preds = %if.else485, %land.lhs.true495, %if.then501, %land.lhs.true475, %if.then482
%bf.load506 = load i16, ptr %osized, align 2
%bf.clear507 = and i16 %bf.load506, -33
store i16 %bf.clear507, ptr %osized, align 2
%tobool508.not = icmp eq i32 %rows, 0
br i1 %tobool508.not, label %if.end1902, label %for.cond510.preheader
for.cond510.preheader: ; preds = %if.end504
%83 = load ptr, ptr %osucc9, align 8, !tbaa !5
%cmp514.not3659 = icmp eq ptr %83, %hd
br i1 %cmp514.not3659, label %if.end1902, label %for.cond523.preheader
for.cond523.preheader: ; preds = %for.cond510.preheader, %for.inc1897
%84 = phi ptr [ %308, %for.inc1897 ], [ %83, %for.cond510.preheader ]
%osucc5133661 = phi ptr [ %osucc513, %for.inc1897 ], [ %osucc9, %for.cond510.preheader ]
%link.03660 = phi ptr [ %307, %for.inc1897 ], [ %hd, %for.cond510.preheader ]
br label %for.cond523
for.cond523: ; preds = %for.cond523.preheader, %for.cond523
%.pn3587 = phi ptr [ %y.2, %for.cond523 ], [ %84, %for.cond523.preheader ]
%y.2.in = getelementptr inbounds [2 x %struct.LIST], ptr %.pn3587, i64 0, i64 1
%y.2 = load ptr, ptr %y.2.in, align 8, !tbaa !5
%ou1524 = getelementptr inbounds %struct.word_type, ptr %y.2, i64 0, i32 1
%85 = load i8, ptr %ou1524, align 8, !tbaa !5
switch i8 %85, label %for.inc1897 [
i8 0, label %for.cond523
i8 1, label %sw.bb
i8 19, label %sw.bb550
i8 17, label %sw.bb748
i8 9, label %sw.bb950
i8 2, label %sw.bb1876
i8 8, label %sw.bb1876
]
sw.bb: ; preds = %for.cond523
%ogap = getelementptr inbounds %struct.gapobj_type, ptr %y.2, i64 0, i32 3
%bf.load538 = load i16, ptr %ogap, align 4
%86 = and i16 %bf.load538, 512
%tobool542.not = icmp eq i16 %86, 0
br i1 %tobool542.not, label %if.then543, label %for.inc1897
if.then543: ; preds = %sw.bb
%bf.load546 = load i16, ptr %osized, align 2
%bf.set548 = or i16 %bf.load546, 32
store i16 %bf.set548, ptr %osized, align 2
br label %for.inc1897
sw.bb550: ; preds = %for.cond523
%bf.load553 = load i16, ptr %osized, align 2
%87 = and i16 %bf.load553, 256
%cmp557.not = icmp eq i16 %87, 0
br i1 %cmp557.not, label %for.inc1897, label %if.then559
if.then559: ; preds = %sw.bb550
%osucc562 = getelementptr inbounds %struct.LIST, ptr %y.2, i64 0, i32 1
%88 = load ptr, ptr %osucc562, align 8, !tbaa !5
%osucc565 = getelementptr inbounds [2 x %struct.LIST], ptr %y.2, i64 0, i64 1, i32 1
%89 = load ptr, ptr %osucc565, align 8, !tbaa !5
%cmp566.not = icmp eq ptr %88, %y.2
br i1 %cmp566.not, label %if.end643, label %if.then568
if.then568: ; preds = %if.then559
%ou1569 = getelementptr inbounds %struct.word_type, ptr %88, i64 0, i32 1
%90 = load i8, ptr %ou1569, align 8, !tbaa !5
%cmp572 = icmp eq i8 %90, 0
br i1 %cmp572, label %if.end576, label %if.then574
if.then574: ; preds = %if.then568
%91 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call575 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %91, ptr noundef nonnull @.str.8) #4
br label %if.end576
if.end576: ; preds = %if.then574, %if.then568
store ptr %88, ptr @zz_res, align 8, !tbaa !8
store ptr %y.2, ptr @zz_hold, align 8, !tbaa !8
%92 = load ptr, ptr %y.2, align 8, !tbaa !5
store ptr %92, ptr @zz_tmp, align 8, !tbaa !8
%93 = load ptr, ptr %88, align 8, !tbaa !5
store ptr %93, ptr %y.2, align 8, !tbaa !5
%94 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%95 = load ptr, ptr @zz_res, align 8, !tbaa !8
%96 = load ptr, ptr %95, align 8, !tbaa !5
%osucc599 = getelementptr inbounds %struct.LIST, ptr %96, i64 0, i32 1
store ptr %94, ptr %osucc599, align 8, !tbaa !5
%97 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
store ptr %97, ptr %95, align 8, !tbaa !5
%98 = load ptr, ptr @zz_res, align 8, !tbaa !8
%99 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
%osucc605 = getelementptr inbounds %struct.LIST, ptr %99, i64 0, i32 1
store ptr %98, ptr %osucc605, align 8, !tbaa !5
store ptr %88, ptr @zz_res, align 8, !tbaa !8
store ptr %89, ptr @zz_hold, align 8, !tbaa !8
%cmp610 = icmp eq ptr %89, null
br i1 %cmp610, label %if.end643, label %cond.false617
cond.false617: ; preds = %if.end576
%100 = load ptr, ptr %89, align 8, !tbaa !5
store ptr %100, ptr @zz_tmp, align 8, !tbaa !8
%101 = load ptr, ptr %88, align 8, !tbaa !5
store ptr %101, ptr %89, align 8, !tbaa !5
%102 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%103 = load ptr, ptr @zz_res, align 8, !tbaa !8
%104 = load ptr, ptr %103, align 8, !tbaa !5
%osucc632 = getelementptr inbounds %struct.LIST, ptr %104, i64 0, i32 1
store ptr %102, ptr %osucc632, align 8, !tbaa !5
%105 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
store ptr %105, ptr %103, align 8, !tbaa !5
%106 = load ptr, ptr @zz_res, align 8, !tbaa !8
%107 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
%osucc638 = getelementptr inbounds %struct.LIST, ptr %107, i64 0, i32 1
store ptr %106, ptr %osucc638, align 8, !tbaa !5
br label %if.end643
if.end643: ; preds = %if.end576, %cond.false617, %if.then559
%108 = load ptr, ptr %osucc565, align 8, !tbaa !5
store ptr %108, ptr @xx_link, align 8, !tbaa !8
%osucc649 = getelementptr inbounds [2 x %struct.LIST], ptr %108, i64 0, i64 1, i32 1
%109 = load ptr, ptr %osucc649, align 8, !tbaa !5
%cmp650 = icmp eq ptr %109, %108
br i1 %cmp650, label %cond.end675, label %cond.false653
cond.false653: ; preds = %if.end643
%arrayidx648 = getelementptr inbounds [2 x %struct.LIST], ptr %108, i64 0, i64 1
store ptr %109, ptr @zz_res, align 8, !tbaa !8
%110 = load ptr, ptr %arrayidx648, align 8, !tbaa !5
%arrayidx661 = getelementptr inbounds [2 x %struct.LIST], ptr %109, i64 0, i64 1
store ptr %110, ptr %arrayidx661, align 8, !tbaa !5
%111 = load ptr, ptr %arrayidx648, align 8, !tbaa !5
%osucc668 = getelementptr inbounds [2 x %struct.LIST], ptr %111, i64 0, i64 1, i32 1
store ptr %109, ptr %osucc668, align 8, !tbaa !5
store ptr %108, ptr %osucc649, align 8, !tbaa !5
store ptr %108, ptr %arrayidx648, align 8, !tbaa !5
br label %cond.end675
cond.end675: ; preds = %if.end643, %cond.false653
%cond676 = phi ptr [ %109, %cond.false653 ], [ null, %if.end643 ]
store ptr %cond676, ptr @xx_tmp, align 8, !tbaa !8
store ptr %108, ptr @zz_hold, align 8, !tbaa !8
%osucc679 = getelementptr inbounds %struct.LIST, ptr %108, i64 0, i32 1
%112 = load ptr, ptr %osucc679, align 8, !tbaa !5
%cmp680 = icmp eq ptr %112, %108
br i1 %cmp680, label %cond.end705, label %cond.false683
cond.false683: ; preds = %cond.end675
store ptr %112, ptr @zz_res, align 8, !tbaa !8
%113 = load ptr, ptr %108, align 8, !tbaa !5
store ptr %113, ptr %112, align 8, !tbaa !5
%114 = load ptr, ptr @zz_res, align 8, !tbaa !8
%115 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%116 = load ptr, ptr %115, align 8, !tbaa !5
%osucc698 = getelementptr inbounds %struct.LIST, ptr %116, i64 0, i32 1
store ptr %114, ptr %osucc698, align 8, !tbaa !5
%osucc701 = getelementptr inbounds %struct.LIST, ptr %115, i64 0, i32 1
store ptr %115, ptr %osucc701, align 8, !tbaa !5
store ptr %115, ptr %115, align 8, !tbaa !5
%.pre3720 = load ptr, ptr @xx_link, align 8, !tbaa !8
br label %cond.end705
cond.end705: ; preds = %cond.end675, %cond.false683
%117 = phi ptr [ %108, %cond.end675 ], [ %.pre3720, %cond.false683 ]
store ptr %117, ptr @zz_hold, align 8, !tbaa !8
%ou1707 = getelementptr inbounds %struct.word_type, ptr %117, i64 0, i32 1
%118 = load i8, ptr %ou1707, align 8, !tbaa !5
%.off = add i8 %118, -11
%switch = icmp ult i8 %.off, 2
%orec_size = getelementptr inbounds %struct.word_type, ptr %117, i64 0, i32 1, i32 0, i32 1
%idxprom724 = zext i8 %118 to i64
%arrayidx725 = getelementptr inbounds [0 x i8], ptr @zz_lengths, i64 0, i64 %idxprom724
%cond728.in.in = select i1 %switch, ptr %orec_size, ptr %arrayidx725
%cond728.in = load i8, ptr %cond728.in.in, align 1, !tbaa !5
%cond728 = zext i8 %cond728.in to i32
store i32 %cond728, ptr @zz_size, align 4, !tbaa !12
%idxprom729 = zext i8 %cond728.in to i64
%arrayidx730 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %idxprom729
%119 = load ptr, ptr %arrayidx730, align 8, !tbaa !8
store ptr %119, ptr %117, align 8, !tbaa !5
%120 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%121 = load i32, ptr @zz_size, align 4, !tbaa !12
%idxprom734 = sext i32 %121 to i64
%arrayidx735 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %idxprom734
store ptr %120, ptr %arrayidx735, align 8, !tbaa !8
%122 = load ptr, ptr @xx_tmp, align 8, !tbaa !8
%osucc738 = getelementptr inbounds [2 x %struct.LIST], ptr %122, i64 0, i64 1, i32 1
%123 = load ptr, ptr %osucc738, align 8, !tbaa !5
%cmp739 = icmp eq ptr %123, %122
br i1 %cmp739, label %if.then741, label %if.end743
if.then741: ; preds = %cond.end705
%call742 = call i32 @DisposeObject(ptr noundef nonnull %122) #4
br label %if.end743
if.end743: ; preds = %if.then741, %cond.end705
%124 = load ptr, ptr %link.03660, align 8, !tbaa !5
br label %for.inc1897
sw.bb748: ; preds = %for.cond523
%bf.load751 = load i16, ptr %osized, align 2
%125 = and i16 %bf.load751, 256
%cmp755 = icmp eq i16 %125, 0
br i1 %cmp755, label %if.then757, label %for.inc1897
if.then757: ; preds = %sw.bb748
%osucc761 = getelementptr inbounds %struct.LIST, ptr %y.2, i64 0, i32 1
%126 = load ptr, ptr %osucc761, align 8, !tbaa !5
%osucc766 = getelementptr inbounds [2 x %struct.LIST], ptr %y.2, i64 0, i64 1, i32 1
%127 = load ptr, ptr %osucc766, align 8, !tbaa !5
%cmp767.not = icmp eq ptr %126, %y.2
br i1 %cmp767.not, label %if.end844, label %if.then769
if.then769: ; preds = %if.then757
%ou1770 = getelementptr inbounds %struct.word_type, ptr %126, i64 0, i32 1
%128 = load i8, ptr %ou1770, align 8, !tbaa !5
%cmp773 = icmp eq i8 %128, 0
br i1 %cmp773, label %if.end777, label %if.then775
if.then775: ; preds = %if.then769
%129 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call776 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %129, ptr noundef nonnull @.str.8) #4
br label %if.end777
if.end777: ; preds = %if.then775, %if.then769
store ptr %126, ptr @zz_res, align 8, !tbaa !8
store ptr %y.2, ptr @zz_hold, align 8, !tbaa !8
%130 = load ptr, ptr %y.2, align 8, !tbaa !5
store ptr %130, ptr @zz_tmp, align 8, !tbaa !8
%131 = load ptr, ptr %126, align 8, !tbaa !5
store ptr %131, ptr %y.2, align 8, !tbaa !5
%132 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%133 = load ptr, ptr @zz_res, align 8, !tbaa !8
%134 = load ptr, ptr %133, align 8, !tbaa !5
%osucc800 = getelementptr inbounds %struct.LIST, ptr %134, i64 0, i32 1
store ptr %132, ptr %osucc800, align 8, !tbaa !5
%135 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
store ptr %135, ptr %133, align 8, !tbaa !5
%136 = load ptr, ptr @zz_res, align 8, !tbaa !8
%137 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
%osucc806 = getelementptr inbounds %struct.LIST, ptr %137, i64 0, i32 1
store ptr %136, ptr %osucc806, align 8, !tbaa !5
store ptr %126, ptr @zz_res, align 8, !tbaa !8
store ptr %127, ptr @zz_hold, align 8, !tbaa !8
%cmp811 = icmp eq ptr %127, null
br i1 %cmp811, label %if.end844, label %cond.false818
cond.false818: ; preds = %if.end777
%138 = load ptr, ptr %127, align 8, !tbaa !5
store ptr %138, ptr @zz_tmp, align 8, !tbaa !8
%139 = load ptr, ptr %126, align 8, !tbaa !5
store ptr %139, ptr %127, align 8, !tbaa !5
%140 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%141 = load ptr, ptr @zz_res, align 8, !tbaa !8
%142 = load ptr, ptr %141, align 8, !tbaa !5
%osucc833 = getelementptr inbounds %struct.LIST, ptr %142, i64 0, i32 1
store ptr %140, ptr %osucc833, align 8, !tbaa !5
%143 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
store ptr %143, ptr %141, align 8, !tbaa !5
%144 = load ptr, ptr @zz_res, align 8, !tbaa !8
%145 = load ptr, ptr @zz_tmp, align 8, !tbaa !8
%osucc839 = getelementptr inbounds %struct.LIST, ptr %145, i64 0, i32 1
store ptr %144, ptr %osucc839, align 8, !tbaa !5
br label %if.end844
if.end844: ; preds = %if.end777, %cond.false818, %if.then757
%146 = load ptr, ptr %osucc766, align 8, !tbaa !5
store ptr %146, ptr @xx_link, align 8, !tbaa !8
%osucc850 = getelementptr inbounds [2 x %struct.LIST], ptr %146, i64 0, i64 1, i32 1
%147 = load ptr, ptr %osucc850, align 8, !tbaa !5
%cmp851 = icmp eq ptr %147, %146
br i1 %cmp851, label %cond.end876, label %cond.false854
cond.false854: ; preds = %if.end844
%arrayidx849 = getelementptr inbounds [2 x %struct.LIST], ptr %146, i64 0, i64 1
store ptr %147, ptr @zz_res, align 8, !tbaa !8
%148 = load ptr, ptr %arrayidx849, align 8, !tbaa !5
%arrayidx862 = getelementptr inbounds [2 x %struct.LIST], ptr %147, i64 0, i64 1
store ptr %148, ptr %arrayidx862, align 8, !tbaa !5
%149 = load ptr, ptr %arrayidx849, align 8, !tbaa !5
%osucc869 = getelementptr inbounds [2 x %struct.LIST], ptr %149, i64 0, i64 1, i32 1
store ptr %147, ptr %osucc869, align 8, !tbaa !5
store ptr %146, ptr %osucc850, align 8, !tbaa !5
store ptr %146, ptr %arrayidx849, align 8, !tbaa !5
br label %cond.end876
cond.end876: ; preds = %if.end844, %cond.false854
%cond877 = phi ptr [ %147, %cond.false854 ], [ null, %if.end844 ]
store ptr %cond877, ptr @xx_tmp, align 8, !tbaa !8
store ptr %146, ptr @zz_hold, align 8, !tbaa !8
%osucc880 = getelementptr inbounds %struct.LIST, ptr %146, i64 0, i32 1
%150 = load ptr, ptr %osucc880, align 8, !tbaa !5
%cmp881 = icmp eq ptr %150, %146
br i1 %cmp881, label %cond.end906, label %cond.false884
cond.false884: ; preds = %cond.end876
store ptr %150, ptr @zz_res, align 8, !tbaa !8
%151 = load ptr, ptr %146, align 8, !tbaa !5
store ptr %151, ptr %150, align 8, !tbaa !5
%152 = load ptr, ptr @zz_res, align 8, !tbaa !8
%153 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%154 = load ptr, ptr %153, align 8, !tbaa !5
%osucc899 = getelementptr inbounds %struct.LIST, ptr %154, i64 0, i32 1
store ptr %152, ptr %osucc899, align 8, !tbaa !5
%osucc902 = getelementptr inbounds %struct.LIST, ptr %153, i64 0, i32 1
store ptr %153, ptr %osucc902, align 8, !tbaa !5
store ptr %153, ptr %153, align 8, !tbaa !5
%.pre3719 = load ptr, ptr @xx_link, align 8, !tbaa !8
br label %cond.end906
cond.end906: ; preds = %cond.end876, %cond.false884
%155 = phi ptr [ %146, %cond.end876 ], [ %.pre3719, %cond.false884 ]
store ptr %155, ptr @zz_hold, align 8, !tbaa !8
%ou1908 = getelementptr inbounds %struct.word_type, ptr %155, i64 0, i32 1
%156 = load i8, ptr %ou1908, align 8, !tbaa !5
%.off3612 = add i8 %156, -11
%switch3613 = icmp ult i8 %.off3612, 2
%orec_size921 = getelementptr inbounds %struct.word_type, ptr %155, i64 0, i32 1, i32 0, i32 1
%idxprom926 = zext i8 %156 to i64
%arrayidx927 = getelementptr inbounds [0 x i8], ptr @zz_lengths, i64 0, i64 %idxprom926
%cond930.in.in = select i1 %switch3613, ptr %orec_size921, ptr %arrayidx927
%cond930.in = load i8, ptr %cond930.in.in, align 1, !tbaa !5
%cond930 = zext i8 %cond930.in to i32
store i32 %cond930, ptr @zz_size, align 4, !tbaa !12
%idxprom931 = zext i8 %cond930.in to i64
%arrayidx932 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %idxprom931
%157 = load ptr, ptr %arrayidx932, align 8, !tbaa !8
store ptr %157, ptr %155, align 8, !tbaa !5
%158 = load ptr, ptr @zz_hold, align 8, !tbaa !8
%159 = load i32, ptr @zz_size, align 4, !tbaa !12
%idxprom936 = sext i32 %159 to i64
%arrayidx937 = getelementptr inbounds [0 x ptr], ptr @zz_free, i64 0, i64 %idxprom936
store ptr %158, ptr %arrayidx937, align 8, !tbaa !8
%160 = load ptr, ptr @xx_tmp, align 8, !tbaa !8
%osucc940 = getelementptr inbounds [2 x %struct.LIST], ptr %160, i64 0, i64 1, i32 1
%161 = load ptr, ptr %osucc940, align 8, !tbaa !5
%cmp941 = icmp eq ptr %161, %160
br i1 %cmp941, label %if.then943, label %if.end945
if.then943: ; preds = %cond.end906
%call944 = call i32 @DisposeObject(ptr noundef nonnull %160) #4
br label %if.end945
if.end945: ; preds = %if.then943, %cond.end906
%162 = load ptr, ptr %link.03660, align 8, !tbaa !5
br label %for.inc1897
sw.bb950: ; preds = %for.cond523
%arrayidx952 = getelementptr inbounds [2 x %struct.LIST], ptr %y.2, i64 0, i64 1
%osucc953 = getelementptr inbounds [2 x %struct.LIST], ptr %y.2, i64 0, i64 1, i32 1
%163 = load ptr, ptr %osucc953, align 8, !tbaa !5
%164 = load ptr, ptr %arrayidx952, align 8, !tbaa !5
%cmp957 = icmp eq ptr %163, %164
br i1 %cmp957, label %if.end961, label %if.then959
if.then959: ; preds = %sw.bb950
%165 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call960 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %165, ptr noundef nonnull @.str.9) #4
br label %if.end961
if.end961: ; preds = %if.then959, %sw.bb950
%166 = load ptr, ptr %y.2, align 8, !tbaa !5
br label %for.cond968
for.cond968: ; preds = %for.cond968, %if.end961
%.pn3588 = phi ptr [ %166, %if.end961 ], [ %z.0, %for.cond968 ]
%z.0.in = getelementptr inbounds [2 x %struct.LIST], ptr %.pn3588, i64 0, i64 1
%z.0 = load ptr, ptr %z.0.in, align 8, !tbaa !5
%ou1969 = getelementptr inbounds %struct.word_type, ptr %z.0, i64 0, i32 1
%167 = load i8, ptr %ou1969, align 8, !tbaa !5
switch i8 %167, label %land.lhs.true985 [
i8 0, label %for.cond968
i8 1, label %for.inc1897
]
land.lhs.true985: ; preds = %for.cond968
%cmp989 = icmp ult i8 %167, 9
br i1 %cmp989, label %if.then991, label %if.else996
if.then991: ; preds = %land.lhs.true985
%oexternal_ver = getelementptr inbounds i8, ptr %z.0, i64 42
%bf.load993 = load i16, ptr %oexternal_ver, align 2
%bf.set995 = or i16 %bf.load993, 16
store i16 %bf.set995, ptr %oexternal_ver, align 2
br label %for.inc1897
if.else996: ; preds = %land.lhs.true985
%cmp1000 = icmp eq i8 %167, 19
br i1 %cmp1000, label %if.then1002, label %for.inc1897
if.then1002: ; preds = %if.else996
%osucc1005 = getelementptr inbounds %struct.LIST, ptr %y.2, i64 0, i32 1
%168 = load ptr, ptr %osucc1005, align 8, !tbaa !5
br label %for.cond1009
for.cond1009: ; preds = %for.cond1009, %if.then1002
%.pn3589 = phi ptr [ %168, %if.then1002 ], [ %hor.0, %for.cond1009 ]
%hor.0.in = getelementptr inbounds [2 x %struct.LIST], ptr %.pn3589, i64 0, i64 1
%hor.0 = load ptr, ptr %hor.0.in, align 8, !tbaa !5
%ou11010 = getelementptr inbounds %struct.word_type, ptr %hor.0, i64 0, i32 1
%169 = load i8, ptr %ou11010, align 8, !tbaa !5
switch i8 %169, label %if.then1026 [
i8 0, label %for.cond1009
i8 16, label %if.end1028
]
if.then1026: ; preds = %for.cond1009
%170 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call1027 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %170, ptr noundef nonnull @.str.10) #4
br label %if.end1028
if.end1028: ; preds = %for.cond1009, %if.then1026
%osucc1031 = getelementptr inbounds [2 x %struct.LIST], ptr %z.0, i64 0, i64 1, i32 1
%171 = load ptr, ptr %osucc1031, align 8, !tbaa !5
br label %for.cond1035
for.cond1035: ; preds = %for.cond1035, %if.end1028
%thor.0.in = phi ptr [ %171, %if.end1028 ], [ %thor.0, %for.cond1035 ]
%thor.0 = load ptr, ptr %thor.0.in, align 8, !tbaa !5
%ou11036 = getelementptr inbounds %struct.word_type, ptr %thor.0, i64 0, i32 1
%172 = load i8, ptr %ou11036, align 8, !tbaa !5
%cmp1039 = icmp eq i8 %172, 0
br i1 %cmp1039, label %for.cond1035, label %for.end1046, !llvm.loop !20
for.end1046: ; preds = %for.cond1035
%cmp1047 = icmp eq ptr %hor.0, %thor.0
br i1 %cmp1047, label %if.end1051, label %if.then1049
if.then1049: ; preds = %for.end1046
%173 = load ptr, ptr @no_fpos, align 8, !tbaa !8
%call1050 = call ptr (i32, i32, ptr, i32, ptr, ...) @Error(i32 noundef 1, i32 noundef 2, ptr noundef nonnull @.str, i32 noundef 0, ptr noundef %173, ptr noundef nonnull @.str.11) #4