-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patharima.ir
14116 lines (12886 loc) · 595 KB
/
arima.ir
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 = '/Users/duncan/R-devel/build/../src/library/stats/src/arima.c'
source_filename = "/Users/duncan/R-devel/build/../src/library/stats/src/arima.c"
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.13.0"
%struct.SEXPREC = type opaque
@.str = private unnamed_addr constant [2 x i8] c"Z\00", align 1
@.str.1 = private unnamed_addr constant [2 x i8] c"a\00", align 1
@.str.2 = private unnamed_addr constant [2 x i8] c"P\00", align 1
@.str.3 = private unnamed_addr constant [2 x i8] c"T\00", align 1
@.str.4 = private unnamed_addr constant [2 x i8] c"V\00", align 1
@.str.5 = private unnamed_addr constant [2 x i8] c"h\00", align 1
@.str.6 = private unnamed_addr constant [3 x i8] c"Pn\00", align 1
@.str.7 = private unnamed_addr constant [6 x i8] c"stats\00", align 1
@.str.8 = private unnamed_addr constant [22 x i8] c"invalid argument type\00", align 1
@R_NilValue = external local_unnamed_addr global %struct.SEXPREC*, align 8
@.str.9 = private unnamed_addr constant [7 x i8] c"values\00", align 1
@.str.10 = private unnamed_addr constant [6 x i8] c"resid\00", align 1
@.str.11 = private unnamed_addr constant [7 x i8] c"states\00", align 1
@R_NamesSymbol = external local_unnamed_addr global %struct.SEXPREC*, align 8
@R_NaReal = external local_unnamed_addr global double, align 8
@.str.12 = private unnamed_addr constant [4 x i8] c"mod\00", align 1
@.str.13 = private unnamed_addr constant [7 x i8] c"smooth\00", align 1
@.str.14 = private unnamed_addr constant [4 x i8] c"var\00", align 1
@.str.15 = private unnamed_addr constant [5 x i8] c"pred\00", align 1
@.str.16 = private unnamed_addr constant [4 x i8] c"phi\00", align 1
@.str.17 = private unnamed_addr constant [6 x i8] c"theta\00", align 1
@.str.18 = private unnamed_addr constant [6 x i8] c"Delta\00", align 1
@.str.19 = private unnamed_addr constant [14 x i8] c"solve.default\00", align 1
@R_BaseEnv = external local_unnamed_addr global %struct.SEXPREC*, align 8
@.str.20 = private unnamed_addr constant [29 x i8] c"maximum supported lag is 350\00", align 1
@.str.21 = private unnamed_addr constant [38 x i8] c"can only transform 100 pars in arima0\00", align 1
; Function Attrs: nounwind ssp uwtable
define %struct.SEXPREC* @KalmanLike(%struct.SEXPREC*, %struct.SEXPREC*, %struct.SEXPREC*, %struct.SEXPREC*, %struct.SEXPREC*) local_unnamed_addr #0 {
%6 = tail call i32 @Rf_asLogical(%struct.SEXPREC* %3) #7
%7 = tail call %struct.SEXPREC* @Rf_duplicate(%struct.SEXPREC* %1) #7
%8 = tail call %struct.SEXPREC* @Rf_protect(%struct.SEXPREC* %7) #7
%9 = tail call %struct.SEXPREC* @getListElement(%struct.SEXPREC* %8, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) #7
%10 = tail call %struct.SEXPREC* @getListElement(%struct.SEXPREC* %8, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) #7
%11 = tail call %struct.SEXPREC* @getListElement(%struct.SEXPREC* %8, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) #7
%12 = tail call %struct.SEXPREC* @getListElement(%struct.SEXPREC* %8, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.3, i64 0, i64 0)) #7
%13 = tail call %struct.SEXPREC* @getListElement(%struct.SEXPREC* %8, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.4, i64 0, i64 0)) #7
%14 = tail call %struct.SEXPREC* @getListElement(%struct.SEXPREC* %8, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.5, i64 0, i64 0)) #7
%15 = tail call %struct.SEXPREC* @getListElement(%struct.SEXPREC* %8, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.6, i64 0, i64 0)) #7
%16 = tail call i32 @TYPEOF(%struct.SEXPREC* %0) #7
%17 = icmp eq i32 %16, 14
br i1 %17, label %18, label %36
; <label>:18: ; preds = %5
%19 = tail call i32 @TYPEOF(%struct.SEXPREC* %9) #7
%20 = icmp eq i32 %19, 14
br i1 %20, label %21, label %36
; <label>:21: ; preds = %18
%22 = tail call i32 @TYPEOF(%struct.SEXPREC* %10) #7
%23 = icmp eq i32 %22, 14
br i1 %23, label %24, label %36
; <label>:24: ; preds = %21
%25 = tail call i32 @TYPEOF(%struct.SEXPREC* %11) #7
%26 = icmp eq i32 %25, 14
br i1 %26, label %27, label %36
; <label>:27: ; preds = %24
%28 = tail call i32 @TYPEOF(%struct.SEXPREC* %15) #7
%29 = icmp eq i32 %28, 14
br i1 %29, label %30, label %36
; <label>:30: ; preds = %27
%31 = tail call i32 @TYPEOF(%struct.SEXPREC* %12) #7
%32 = icmp eq i32 %31, 14
br i1 %32, label %33, label %36
; <label>:33: ; preds = %30
%34 = tail call i32 @TYPEOF(%struct.SEXPREC* %13) #7
%35 = icmp eq i32 %34, 14
br i1 %35, label %38, label %36
; <label>:36: ; preds = %33, %30, %27, %24, %21, %18, %5
%37 = tail call i8* @libintl_dgettext(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str.7, i64 0, i64 0), i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str.8, i64 0, i64 0)) #7
tail call void (i8*, ...) @Rf_error(i8* %37) #8
unreachable
; <label>:38: ; preds = %33
%39 = tail call i32 @LENGTH(%struct.SEXPREC* %0) #7
%40 = tail call i32 @LENGTH(%struct.SEXPREC* %10) #7
%41 = tail call double* @REAL(%struct.SEXPREC* %0) #7
%42 = tail call double* @REAL(%struct.SEXPREC* %9) #7
%43 = tail call double* @REAL(%struct.SEXPREC* %12) #7
%44 = tail call double* @REAL(%struct.SEXPREC* %13) #7
%45 = tail call double* @REAL(%struct.SEXPREC* %11) #7
%46 = tail call double* @REAL(%struct.SEXPREC* %10) #7
%47 = bitcast double* %46 to i8*
%48 = tail call double* @REAL(%struct.SEXPREC* %15) #7
%49 = tail call double @Rf_asReal(%struct.SEXPREC* %14) #7
%50 = sext i32 %40 to i64
%51 = tail call i8* @R_alloc(i64 %50, i32 8) #7
%52 = bitcast i8* %51 to double*
%53 = tail call i8* @R_alloc(i64 %50, i32 8) #7
%54 = bitcast i8* %53 to double*
%55 = mul i32 %40, %40
%56 = zext i32 %55 to i64
%57 = tail call i8* @R_alloc(i64 %56, i32 8) #7
%58 = bitcast i8* %57 to double*
%59 = load %struct.SEXPREC*, %struct.SEXPREC** @R_NilValue, align 8, !tbaa !3
%60 = icmp ne i32 %6, 0
br i1 %60, label %61, label %76
; <label>:61: ; preds = %38
%62 = tail call %struct.SEXPREC* @Rf_allocVector(i32 19, i64 3) #7
%63 = tail call %struct.SEXPREC* @Rf_protect(%struct.SEXPREC* %62) #7
%64 = sext i32 %39 to i64
%65 = tail call %struct.SEXPREC* @Rf_allocVector(i32 14, i64 %64) #7
%66 = tail call %struct.SEXPREC* @SET_VECTOR_ELT(%struct.SEXPREC* %62, i64 1, %struct.SEXPREC* %65) #7
%67 = tail call %struct.SEXPREC* @Rf_allocMatrix(i32 14, i32 %39, i32 %40) #7
%68 = tail call %struct.SEXPREC* @SET_VECTOR_ELT(%struct.SEXPREC* %62, i64 2, %struct.SEXPREC* %67) #7
%69 = tail call %struct.SEXPREC* @Rf_allocVector(i32 16, i64 3) #7
%70 = tail call %struct.SEXPREC* @Rf_protect(%struct.SEXPREC* %69) #7
%71 = tail call %struct.SEXPREC* @Rf_mkChar(i8* getelementptr inbounds ([7 x i8], [7 x i8]* @.str.9, i64 0, i64 0)) #7
tail call void @SET_STRING_ELT(%struct.SEXPREC* %70, i64 0, %struct.SEXPREC* %71) #7
%72 = tail call %struct.SEXPREC* @Rf_mkChar(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str.10, i64 0, i64 0)) #7
tail call void @SET_STRING_ELT(%struct.SEXPREC* %70, i64 1, %struct.SEXPREC* %72) #7
%73 = tail call %struct.SEXPREC* @Rf_mkChar(i8* getelementptr inbounds ([7 x i8], [7 x i8]* @.str.11, i64 0, i64 0)) #7
tail call void @SET_STRING_ELT(%struct.SEXPREC* %70, i64 2, %struct.SEXPREC* %73) #7
%74 = load %struct.SEXPREC*, %struct.SEXPREC** @R_NamesSymbol, align 8, !tbaa !3
%75 = tail call %struct.SEXPREC* @Rf_setAttrib(%struct.SEXPREC* %62, %struct.SEXPREC* %74, %struct.SEXPREC* %70) #7
tail call void @Rf_unprotect(i32 1) #7
br label %76
; <label>:76: ; preds = %61, %38
%77 = phi %struct.SEXPREC* [ %65, %61 ], [ %59, %38 ]
%78 = phi %struct.SEXPREC* [ %67, %61 ], [ %59, %38 ]
%79 = phi %struct.SEXPREC* [ %62, %61 ], [ %59, %38 ]
%80 = icmp sgt i32 %39, 0
br i1 %80, label %81, label %235
; <label>:81: ; preds = %76
%82 = icmp sgt i32 %40, 0
%83 = icmp eq i32 %55, 0
%84 = sext i32 %39 to i64
%85 = zext i32 %40 to i64
%86 = zext i32 %40 to i64
%87 = zext i32 %40 to i64
%88 = zext i32 %40 to i64
%89 = zext i32 %40 to i64
%90 = zext i32 %40 to i64
%91 = zext i32 %40 to i64
%92 = zext i32 %40 to i64
%93 = zext i32 %40 to i64
%94 = zext i32 %40 to i64
%95 = zext i32 %40 to i64
%96 = zext i32 %39 to i64
%97 = getelementptr double, double* %46, i64 %95
%98 = bitcast double* %97 to i8*
%99 = shl nuw nsw i64 %95, 3
%100 = getelementptr i8, i8* %51, i64 %99
%101 = getelementptr i8, i8* %53, i64 %99
%102 = getelementptr double, double* %45, i64 %56
%103 = getelementptr double, double* %48, i64 %56
%104 = getelementptr double, double* %46, i64 %95
%105 = bitcast double* %104 to i8*
%106 = shl nuw nsw i64 %95, 3
%107 = getelementptr i8, i8* %51, i64 %106
%108 = add nsw i64 %85, -1
%109 = and i64 %85, 4294967292
%110 = add nsw i64 %109, -4
%111 = lshr exact i64 %110, 2
%112 = add nuw nsw i64 %111, 1
%113 = and i64 %56, 4294967292
%114 = add nsw i64 %113, -4
%115 = lshr exact i64 %114, 2
%116 = add nuw nsw i64 %115, 1
%117 = and i64 %85, 4294967294
%118 = add nsw i64 %117, -2
%119 = lshr exact i64 %118, 1
%120 = add nuw i64 %119, 1
%121 = and i64 %85, 1
%122 = icmp eq i64 %108, 0
%123 = sub nsw i64 %85, %121
%124 = icmp eq i64 %121, 0
%125 = xor i1 %82, true
%126 = and i64 %85, 1
%127 = icmp eq i64 %108, 0
%128 = sub nsw i64 %85, %126
%129 = icmp eq i64 %126, 0
%130 = and i64 %85, 1
%131 = icmp eq i64 %108, 0
%132 = sub nsw i64 %85, %130
%133 = icmp eq i64 %130, 0
%134 = icmp ult i32 %40, 4
%135 = icmp ugt i8* %107, %47
%136 = icmp ult i8* %51, %105
%137 = and i1 %135, %136
%138 = and i64 %95, 4294967292
%139 = and i64 %112, 3
%140 = icmp ult i64 %110, 12
%141 = sub nsw i64 %112, %139
%142 = icmp eq i64 %139, 0
%143 = icmp eq i64 %138, %95
%144 = icmp ult i32 %55, 4
%145 = icmp ult double* %45, %103
%146 = icmp ult double* %48, %102
%147 = and i1 %145, %146
%148 = and i64 %56, 4294967292
%149 = and i64 %116, 3
%150 = icmp ult i64 %114, 12
%151 = sub nsw i64 %116, %149
%152 = icmp eq i64 %149, 0
%153 = icmp eq i64 %148, %56
%154 = and i64 %85, 3
%155 = icmp ult i64 %108, 3
%156 = sub nsw i64 %85, %154
%157 = icmp eq i64 %154, 0
%158 = and i64 %85, 1
%159 = icmp eq i64 %108, 0
%160 = sub nsw i64 %85, %158
%161 = icmp eq i64 %158, 0
%162 = icmp eq i32 %40, 1
%163 = icmp ugt i8* %100, %47
%164 = icmp ult i8* %51, %98
%165 = and i1 %163, %164
%166 = icmp ugt i8* %101, %47
%167 = icmp ult i8* %53, %98
%168 = and i1 %166, %167
%169 = or i1 %165, %168
%170 = and i64 %95, 4294967294
%171 = and i64 %120, 1
%172 = icmp eq i64 %118, 0
%173 = sub i64 %120, %171
%174 = icmp eq i64 %171, 0
%175 = icmp eq i64 %170, %95
%176 = and i64 %85, 1
%177 = icmp eq i64 %176, 0
%178 = sub nsw i64 0, %85
%179 = and i64 %85, 3
%180 = icmp ult i64 %108, 3
%181 = sub nsw i64 %85, %179
%182 = icmp eq i64 %179, 0
br label %183
; <label>:183: ; preds = %957, %81
%184 = phi i64 [ 0, %81 ], [ %961, %957 ]
%185 = phi i32 [ 0, %81 ], [ %958, %957 ]
%186 = phi double [ 0.000000e+00, %81 ], [ %959, %957 ]
%187 = phi double [ 0.000000e+00, %81 ], [ %960, %957 ]
br i1 %82, label %188, label %247
; <label>:188: ; preds = %183, %229
%189 = phi i64 [ %233, %229 ], [ 0, %183 ]
br i1 %122, label %214, label %190
; <label>:190: ; preds = %188, %190
%191 = phi i64 [ %211, %190 ], [ 0, %188 ]
%192 = phi double [ %210, %190 ], [ 0.000000e+00, %188 ]
%193 = phi i64 [ %212, %190 ], [ %123, %188 ]
%194 = mul nsw i64 %191, %50
%195 = add nsw i64 %194, %189
%196 = getelementptr inbounds double, double* %43, i64 %195
%197 = load double, double* %196, align 8, !tbaa !7
%198 = getelementptr inbounds double, double* %46, i64 %191
%199 = load double, double* %198, align 8, !tbaa !7
%200 = fmul double %197, %199
%201 = fadd double %192, %200
%202 = or i64 %191, 1
%203 = mul nsw i64 %202, %50
%204 = add nsw i64 %203, %189
%205 = getelementptr inbounds double, double* %43, i64 %204
%206 = load double, double* %205, align 8, !tbaa !7
%207 = getelementptr inbounds double, double* %46, i64 %202
%208 = load double, double* %207, align 8, !tbaa !7
%209 = fmul double %206, %208
%210 = fadd double %201, %209
%211 = add nuw nsw i64 %191, 2
%212 = add i64 %193, -2
%213 = icmp eq i64 %212, 0
br i1 %213, label %214, label %190
; <label>:214: ; preds = %190, %188
%215 = phi double [ undef, %188 ], [ %210, %190 ]
%216 = phi i64 [ undef, %188 ], [ %211, %190 ]
%217 = phi i64 [ 0, %188 ], [ %211, %190 ]
%218 = phi double [ 0.000000e+00, %188 ], [ %210, %190 ]
br i1 %124, label %229, label %219
; <label>:219: ; preds = %214
%220 = add nuw nsw i64 %217, 1
%221 = mul nsw i64 %217, %50
%222 = add nsw i64 %221, %189
%223 = getelementptr inbounds double, double* %43, i64 %222
%224 = load double, double* %223, align 8, !tbaa !7
%225 = getelementptr inbounds double, double* %46, i64 %217
%226 = load double, double* %225, align 8, !tbaa !7
%227 = fmul double %224, %226
%228 = fadd double %218, %227
br label %229
; <label>:229: ; preds = %214, %219
%230 = phi double [ %215, %214 ], [ %228, %219 ]
%231 = phi i64 [ %216, %214 ], [ %220, %219 ]
%232 = getelementptr inbounds double, double* %52, i64 %189
store double %230, double* %232, align 8, !tbaa !7
%233 = add nuw nsw i64 %189, 1
%234 = icmp eq i64 %233, %231
br i1 %234, label %247, label %188
; <label>:235: ; preds = %957, %76
%236 = phi double [ 0.000000e+00, %76 ], [ %960, %957 ]
%237 = phi double [ 0.000000e+00, %76 ], [ %959, %957 ]
%238 = phi i32 [ 0, %76 ], [ %958, %957 ]
%239 = tail call %struct.SEXPREC* @Rf_allocVector(i32 14, i64 2) #7
%240 = tail call %struct.SEXPREC* @Rf_protect(%struct.SEXPREC* %239) #7
%241 = sitofp i32 %238 to double
%242 = fdiv double %237, %241
%243 = tail call double* @REAL(%struct.SEXPREC* %240) #7
store double %242, double* %243, align 8, !tbaa !7
%244 = fdiv double %236, %241
%245 = tail call double* @REAL(%struct.SEXPREC* %240) #7
%246 = getelementptr inbounds double, double* %245, i64 1
store double %244, double* %246, align 8, !tbaa !7
br i1 %60, label %963, label %971
; <label>:247: ; preds = %229, %183
%248 = tail call i32 @Rf_asInteger(%struct.SEXPREC* %2) #7
%249 = sext i32 %248 to i64
%250 = icmp sle i64 %184, %249
%251 = or i1 %250, %125
br i1 %251, label %363, label %252
; <label>:252: ; preds = %247, %254
%253 = phi i64 [ %255, %254 ], [ 0, %247 ]
br label %257
; <label>:254: ; preds = %274
%255 = add nuw nsw i64 %253, 1
%256 = icmp eq i64 %255, %87
br i1 %256, label %306, label %252
; <label>:257: ; preds = %274, %252
%258 = phi i64 [ 0, %252 ], [ %278, %274 ]
%259 = mul nsw i64 %258, %50
br i1 %127, label %260, label %280
; <label>:260: ; preds = %280, %257
%261 = phi double [ undef, %257 ], [ %302, %280 ]
%262 = phi i64 [ 0, %257 ], [ %303, %280 ]
%263 = phi double [ 0.000000e+00, %257 ], [ %302, %280 ]
br i1 %129, label %274, label %264
; <label>:264: ; preds = %260
%265 = mul nsw i64 %262, %50
%266 = add nsw i64 %265, %253
%267 = getelementptr inbounds double, double* %43, i64 %266
%268 = load double, double* %267, align 8, !tbaa !7
%269 = add nsw i64 %262, %259
%270 = getelementptr inbounds double, double* %45, i64 %269
%271 = load double, double* %270, align 8, !tbaa !7
%272 = fmul double %268, %271
%273 = fadd double %263, %272
br label %274
; <label>:274: ; preds = %260, %264
%275 = phi double [ %261, %260 ], [ %273, %264 ]
%276 = add nsw i64 %259, %253
%277 = getelementptr inbounds double, double* %58, i64 %276
store double %275, double* %277, align 8, !tbaa !7
%278 = add nuw nsw i64 %258, 1
%279 = icmp eq i64 %278, %86
br i1 %279, label %254, label %257
; <label>:280: ; preds = %257, %280
%281 = phi i64 [ %303, %280 ], [ 0, %257 ]
%282 = phi double [ %302, %280 ], [ 0.000000e+00, %257 ]
%283 = phi i64 [ %304, %280 ], [ %128, %257 ]
%284 = mul nsw i64 %281, %50
%285 = add nsw i64 %284, %253
%286 = getelementptr inbounds double, double* %43, i64 %285
%287 = load double, double* %286, align 8, !tbaa !7
%288 = add nsw i64 %281, %259
%289 = getelementptr inbounds double, double* %45, i64 %288
%290 = load double, double* %289, align 8, !tbaa !7
%291 = fmul double %287, %290
%292 = fadd double %282, %291
%293 = or i64 %281, 1
%294 = mul nsw i64 %293, %50
%295 = add nsw i64 %294, %253
%296 = getelementptr inbounds double, double* %43, i64 %295
%297 = load double, double* %296, align 8, !tbaa !7
%298 = add nsw i64 %293, %259
%299 = getelementptr inbounds double, double* %45, i64 %298
%300 = load double, double* %299, align 8, !tbaa !7
%301 = fmul double %297, %300
%302 = fadd double %292, %301
%303 = add nuw nsw i64 %281, 2
%304 = add i64 %283, -2
%305 = icmp eq i64 %304, 0
br i1 %305, label %260, label %280
; <label>:306: ; preds = %254
br i1 %82, label %307, label %363
; <label>:307: ; preds = %306, %309
%308 = phi i64 [ %310, %309 ], [ 0, %306 ]
br label %312
; <label>:309: ; preds = %332
%310 = add nuw nsw i64 %308, 1
%311 = icmp eq i64 %310, %89
br i1 %311, label %363, label %307
; <label>:312: ; preds = %332, %307
%313 = phi i64 [ 0, %307 ], [ %335, %332 ]
%314 = mul nsw i64 %313, %50
%315 = add nsw i64 %314, %308
%316 = getelementptr inbounds double, double* %44, i64 %315
%317 = load double, double* %316, align 8, !tbaa !7
br i1 %131, label %318, label %337
; <label>:318: ; preds = %337, %312
%319 = phi double [ undef, %312 ], [ %359, %337 ]
%320 = phi i64 [ 0, %312 ], [ %360, %337 ]
%321 = phi double [ %317, %312 ], [ %359, %337 ]
br i1 %133, label %332, label %322
; <label>:322: ; preds = %318
%323 = mul nsw i64 %320, %50
%324 = add nsw i64 %323, %308
%325 = getelementptr inbounds double, double* %58, i64 %324
%326 = load double, double* %325, align 8, !tbaa !7
%327 = add nsw i64 %323, %313
%328 = getelementptr inbounds double, double* %43, i64 %327
%329 = load double, double* %328, align 8, !tbaa !7
%330 = fmul double %326, %329
%331 = fadd double %321, %330
br label %332
; <label>:332: ; preds = %318, %322
%333 = phi double [ %319, %318 ], [ %331, %322 ]
%334 = getelementptr inbounds double, double* %48, i64 %315
store double %333, double* %334, align 8, !tbaa !7
%335 = add nuw nsw i64 %313, 1
%336 = icmp eq i64 %335, %88
br i1 %336, label %309, label %312
; <label>:337: ; preds = %312, %337
%338 = phi i64 [ %360, %337 ], [ 0, %312 ]
%339 = phi double [ %359, %337 ], [ %317, %312 ]
%340 = phi i64 [ %361, %337 ], [ %132, %312 ]
%341 = mul nsw i64 %338, %50
%342 = add nsw i64 %341, %308
%343 = getelementptr inbounds double, double* %58, i64 %342
%344 = load double, double* %343, align 8, !tbaa !7
%345 = add nsw i64 %341, %313
%346 = getelementptr inbounds double, double* %43, i64 %345
%347 = load double, double* %346, align 8, !tbaa !7
%348 = fmul double %344, %347
%349 = fadd double %339, %348
%350 = or i64 %338, 1
%351 = mul nsw i64 %350, %50
%352 = add nsw i64 %351, %308
%353 = getelementptr inbounds double, double* %58, i64 %352
%354 = load double, double* %353, align 8, !tbaa !7
%355 = add nsw i64 %351, %313
%356 = getelementptr inbounds double, double* %43, i64 %355
%357 = load double, double* %356, align 8, !tbaa !7
%358 = fmul double %354, %357
%359 = fadd double %349, %358
%360 = add nuw nsw i64 %338, 2
%361 = add i64 %340, -2
%362 = icmp eq i64 %361, 0
br i1 %362, label %318, label %337
; <label>:363: ; preds = %309, %247, %306
%364 = getelementptr inbounds double, double* %41, i64 %184
%365 = load double, double* %364, align 8, !tbaa !7
%366 = fcmp ord double %365, 0.000000e+00
br i1 %366, label %367, label %601
; <label>:367: ; preds = %363
%368 = add nsw i32 %185, 1
br i1 %60, label %369, label %372
; <label>:369: ; preds = %367
%370 = tail call double* @REAL(%struct.SEXPREC* %77) #7
%371 = load double, double* %364, align 8, !tbaa !7
br label %372
; <label>:372: ; preds = %369, %367
%373 = phi double [ %371, %369 ], [ %365, %367 ]
%374 = phi double* [ %370, %369 ], [ null, %367 ]
br i1 %82, label %375, label %478
; <label>:375: ; preds = %372
br i1 %155, label %376, label %444
; <label>:376: ; preds = %444, %375
%377 = phi double [ undef, %375 ], [ %474, %444 ]
%378 = phi i64 [ 0, %375 ], [ %475, %444 ]
%379 = phi double [ %373, %375 ], [ %474, %444 ]
br i1 %157, label %393, label %380
; <label>:380: ; preds = %376, %380
%381 = phi i64 [ %390, %380 ], [ %378, %376 ]
%382 = phi double [ %389, %380 ], [ %379, %376 ]
%383 = phi i64 [ %391, %380 ], [ %154, %376 ]
%384 = getelementptr inbounds double, double* %42, i64 %381
%385 = load double, double* %384, align 8, !tbaa !7
%386 = getelementptr inbounds double, double* %52, i64 %381
%387 = load double, double* %386, align 8, !tbaa !7
%388 = fmul double %385, %387
%389 = fsub double %382, %388
%390 = add nuw nsw i64 %381, 1
%391 = add i64 %383, -1
%392 = icmp eq i64 %391, 0
br i1 %392, label %393, label %380, !llvm.loop !9
; <label>:393: ; preds = %380, %376
%394 = phi double [ %377, %376 ], [ %389, %380 ]
br i1 %82, label %395, label %478
; <label>:395: ; preds = %393, %435
%396 = phi i64 [ %442, %435 ], [ 0, %393 ]
%397 = phi double [ %441, %435 ], [ %49, %393 ]
br i1 %159, label %422, label %398
; <label>:398: ; preds = %395, %398
%399 = phi i64 [ %419, %398 ], [ 0, %395 ]
%400 = phi double [ %418, %398 ], [ 0.000000e+00, %395 ]
%401 = phi i64 [ %420, %398 ], [ %160, %395 ]
%402 = mul nsw i64 %399, %50
%403 = add nsw i64 %402, %396
%404 = getelementptr inbounds double, double* %48, i64 %403
%405 = load double, double* %404, align 8, !tbaa !7
%406 = getelementptr inbounds double, double* %42, i64 %399
%407 = load double, double* %406, align 8, !tbaa !7
%408 = fmul double %405, %407
%409 = fadd double %400, %408
%410 = or i64 %399, 1
%411 = mul nsw i64 %410, %50
%412 = add nsw i64 %411, %396
%413 = getelementptr inbounds double, double* %48, i64 %412
%414 = load double, double* %413, align 8, !tbaa !7
%415 = getelementptr inbounds double, double* %42, i64 %410
%416 = load double, double* %415, align 8, !tbaa !7
%417 = fmul double %414, %416
%418 = fadd double %409, %417
%419 = add nuw nsw i64 %399, 2
%420 = add i64 %401, -2
%421 = icmp eq i64 %420, 0
br i1 %421, label %422, label %398
; <label>:422: ; preds = %398, %395
%423 = phi double [ undef, %395 ], [ %418, %398 ]
%424 = phi i64 [ 0, %395 ], [ %419, %398 ]
%425 = phi double [ 0.000000e+00, %395 ], [ %418, %398 ]
br i1 %161, label %435, label %426
; <label>:426: ; preds = %422
%427 = mul nsw i64 %424, %50
%428 = add nsw i64 %427, %396
%429 = getelementptr inbounds double, double* %48, i64 %428
%430 = load double, double* %429, align 8, !tbaa !7
%431 = getelementptr inbounds double, double* %42, i64 %424
%432 = load double, double* %431, align 8, !tbaa !7
%433 = fmul double %430, %432
%434 = fadd double %425, %433
br label %435
; <label>:435: ; preds = %422, %426
%436 = phi double [ %423, %422 ], [ %434, %426 ]
%437 = getelementptr inbounds double, double* %54, i64 %396
store double %436, double* %437, align 8, !tbaa !7
%438 = getelementptr inbounds double, double* %42, i64 %396
%439 = load double, double* %438, align 8, !tbaa !7
%440 = fmul double %436, %439
%441 = fadd double %397, %440
%442 = add nuw nsw i64 %396, 1
%443 = icmp eq i64 %442, %91
br i1 %443, label %478, label %395
; <label>:444: ; preds = %375, %444
%445 = phi i64 [ %475, %444 ], [ 0, %375 ]
%446 = phi double [ %474, %444 ], [ %373, %375 ]
%447 = phi i64 [ %476, %444 ], [ %156, %375 ]
%448 = getelementptr inbounds double, double* %42, i64 %445
%449 = load double, double* %448, align 8, !tbaa !7
%450 = getelementptr inbounds double, double* %52, i64 %445
%451 = load double, double* %450, align 8, !tbaa !7
%452 = fmul double %449, %451
%453 = fsub double %446, %452
%454 = or i64 %445, 1
%455 = getelementptr inbounds double, double* %42, i64 %454
%456 = load double, double* %455, align 8, !tbaa !7
%457 = getelementptr inbounds double, double* %52, i64 %454
%458 = load double, double* %457, align 8, !tbaa !7
%459 = fmul double %456, %458
%460 = fsub double %453, %459
%461 = or i64 %445, 2
%462 = getelementptr inbounds double, double* %42, i64 %461
%463 = load double, double* %462, align 8, !tbaa !7
%464 = getelementptr inbounds double, double* %52, i64 %461
%465 = load double, double* %464, align 8, !tbaa !7
%466 = fmul double %463, %465
%467 = fsub double %460, %466
%468 = or i64 %445, 3
%469 = getelementptr inbounds double, double* %42, i64 %468
%470 = load double, double* %469, align 8, !tbaa !7
%471 = getelementptr inbounds double, double* %52, i64 %468
%472 = load double, double* %471, align 8, !tbaa !7
%473 = fmul double %470, %472
%474 = fsub double %467, %473
%475 = add nuw nsw i64 %445, 4
%476 = add i64 %447, -4
%477 = icmp eq i64 %476, 0
br i1 %477, label %376, label %444
; <label>:478: ; preds = %435, %372, %393
%479 = phi double [ %394, %393 ], [ %373, %372 ], [ %394, %435 ]
%480 = phi double [ %49, %393 ], [ %49, %372 ], [ %441, %435 ]
%481 = fmul double %479, %479
%482 = fdiv double %481, %480
%483 = fadd double %186, %482
br i1 %60, label %484, label %488
; <label>:484: ; preds = %478
%485 = tail call double @llvm.sqrt.f64(double %480)
%486 = fdiv double %479, %485
%487 = getelementptr inbounds double, double* %374, i64 %184
store double %486, double* %487, align 8, !tbaa !7
br label %488
; <label>:488: ; preds = %484, %478
%489 = tail call double @llvm.log.f64(double %480)
%490 = fadd double %187, %489
br i1 %82, label %491, label %898
; <label>:491: ; preds = %488
%492 = or i1 %162, %169
br i1 %492, label %493, label %509
; <label>:493: ; preds = %491, %557
%494 = phi i64 [ 0, %491 ], [ %170, %557 ]
%495 = xor i64 %494, -1
br i1 %177, label %506, label %496
; <label>:496: ; preds = %493
%497 = getelementptr inbounds double, double* %52, i64 %494
%498 = load double, double* %497, align 8, !tbaa !7
%499 = getelementptr inbounds double, double* %54, i64 %494
%500 = load double, double* %499, align 8, !tbaa !7
%501 = fmul double %479, %500
%502 = fdiv double %501, %480
%503 = fadd double %498, %502
%504 = getelementptr inbounds double, double* %46, i64 %494
store double %503, double* %504, align 8, !tbaa !7
%505 = or i64 %494, 1
br label %506
; <label>:506: ; preds = %496, %493
%507 = phi i64 [ %505, %496 ], [ %494, %493 ]
%508 = icmp eq i64 %495, %178
br i1 %508, label %558, label %580
; <label>:509: ; preds = %491
%510 = insertelement <2 x double> undef, double %479, i32 0
%511 = shufflevector <2 x double> %510, <2 x double> undef, <2 x i32> zeroinitializer
%512 = insertelement <2 x double> undef, double %480, i32 0
%513 = shufflevector <2 x double> %512, <2 x double> undef, <2 x i32> zeroinitializer
br i1 %172, label %543, label %514
; <label>:514: ; preds = %509, %514
%515 = phi i64 [ %540, %514 ], [ 0, %509 ]
%516 = phi i64 [ %541, %514 ], [ %173, %509 ]
%517 = getelementptr inbounds double, double* %52, i64 %515
%518 = bitcast double* %517 to <2 x double>*
%519 = load <2 x double>, <2 x double>* %518, align 8, !tbaa !7, !alias.scope !11
%520 = getelementptr inbounds double, double* %54, i64 %515
%521 = bitcast double* %520 to <2 x double>*
%522 = load <2 x double>, <2 x double>* %521, align 8, !tbaa !7, !alias.scope !14
%523 = fmul <2 x double> %511, %522
%524 = fdiv <2 x double> %523, %513
%525 = fadd <2 x double> %519, %524
%526 = getelementptr inbounds double, double* %46, i64 %515
%527 = bitcast double* %526 to <2 x double>*
store <2 x double> %525, <2 x double>* %527, align 8, !tbaa !7, !alias.scope !16, !noalias !18
%528 = or i64 %515, 2
%529 = getelementptr inbounds double, double* %52, i64 %528
%530 = bitcast double* %529 to <2 x double>*
%531 = load <2 x double>, <2 x double>* %530, align 8, !tbaa !7, !alias.scope !11
%532 = getelementptr inbounds double, double* %54, i64 %528
%533 = bitcast double* %532 to <2 x double>*
%534 = load <2 x double>, <2 x double>* %533, align 8, !tbaa !7, !alias.scope !14
%535 = fmul <2 x double> %511, %534
%536 = fdiv <2 x double> %535, %513
%537 = fadd <2 x double> %531, %536
%538 = getelementptr inbounds double, double* %46, i64 %528
%539 = bitcast double* %538 to <2 x double>*
store <2 x double> %537, <2 x double>* %539, align 8, !tbaa !7, !alias.scope !16, !noalias !18
%540 = add i64 %515, 4
%541 = add i64 %516, -2
%542 = icmp eq i64 %541, 0
br i1 %542, label %543, label %514, !llvm.loop !19
; <label>:543: ; preds = %514, %509
%544 = phi i64 [ 0, %509 ], [ %540, %514 ]
br i1 %174, label %557, label %545
; <label>:545: ; preds = %543
%546 = getelementptr inbounds double, double* %52, i64 %544
%547 = bitcast double* %546 to <2 x double>*
%548 = load <2 x double>, <2 x double>* %547, align 8, !tbaa !7, !alias.scope !11
%549 = getelementptr inbounds double, double* %54, i64 %544
%550 = bitcast double* %549 to <2 x double>*
%551 = load <2 x double>, <2 x double>* %550, align 8, !tbaa !7, !alias.scope !14
%552 = fmul <2 x double> %511, %551
%553 = fdiv <2 x double> %552, %513
%554 = fadd <2 x double> %548, %553
%555 = getelementptr inbounds double, double* %46, i64 %544
%556 = bitcast double* %555 to <2 x double>*
store <2 x double> %554, <2 x double>* %556, align 8, !tbaa !7, !alias.scope !16, !noalias !18
br label %557
; <label>:557: ; preds = %543, %545
br i1 %175, label %558, label %493
; <label>:558: ; preds = %506, %580, %557
br i1 %82, label %559, label %898
; <label>:559: ; preds = %558, %577
%560 = phi i64 [ %578, %577 ], [ 0, %558 ]
%561 = getelementptr inbounds double, double* %54, i64 %560
br label %562
; <label>:562: ; preds = %562, %559
%563 = phi i64 [ 0, %559 ], [ %575, %562 ]
%564 = mul nsw i64 %563, %50
%565 = add nsw i64 %564, %560
%566 = getelementptr inbounds double, double* %48, i64 %565
%567 = load double, double* %566, align 8, !tbaa !7
%568 = load double, double* %561, align 8, !tbaa !7
%569 = getelementptr inbounds double, double* %54, i64 %563
%570 = load double, double* %569, align 8, !tbaa !7
%571 = fmul double %568, %570
%572 = fdiv double %571, %480
%573 = fsub double %567, %572
%574 = getelementptr inbounds double, double* %45, i64 %565
store double %573, double* %574, align 8, !tbaa !7
%575 = add nuw nsw i64 %563, 1
%576 = icmp eq i64 %575, %93
br i1 %576, label %577, label %562
; <label>:577: ; preds = %562
%578 = add nuw nsw i64 %560, 1
%579 = icmp eq i64 %578, %94
br i1 %579, label %898, label %559
; <label>:580: ; preds = %506, %580
%581 = phi i64 [ %599, %580 ], [ %507, %506 ]
%582 = getelementptr inbounds double, double* %52, i64 %581
%583 = load double, double* %582, align 8, !tbaa !7
%584 = getelementptr inbounds double, double* %54, i64 %581
%585 = load double, double* %584, align 8, !tbaa !7
%586 = fmul double %479, %585
%587 = fdiv double %586, %480
%588 = fadd double %583, %587
%589 = getelementptr inbounds double, double* %46, i64 %581
store double %588, double* %589, align 8, !tbaa !7
%590 = add nuw nsw i64 %581, 1
%591 = getelementptr inbounds double, double* %52, i64 %590
%592 = load double, double* %591, align 8, !tbaa !7
%593 = getelementptr inbounds double, double* %54, i64 %590
%594 = load double, double* %593, align 8, !tbaa !7
%595 = fmul double %479, %594
%596 = fdiv double %595, %480
%597 = fadd double %592, %596
%598 = getelementptr inbounds double, double* %46, i64 %590
store double %597, double* %598, align 8, !tbaa !7
%599 = add nsw i64 %581, 2
%600 = icmp eq i64 %599, %92
br i1 %600, label %558, label %580, !llvm.loop !21
; <label>:601: ; preds = %363
br i1 %60, label %602, label %604
; <label>:602: ; preds = %601
%603 = tail call double* @REAL(%struct.SEXPREC* %77) #7
br label %604
; <label>:604: ; preds = %602, %601
%605 = phi double* [ %603, %602 ], [ null, %601 ]
br i1 %82, label %606, label %698
; <label>:606: ; preds = %604
%607 = or i1 %134, %137
br i1 %607, label %608, label %629
; <label>:608: ; preds = %606, %697
%609 = phi i64 [ 0, %606 ], [ %138, %697 ]
%610 = sub nsw i64 %85, %609
%611 = xor i64 %609, -1
%612 = add nsw i64 %611, %85
%613 = and i64 %610, 7
%614 = icmp eq i64 %613, 0
br i1 %614, label %626, label %615
; <label>:615: ; preds = %608, %615
%616 = phi i64 [ %623, %615 ], [ %609, %608 ]
%617 = phi i64 [ %624, %615 ], [ %613, %608 ]
%618 = getelementptr inbounds double, double* %52, i64 %616
%619 = bitcast double* %618 to i64*
%620 = load i64, i64* %619, align 8, !tbaa !7
%621 = getelementptr inbounds double, double* %46, i64 %616
%622 = bitcast double* %621 to i64*
store i64 %620, i64* %622, align 8, !tbaa !7
%623 = add nuw nsw i64 %616, 1
%624 = add i64 %617, -1
%625 = icmp eq i64 %624, 0
br i1 %625, label %626, label %615, !llvm.loop !22
; <label>:626: ; preds = %615, %608
%627 = phi i64 [ %609, %608 ], [ %623, %615 ]
%628 = icmp ult i64 %612, 7
br i1 %628, label %698, label %791
; <label>:629: ; preds = %606
br i1 %140, label %679, label %630
; <label>:630: ; preds = %629, %630
%631 = phi i64 [ %676, %630 ], [ 0, %629 ]
%632 = phi i64 [ %677, %630 ], [ %141, %629 ]
%633 = getelementptr inbounds double, double* %52, i64 %631
%634 = bitcast double* %633 to <2 x i64>*
%635 = load <2 x i64>, <2 x i64>* %634, align 8, !tbaa !7, !alias.scope !23
%636 = getelementptr inbounds double, double* %633, i64 2
%637 = bitcast double* %636 to <2 x i64>*
%638 = load <2 x i64>, <2 x i64>* %637, align 8, !tbaa !7, !alias.scope !23
%639 = getelementptr inbounds double, double* %46, i64 %631
%640 = bitcast double* %639 to <2 x i64>*
store <2 x i64> %635, <2 x i64>* %640, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%641 = getelementptr inbounds double, double* %639, i64 2
%642 = bitcast double* %641 to <2 x i64>*
store <2 x i64> %638, <2 x i64>* %642, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%643 = or i64 %631, 4
%644 = getelementptr inbounds double, double* %52, i64 %643
%645 = bitcast double* %644 to <2 x i64>*
%646 = load <2 x i64>, <2 x i64>* %645, align 8, !tbaa !7, !alias.scope !23
%647 = getelementptr inbounds double, double* %644, i64 2
%648 = bitcast double* %647 to <2 x i64>*
%649 = load <2 x i64>, <2 x i64>* %648, align 8, !tbaa !7, !alias.scope !23
%650 = getelementptr inbounds double, double* %46, i64 %643
%651 = bitcast double* %650 to <2 x i64>*
store <2 x i64> %646, <2 x i64>* %651, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%652 = getelementptr inbounds double, double* %650, i64 2
%653 = bitcast double* %652 to <2 x i64>*
store <2 x i64> %649, <2 x i64>* %653, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%654 = or i64 %631, 8
%655 = getelementptr inbounds double, double* %52, i64 %654
%656 = bitcast double* %655 to <2 x i64>*
%657 = load <2 x i64>, <2 x i64>* %656, align 8, !tbaa !7, !alias.scope !23
%658 = getelementptr inbounds double, double* %655, i64 2
%659 = bitcast double* %658 to <2 x i64>*
%660 = load <2 x i64>, <2 x i64>* %659, align 8, !tbaa !7, !alias.scope !23
%661 = getelementptr inbounds double, double* %46, i64 %654
%662 = bitcast double* %661 to <2 x i64>*
store <2 x i64> %657, <2 x i64>* %662, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%663 = getelementptr inbounds double, double* %661, i64 2
%664 = bitcast double* %663 to <2 x i64>*
store <2 x i64> %660, <2 x i64>* %664, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%665 = or i64 %631, 12
%666 = getelementptr inbounds double, double* %52, i64 %665
%667 = bitcast double* %666 to <2 x i64>*
%668 = load <2 x i64>, <2 x i64>* %667, align 8, !tbaa !7, !alias.scope !23
%669 = getelementptr inbounds double, double* %666, i64 2
%670 = bitcast double* %669 to <2 x i64>*
%671 = load <2 x i64>, <2 x i64>* %670, align 8, !tbaa !7, !alias.scope !23
%672 = getelementptr inbounds double, double* %46, i64 %665
%673 = bitcast double* %672 to <2 x i64>*
store <2 x i64> %668, <2 x i64>* %673, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%674 = getelementptr inbounds double, double* %672, i64 2
%675 = bitcast double* %674 to <2 x i64>*
store <2 x i64> %671, <2 x i64>* %675, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%676 = add i64 %631, 16
%677 = add i64 %632, -4
%678 = icmp eq i64 %677, 0
br i1 %678, label %679, label %630, !llvm.loop !28
; <label>:679: ; preds = %630, %629
%680 = phi i64 [ 0, %629 ], [ %676, %630 ]
br i1 %142, label %697, label %681
; <label>:681: ; preds = %679, %681
%682 = phi i64 [ %694, %681 ], [ %680, %679 ]
%683 = phi i64 [ %695, %681 ], [ %139, %679 ]
%684 = getelementptr inbounds double, double* %52, i64 %682
%685 = bitcast double* %684 to <2 x i64>*
%686 = load <2 x i64>, <2 x i64>* %685, align 8, !tbaa !7, !alias.scope !23
%687 = getelementptr inbounds double, double* %684, i64 2
%688 = bitcast double* %687 to <2 x i64>*
%689 = load <2 x i64>, <2 x i64>* %688, align 8, !tbaa !7, !alias.scope !23
%690 = getelementptr inbounds double, double* %46, i64 %682
%691 = bitcast double* %690 to <2 x i64>*
store <2 x i64> %686, <2 x i64>* %691, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%692 = getelementptr inbounds double, double* %690, i64 2
%693 = bitcast double* %692 to <2 x i64>*
store <2 x i64> %689, <2 x i64>* %693, align 8, !tbaa !7, !alias.scope !26, !noalias !23
%694 = add i64 %682, 4
%695 = add i64 %683, -1
%696 = icmp eq i64 %695, 0
br i1 %696, label %697, label %681, !llvm.loop !29
; <label>:697: ; preds = %681, %679
br i1 %143, label %698, label %608
; <label>:698: ; preds = %626, %791, %697, %604
br i1 %83, label %842, label %699
; <label>:699: ; preds = %698
%700 = or i1 %144, %147
br i1 %700, label %701, label %722
; <label>:701: ; preds = %699, %790
%702 = phi i64 [ 0, %699 ], [ %148, %790 ]
%703 = sub nsw i64 %56, %702
%704 = xor i64 %702, -1
%705 = add nsw i64 %704, %56
%706 = and i64 %703, 7
%707 = icmp eq i64 %706, 0
br i1 %707, label %719, label %708
; <label>:708: ; preds = %701, %708
%709 = phi i64 [ %716, %708 ], [ %702, %701 ]
%710 = phi i64 [ %717, %708 ], [ %706, %701 ]
%711 = getelementptr inbounds double, double* %48, i64 %709
%712 = bitcast double* %711 to i64*
%713 = load i64, i64* %712, align 8, !tbaa !7
%714 = getelementptr inbounds double, double* %45, i64 %709
%715 = bitcast double* %714 to i64*
store i64 %713, i64* %715, align 8, !tbaa !7
%716 = add nuw nsw i64 %709, 1
%717 = add i64 %710, -1
%718 = icmp eq i64 %717, 0
br i1 %718, label %719, label %708, !llvm.loop !30
; <label>:719: ; preds = %708, %701
%720 = phi i64 [ %702, %701 ], [ %716, %708 ]
%721 = icmp ult i64 %705, 7
br i1 %721, label %842, label %843
; <label>:722: ; preds = %699
br i1 %150, label %772, label %723
; <label>:723: ; preds = %722, %723
%724 = phi i64 [ %769, %723 ], [ 0, %722 ]
%725 = phi i64 [ %770, %723 ], [ %151, %722 ]
%726 = getelementptr inbounds double, double* %48, i64 %724
%727 = bitcast double* %726 to <2 x i64>*
%728 = load <2 x i64>, <2 x i64>* %727, align 8, !tbaa !7, !alias.scope !31
%729 = getelementptr inbounds double, double* %726, i64 2
%730 = bitcast double* %729 to <2 x i64>*
%731 = load <2 x i64>, <2 x i64>* %730, align 8, !tbaa !7, !alias.scope !31
%732 = getelementptr inbounds double, double* %45, i64 %724
%733 = bitcast double* %732 to <2 x i64>*
store <2 x i64> %728, <2 x i64>* %733, align 8, !tbaa !7, !alias.scope !34, !noalias !31
%734 = getelementptr inbounds double, double* %732, i64 2
%735 = bitcast double* %734 to <2 x i64>*
store <2 x i64> %731, <2 x i64>* %735, align 8, !tbaa !7, !alias.scope !34, !noalias !31
%736 = or i64 %724, 4
%737 = getelementptr inbounds double, double* %48, i64 %736
%738 = bitcast double* %737 to <2 x i64>*
%739 = load <2 x i64>, <2 x i64>* %738, align 8, !tbaa !7, !alias.scope !31
%740 = getelementptr inbounds double, double* %737, i64 2
%741 = bitcast double* %740 to <2 x i64>*
%742 = load <2 x i64>, <2 x i64>* %741, align 8, !tbaa !7, !alias.scope !31
%743 = getelementptr inbounds double, double* %45, i64 %736
%744 = bitcast double* %743 to <2 x i64>*
store <2 x i64> %739, <2 x i64>* %744, align 8, !tbaa !7, !alias.scope !34, !noalias !31
%745 = getelementptr inbounds double, double* %743, i64 2
%746 = bitcast double* %745 to <2 x i64>*
store <2 x i64> %742, <2 x i64>* %746, align 8, !tbaa !7, !alias.scope !34, !noalias !31
%747 = or i64 %724, 8
%748 = getelementptr inbounds double, double* %48, i64 %747
%749 = bitcast double* %748 to <2 x i64>*
%750 = load <2 x i64>, <2 x i64>* %749, align 8, !tbaa !7, !alias.scope !31
%751 = getelementptr inbounds double, double* %748, i64 2
%752 = bitcast double* %751 to <2 x i64>*
%753 = load <2 x i64>, <2 x i64>* %752, align 8, !tbaa !7, !alias.scope !31
%754 = getelementptr inbounds double, double* %45, i64 %747
%755 = bitcast double* %754 to <2 x i64>*
store <2 x i64> %750, <2 x i64>* %755, align 8, !tbaa !7, !alias.scope !34, !noalias !31
%756 = getelementptr inbounds double, double* %754, i64 2
%757 = bitcast double* %756 to <2 x i64>*
store <2 x i64> %753, <2 x i64>* %757, align 8, !tbaa !7, !alias.scope !34, !noalias !31
%758 = or i64 %724, 12
%759 = getelementptr inbounds double, double* %48, i64 %758
%760 = bitcast double* %759 to <2 x i64>*
%761 = load <2 x i64>, <2 x i64>* %760, align 8, !tbaa !7, !alias.scope !31
%762 = getelementptr inbounds double, double* %759, i64 2
%763 = bitcast double* %762 to <2 x i64>*
%764 = load <2 x i64>, <2 x i64>* %763, align 8, !tbaa !7, !alias.scope !31