-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-0669b64613.log
1605 lines (1559 loc) · 62.5 KB
/
1.6.0-DEV-0669b64613.log
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
Julia Version 1.6.0-DEV.1153
Commit 0669b64613 (2020-10-07 09:01 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-10.0.1 (ORCJIT, znver2)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed SIMD ─ v3.1.0
Updating `~/.julia/environments/v1.6/Project.toml`
[fdea26ae] + SIMD v3.1.0
Updating `~/.julia/environments/v1.6/Manifest.toml`
[fdea26ae] + SIMD v3.1.0
Testing SIMD
Status `/tmp/jl_SCqV40/Project.toml`
[fdea26ae] SIMD v3.1.0
[b77e0a4c] InteractiveUtils
[8dfed614] Test
Status `/tmp/jl_SCqV40/Manifest.toml`
[fdea26ae] SIMD v3.1.0
[2a0f44e3] Base64
[b77e0a4c] InteractiveUtils
[56ddb016] Logging
[d6f4376e] Markdown
[9a3f8284] Random
[9e88b42a] Serialization
[8dfed614] Test
Testing Running tests...
Test Summary: | Pass Total
Type properties | 10 10
Test Summary: | Pass Total
Type conversion | 8 8
Test Summary: | Pass Total
Conversion and reinterpretation | 4 4
Test Summary: | Pass Total
Element-wise access | 22 22
Test Summary: | Pass Total
Integer arithmetic functions | 108 108
Test Summary: | Pass Total
saturation | 4 4
Test Summary: | Pass Total
overflow arithmetic | 24 24
Test Summary: | Pass Total
Floating point arithmetic functions | 101 101
Test Summary: | Pass Total
Type promotion | 88 88
Test Summary: | Pass Total
Reduction operations | 19 19
Test Summary: | Pass Total
Load and store functions | 60 60
Test Summary: | Pass Total
fastmath | 5 5
Test Summary: | Pass Total
Gather and scatter function | 84 84
Test Summary: | Pass Total
expandload | 10 10
Test Summary: | Pass Total
compressstore | 10 10
Test Summary: | Pass Total
Index-based load/store | 104 104
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:650 within `vsum'
define double @julia_vsum_4181({ {}*, [1 x [2 x i64]], i64, i64 }* nocapture nonnull readonly align 8 dereferenceable(40) %0) {
top:
%1 = alloca {}*, align 8
%2 = alloca [1 x [1 x i64]], align 8
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:651 within `vsum'
; ┌ @ abstractarray.jl:206 within `length'
; │┌ @ subarray.jl:63 within `size'
; ││┌ @ subarray.jl:426 within `axes'
; │││┌ @ subarray.jl:431 within `_indices_sub'
; ││││┌ @ abstractarray.jl:99 within `unsafe_indices'
; │││││┌ @ range.jl:546 within `unsafe_length'
; ││││││┌ @ range.jl:600 within `last'
; │││││││┌ @ Base.jl:33 within `getproperty'
%3 = getelementptr inbounds { {}*, [1 x [2 x i64]], i64, i64 }, { {}*, [1 x [2 x i64]], i64, i64 }* %0, i64 0, i32 1, i64 0, i64 1
; ││││││└└
; ││││││┌ @ range.jl:595 within `first'
; │││││││┌ @ Base.jl:33 within `getproperty'
%4 = getelementptr inbounds { {}*, [1 x [2 x i64]], i64, i64 }, { {}*, [1 x [2 x i64]], i64, i64 }* %0, i64 0, i32 1, i64 0, i64 0
; ││││││└└
; ││││││┌ @ int.jl:86 within `-'
%5 = load i64, i64* %3, align 8
%6 = load i64, i64* %4, align 8
%7 = sub i64 %5, %6
; ││││││└
; ││││││┌ @ int.jl:87 within `+'
%8 = add i64 %7, 1
; │││││└└
; │││││┌ @ range.jl:330 within `OneTo' @ range.jl:321
; ││││││┌ @ promotion.jl:419 within `max'
%9 = icmp sgt i64 %8, 0
%10 = select i1 %9, i64 %8, i64 0
; └└└└└└└
; ┌ @ int.jl:262 within `rem'
%11 = and i64 %10, 3
; └
; ┌ @ promotion.jl:408 within `=='
%12 = icmp eq i64 %11, 0
; └
br i1 %12, label %L14, label %L102
L14: ; preds = %top
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:654 within `vsum'
; ┌ @ range.jl:22 within `Colon'
; │┌ @ range.jl:24 within `_colon'
; ││┌ @ range.jl:260 within `StepRange' @ range.jl:208
%13 = call i64 @j_steprange_last_4184(i64 1, i64 4, i64 %10)
; └└└
; ┌ @ range.jl:657 within `iterate'
%14 = icmp sgt i64 %13, 0
%15 = or i1 %14, icmp eq ({}* inttoptr (i64 139823581986384 to {}*), {}* inttoptr (i64 139823581746576 to {}*))
; └
br i1 %15, label %L41.preheader, label %L98
L41.preheader: ; preds = %L14
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:655 within `vsum'
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl within `_preprocessindices'
%16 = getelementptr inbounds [1 x [1 x i64]], [1 x [1 x i64]]* %2, i64 0, i64 0, i64 0
; └└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:277 within `_pointer'
; ││┌ @ subarray.jl:412 within `pointer'
; │││┌ @ Base.jl within `getproperty'
%17 = bitcast { {}*, [1 x [2 x i64]], i64, i64 }* %0 to i8***
%18 = load atomic i8**, i8*** %17 unordered, align 8
%19 = getelementptr inbounds { {}*, [1 x [2 x i64]], i64, i64 }, { {}*, [1 x [2 x i64]], i64, i64 }* %0, i64 0, i32 2
; │││└
; │││┌ @ int.jl within `+'
%20 = load i64, i64* %19, align 8
; └└└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:263 within `_preprocessindices'
; ││┌ @ abstractarray.jl:566 within `checkbounds'
br label %L41
L41: ; preds = %L71, %L41.preheader
%value_phi3 = phi i64 [ %33, %L71 ], [ 1, %L41.preheader ]
%value_phi5 = phi <4 x double> [ %31, %L71 ], [ zeroinitializer, %L41.preheader ]
; │││ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:212 within `checkindex'
; ││││┌ @ int.jl:442 within `<='
%21 = icmp slt i64 %value_phi3, 1
; ││││└
%22 = add nuw i64 %value_phi3, 3
%23 = icmp sgt i64 %22, %10
; │││└
; │││ @ abstractarray.jl:566 within `checkbounds'
%24 = or i1 %21, %23
br i1 %24, label %L67, label %L71
L67: ; preds = %L41
; ││└
store i64 %value_phi3, i64* %16, align 8
; ││┌ @ abstractarray.jl:566 within `checkbounds'
%25 = call nonnull {}* @j_throw_boundserror_4188({ {}*, [1 x [2 x i64]], i64, i64 }* nocapture nonnull readonly %0, [1 x [1 x i64]]* nocapture readonly %2)
call void @llvm.trap()
unreachable
L71: ; preds = %L41
; └└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:277 within `_pointer'
; ││┌ @ subarray.jl:412 within `pointer'
; │││┌ @ int.jl:87 within `+'
%26 = add i64 %20, %value_phi3
; │││└
; │││ @ subarray.jl:412 within `pointer' @ abstractarray.jl:1069
; │││┌ @ pointer.jl:65 within `unsafe_convert'
%27 = load i8*, i8** %18, align 8
; │││└
; │││┌ @ abstractarray.jl:1073 within `_memory_offset'
; ││││┌ @ int.jl:88 within `*'
%28 = shl i64 %26, 3
%29 = add i64 %28, -8
; │││└└
; │││┌ @ pointer.jl:159 within `+'
%30 = getelementptr i8, i8* %27, i64 %29
; │└└└
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:45 within `vload' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:45 @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:46
; ││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:427 within `load'
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:436 within `macro expansion'
%ptr.i = bitcast i8* %30 to <4 x double>*
%res.i = load <4 x double>, <4 x double>* %ptr.i, align 8
; └└└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/simdvec.jl:253 within `+'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:197 within `fadd' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:197
; ││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:206 within `macro expansion'
%31 = fadd <4 x double> %value_phi5, %res.i
; └└└
; ┌ @ range.jl:661 within `iterate'
; │┌ @ promotion.jl:408 within `=='
%32 = icmp eq i64 %value_phi3, %13
; │└
%33 = add nuw i64 %value_phi3, 4
; └
br i1 %32, label %L98.loopexit, label %L41
L98.loopexit: ; preds = %L71
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:263 within `_preprocessindices'
store i64 %13, i64* %16, align 8
; └└└
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:657 within `vsum'
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/simdvec.jl:468 within `sum'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/simdvec.jl:458 within `reduce'
; ││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:787 within `reduce_fadd'
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:802 within `macro expansion'
br label %L98
L98: ; preds = %L98.loopexit, %L14
%value_phi10 = phi <4 x double> [ zeroinitializer, %L14 ], [ %31, %L98.loopexit ]
%res.i13 = call double @llvm.experimental.vector.reduce.v2.fadd.f64.v4f64(double 0.000000e+00, <4 x double> %value_phi10)
; └└└└
ret double %res.i13
L102: ; preds = %top
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:651 within `vsum'
store {}* inttoptr (i64 139823557885712 to {}*), {}** %1, align 8
%34 = call nonnull {}* @jl_apply_generic({}* inttoptr (i64 139823599850656 to {}*), {}** nonnull %1, i32 1)
call void @jl_throw({}* %34)
unreachable
}
.text
; ┌ @ runtests.jl:651 within `vsum'
; │┌ @ abstractarray.jl:206 within `length'
; ││┌ @ subarray.jl:63 within `size'
; │││┌ @ subarray.jl:426 within `axes'
; ││││┌ @ subarray.jl:431 within `_indices_sub'
; │││││┌ @ abstractarray.jl:99 within `unsafe_indices'
; ││││││┌ @ range.jl:546 within `unsafe_length'
; │││││││┌ @ runtests.jl:650 within `-'
pushq %r15
pushq %r14
pushq %rbx
subq $16, %rsp
; │││││││└
; │││││││┌ @ int.jl:86 within `-'
movq 16(%rdi), %rax
subq 8(%rdi), %rax
; │││││││└
; │││││││┌ @ int.jl:87 within `+'
incq %rax
; ││││││└└
; ││││││┌ @ range.jl:330 within `OneTo' @ range.jl:321
; │││││││┌ @ promotion.jl:419 within `max'
movq %rax, %rcx
sarq $63, %rcx
andnq %rax, %rcx, %r15
; │└└└└└└└
; │┌ @ promotion.jl:408 within `=='
testb $3, %r15b
; │└
jne L251
; └
; ┌ @ runtests.jl within `vsum'
movq %rdi, %r14
; └
; ┌ @ runtests.jl:654 within `vsum'
; │┌ @ range.jl:22 within `Colon'
; ││┌ @ range.jl:24 within `_colon'
; │││┌ @ range.jl:260 within `StepRange' @ range.jl:208
movabsq $steprange_last, %rax
movl $1, %edi
movl $4, %esi
movq %r15, %rdx
movl $4, %ebx
callq *%rax
; │└└└
; │┌ @ range.jl:657 within `iterate'
testq %rax, %rax
; │└
jg L90
; └
; ┌ @ runtests.jl within `vsum'
vxorpd %xmm0, %xmm0, %xmm0
movb $1, %cl
; └
; ┌ @ runtests.jl:654 within `vsum'
testb %cl, %cl
jne L173
; └
; ┌ @ runtests.jl:655 within `vsum'
; │┌ @ arrayops.jl:286 within `getindex'
; ││┌ @ arrayops.jl:277 within `_pointer'
; │││┌ @ subarray.jl:412 within `pointer'
; ││││┌ @ int.jl within `+'
L90:
movq 24(%r14), %rdx
movq (%r14), %rcx
movq $-3, %rsi
vxorpd %xmm0, %xmm0, %xmm0
; │└└└└
; │┌ @ arrayops.jl:285 within `getindex'
; ││┌ @ arrayops.jl:263 within `_preprocessindices'
; │││┌ @ abstractarray.jl:566 within `checkbounds'
subq %rax, %rsi
shlq $3, %rdx
nopw %cs:(%rax,%rax)
; ││││ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; ││││┌ @ arrayops.jl:212 within `checkindex'
; │││││┌ @ int.jl:442 within `<='
L128:
leaq -3(%rbx), %rdi
testq %rdi, %rdi
; ││││└└
; ││││ @ abstractarray.jl:566 within `checkbounds'
jle L224
cmpq %r15, %rbx
jg L224
; │└└└
; │┌ @ abstractarray.jl within `getindex'
movq (%rcx), %rdi
; │└
; │┌ @ arrayops.jl:286 within `getindex'
; ││┌ @ arrayops.jl:45 within `vload' @ arrayops.jl:45 @ arrayops.jl:46
; │││┌ @ LLVM_intrinsics.jl:427 within `load'
; ││││┌ @ LLVM_intrinsics.jl:436 within `macro expansion'
addq %rdx, %rdi
; │└└└└
; │┌ @ simdvec.jl:253 within `+'
; ││┌ @ LLVM_intrinsics.jl:197 within `fadd' @ LLVM_intrinsics.jl:197
; │││┌ @ LLVM_intrinsics.jl:206 within `macro expansion'
vaddpd -32(%rdi,%rbx,8), %ymm0, %ymm0
; │└└└
; │┌ @ range.jl:661 within `iterate'
; ││┌ @ promotion.jl:408 within `=='
leaq 4(%rsi,%rbx), %rdi
addq $4, %rbx
cmpq $4, %rdi
; │└└
jne L128
; │┌ @ arrayops.jl:285 within `getindex'
; ││┌ @ arrayops.jl:263 within `_preprocessindices'
movq %rax, (%rsp)
; └└└
; ┌ @ arrayops.jl within `vsum'
L173:
vxorpd %xmm1, %xmm1, %xmm1
; └
; ┌ @ runtests.jl:657 within `vsum'
; │┌ @ simdvec.jl:468 within `sum'
; ││┌ @ simdvec.jl:458 within `reduce'
; │││┌ @ LLVM_intrinsics.jl:787 within `reduce_fadd'
; ││││┌ @ LLVM_intrinsics.jl:802 within `macro expansion'
vpermilpd $1, %xmm0, %xmm2 # xmm2 = xmm0[1,0]
vaddsd %xmm1, %xmm0, %xmm1
vextractf128 $1, %ymm0, %xmm0
vaddsd %xmm2, %xmm1, %xmm1
vaddsd %xmm0, %xmm1, %xmm1
vpermilpd $1, %xmm0, %xmm0 # xmm0 = xmm0[1,0]
vaddsd %xmm0, %xmm1, %xmm0
; │└└└└
addq $16, %rsp
popq %rbx
popq %r14
popq %r15
vzeroupper
retq
; └
; ┌ @ runtests.jl:655 within `vsum'
; │┌ @ arrayops.jl:285 within `getindex'
; ││┌ @ arrayops.jl:263 within `_preprocessindices'
L224:
movq %rdi, (%rsp)
; │││┌ @ abstractarray.jl:566 within `checkbounds'
movabsq $throw_boundserror, %rax
movq %rsp, %rsi
movq %r14, %rdi
vzeroupper
callq *%rax
ud2
; └└└└
; ┌ @ abstractarray.jl within `vsum'
L251:
movabsq $139823557885712, %rax # imm = 0x7F2B357FBF10
movabsq $jl_system_image_data, %rdi
leaq 8(%rsp), %rsi
; └
; ┌ @ runtests.jl:651 within `vsum'
movl $1, %edx
movq %rax, 8(%rsp)
movabsq $jl_apply_generic, %rax
callq *%rax
movabsq $jl_throw, %rcx
movq %rax, %rdi
callq *%rcx
nopl (%rax)
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:723 within `vcompress!'
define nonnull {}* @"japi1_vcompress!_4269"({}* %0, {}** %1, i32 %2) #0 {
top:
%3 = alloca {}*, align 8
%4 = alloca {}**, align 8
store volatile {}** %1, {}*** %4, align 8
%5 = alloca [1 x [1 x i64]], align 8
%6 = alloca [1 x [1 x [1 x i64]]], align 8
%7 = alloca [1 x i64], align 8
%8 = alloca [1 x [1 x i64]], align 8
%9 = alloca [1 x [1 x [1 x i64]]], align 8
%10 = alloca [1 x i64], align 8
%11 = alloca [1 x [2 x i64]], align 8
%12 = load {}*, {}** %1, align 8
%13 = getelementptr inbounds {}*, {}** %1, i64 1
%14 = load {}*, {}** %13, align 8
%15 = getelementptr inbounds {}*, {}** %1, i64 2
%16 = load {}*, {}** %15, align 8
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724
; ┌ @ abstractarray.jl:75 within `axes'
; │┌ @ array.jl:155 within `size'
%17 = bitcast {}* %16 to {}**
%18 = getelementptr inbounds {}*, {}** %17, i64 3
%19 = bitcast {}** %18 to i64*
%20 = load i64, i64* %19, align 8
%21 = bitcast {}* %12 to {}**
%22 = getelementptr inbounds {}*, {}** %21, i64 3
%23 = bitcast {}** %22 to i64*
%24 = load i64, i64* %23, align 8
; └└
; ┌ @ tuple.jl:328 within `=='
; │┌ @ tuple.jl:332 within `_eq'
; ││┌ @ range.jl:789 within `=='
switch i64 %24, label %L16 [
i64 0, label %L9
i64 1, label %L13
]
L9: ; preds = %top
; │││┌ @ range.jl:506 within `isempty'
; ││││┌ @ operators.jl:305 within `>'
; │││││┌ @ int.jl:83 within `<'
%25 = icmp eq i64 %20, 0
; │││└└└
br label %L19
L13: ; preds = %top
; ││└
; ││┌ @ range.jl:790 within `=='
; │││┌ @ range.jl:803 within `_has_length_one'
; ││││┌ @ promotion.jl:408 within `=='
%26 = icmp eq i64 %20, 1
; │││└└
br label %L19
L16: ; preds = %top
; ││└
; ││┌ @ range.jl:791 within `==' @ promotion.jl:408
%27 = icmp eq i64 %24, %20
; │││ @ range.jl:791 within `=='
br label %L19
L19: ; preds = %L16, %L13, %L9
%value_phi.in = phi i1 [ %25, %L9 ], [ %26, %L13 ], [ %27, %L16 ]
; │└└
; │┌ @ tuple.jl:333 within `_eq'
%28 = and i1 %value_phi.in, icmp ne ({}* inttoptr (i64 139823581746576 to {}*), {}* inttoptr (i64 139823581986384 to {}*))
; └└
br i1 %28, label %L27, label %L234
L27: ; preds = %L19
; ┌ @ abstractarray.jl:75 within `axes'
; │┌ @ array.jl:155 within `size'
%29 = bitcast {}* %14 to {}**
%30 = getelementptr inbounds {}*, {}** %29, i64 3
%31 = bitcast {}** %30 to i64*
%32 = load i64, i64* %31, align 8
; └└
; ┌ @ tuple.jl:328 within `=='
; │┌ @ tuple.jl:332 within `_eq'
; ││┌ @ range.jl:789 within `=='
switch i64 %20, label %L39 [
i64 0, label %L32
i64 1, label %L36
]
L32: ; preds = %L27
; │││┌ @ range.jl:506 within `isempty'
; ││││┌ @ operators.jl:305 within `>'
; │││││┌ @ int.jl:83 within `<'
%33 = icmp eq i64 %32, 0
; │││└└└
br label %L42
L36: ; preds = %L27
; ││└
; ││┌ @ range.jl:790 within `=='
; │││┌ @ range.jl:803 within `_has_length_one'
; ││││┌ @ promotion.jl:408 within `=='
%34 = icmp eq i64 %32, 1
; │││└└
br label %L42
L39: ; preds = %L27
; ││└
; ││┌ @ range.jl:791 within `==' @ promotion.jl:408
%35 = icmp eq i64 %20, %32
; │││ @ range.jl:791 within `=='
br label %L42
L42: ; preds = %L39, %L36, %L32
%value_phi2.in = phi i1 [ %33, %L32 ], [ %34, %L36 ], [ %35, %L39 ]
; │└└
; │┌ @ tuple.jl:333 within `_eq'
%36 = and i1 %value_phi2.in, icmp ne ({}* inttoptr (i64 139823581746576 to {}*), {}* inttoptr (i64 139823581986384 to {}*))
; └└
br i1 %36, label %L53, label %L234
L53: ; preds = %L42
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:725
; ┌ @ int.jl:87 within `+'
%37 = add nsw i64 %20, -3
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:729
; ┌ @ int.jl:442 within `<='
%38 = icmp ult i64 %20, 4
; └
br i1 %38, label %L218.preheader, label %L64.lr.ph
L64.lr.ph: ; preds = %L53
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:730
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl within `_preprocessindices'
%39 = getelementptr inbounds [1 x [1 x i64]], [1 x [1 x i64]]* %5, i64 0, i64 0, i64 0
; └└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:273 within `_pointer'
; ││┌ @ indices.jl:457 within `LinearIndices' @ indices.jl:448 @ indices.jl:0
%.sroa.026.0..sroa_idx = getelementptr inbounds [1 x [1 x [1 x i64]]], [1 x [1 x [1 x i64]]]* %6, i64 0, i64 0, i64 0, i64 0
; ││└
; ││┌ @ indices.jl within `getindex'
%40 = getelementptr inbounds [1 x i64], [1 x i64]* %7, i64 0, i64 0
; └└└
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:731
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl within `_preprocessindices'
%41 = getelementptr inbounds [1 x [1 x i64]], [1 x [1 x i64]]* %8, i64 0, i64 0, i64 0
; └└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:273 within `_pointer'
; ││┌ @ indices.jl:457 within `LinearIndices' @ indices.jl:448 @ indices.jl:0
%.sroa.023.0..sroa_idx = getelementptr inbounds [1 x [1 x [1 x i64]]], [1 x [1 x [1 x i64]]]* %9, i64 0, i64 0, i64 0, i64 0
; ││└
; ││┌ @ indices.jl within `getindex'
%42 = getelementptr inbounds [1 x i64], [1 x i64]* %10, i64 0, i64 0
; └└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl within `vstorec'
%.sroa.0.0..sroa_idx = getelementptr inbounds [1 x [2 x i64]], [1 x [2 x i64]]* %11, i64 0, i64 0, i64 0
%.sroa.2.0..sroa_idx22 = getelementptr inbounds [1 x [2 x i64]], [1 x [2 x i64]]* %11, i64 0, i64 0, i64 1
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:729
br label %L64
L60.L218.preheader_crit_edge: ; preds = %L197
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:730
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:263 within `_preprocessindices'
store i64 %value_phi654, i64* %39, align 8
; └└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:273 within `_pointer'
; ││┌ @ indices.jl:457 within `LinearIndices' @ indices.jl:448 @ indices.jl:448
store i64 %60, i64* %.sroa.026.0..sroa_idx, align 8
; ││└
; ││┌ @ indices.jl:476 within `getindex'
store i64 %value_phi654, i64* %40, align 8
; └└└
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:731
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:263 within `_preprocessindices'
store i64 %value_phi654, i64* %41, align 8
; └└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:273 within `_pointer'
; ││┌ @ indices.jl:457 within `LinearIndices' @ indices.jl:448 @ indices.jl:448
store i64 %70, i64* %.sroa.023.0..sroa_idx, align 8
; ││└
; ││┌ @ indices.jl:476 within `getindex'
store i64 %value_phi654, i64* %42, align 8
; └└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:101 within `vstorec'
store i64 %value_phi553, i64* %.sroa.0.0..sroa_idx, align 8
store i64 %76, i64* %.sroa.2.0..sroa_idx22, align 8
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:735
; ┌ @ abstractarray.jl:303 within `lastindex'
; │┌ @ abstractarray.jl:268 within `eachindex'
; ││┌ @ abstractarray.jl:95 within `axes1'
; │││┌ @ abstractarray.jl:75 within `axes'
; ││││┌ @ array.jl:155 within `size'
%.pre = load i64, i64* %19, align 8
; └└└└└
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:729
br label %L218.preheader
L218.preheader: ; preds = %L60.L218.preheader_crit_edge, %L53
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:735
; ┌ @ abstractarray.jl:303 within `lastindex'
; │┌ @ abstractarray.jl:268 within `eachindex'
; ││┌ @ abstractarray.jl:95 within `axes1'
; │││┌ @ abstractarray.jl:75 within `axes'
; ││││┌ @ array.jl:155 within `size'
%43 = phi i64 [ %.pre, %L60.L218.preheader_crit_edge ], [ %20, %L53 ]
%value_phi5.lcssa = phi i64 [ %98, %L60.L218.preheader_crit_edge ], [ 1, %L53 ]
%value_phi6.lcssa = phi i64 [ %99, %L60.L218.preheader_crit_edge ], [ 1, %L53 ]
; └└└└└
; ┌ @ int.jl:442 within `<='
%44 = icmp sgt i64 %value_phi6.lcssa, %43
; └
br i1 %44, label %L237, label %L225.lr.ph
L225.lr.ph: ; preds = %L218.preheader
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:736
; ┌ @ array.jl within `getindex'
%45 = bitcast {}* %14 to { i8*, i64, i16, i16, i32 }*
%46 = getelementptr inbounds { i8*, i64, i16, i16, i32 }, { i8*, i64, i16, i16, i32 }* %45, i64 0, i32 1
%47 = load i64, i64* %46, align 8
%48 = bitcast {}* %14 to i8**
%49 = load i8*, i8** %48, align 8
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:737
; ┌ @ array.jl within `getindex'
%50 = bitcast {}* %16 to { i8*, i64, i16, i16, i32 }*
%51 = getelementptr inbounds { i8*, i64, i16, i16, i32 }, { i8*, i64, i16, i16, i32 }* %50, i64 0, i32 1
%52 = load i64, i64* %51, align 8
; └
; ┌ @ array.jl within `setindex!'
%53 = bitcast {}* %12 to { i8*, i64, i16, i16, i32 }*
%54 = getelementptr inbounds { i8*, i64, i16, i16, i32 }, { i8*, i64, i16, i16, i32 }* %53, i64 0, i32 1
%55 = load i64, i64* %54, align 8
; └
; ┌ @ array.jl within `getindex'
%56 = bitcast {}* %16 to double**
%57 = load double*, double** %56, align 8
; └
; ┌ @ array.jl within `setindex!'
%58 = bitcast {}* %12 to double**
%59 = load double*, double** %58, align 8
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:735
br label %L225
L64: ; preds = %L197.L64_crit_edge, %L64.lr.ph
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:730
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:263 within `_preprocessindices'
; ││┌ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; │││┌ @ abstractarray.jl:268 within `eachindex'
; ││││┌ @ abstractarray.jl:95 within `axes1'
; │││││┌ @ abstractarray.jl:75 within `axes'
; ││││││┌ @ array.jl:155 within `size'
%60 = phi i64 [ %32, %L64.lr.ph ], [ %.pre229, %L197.L64_crit_edge ]
%value_phi654 = phi i64 [ 1, %L64.lr.ph ], [ %99, %L197.L64_crit_edge ]
%value_phi553 = phi i64 [ 1, %L64.lr.ph ], [ %98, %L197.L64_crit_edge ]
; │││└└└└
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:212 within `checkindex'
%61 = add nuw nsw i64 %value_phi654, 3
%62 = icmp ugt i64 %61, %60
; │││└
; │││ @ abstractarray.jl:566 within `checkbounds'
br i1 %62, label %L83, label %L87
L83: ; preds = %L64
; ││└
store i64 %value_phi654, i64* %39, align 8
; ││┌ @ abstractarray.jl:566 within `checkbounds'
%63 = call nonnull {}* @j_throw_boundserror_4278({}* nonnull %14, [1 x [1 x i64]]* nocapture readonly %5)
call void @llvm.trap()
unreachable
L87: ; preds = %L64
; └└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:273 within `_pointer'
; ││┌ @ indices.jl:476 within `getindex'
; │││┌ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; ││││┌ @ abstractarray.jl:623 within `checkindex'
; │││││┌ @ int.jl:442 within `<='
%64 = icmp ugt i64 %value_phi654, %60
; ││││└└
; ││││ @ abstractarray.jl:566 within `checkbounds'
br i1 %64, label %L102, label %L106
L102: ; preds = %L87
; ││└└
; ││┌ @ indices.jl:457 within `LinearIndices' @ indices.jl:448 @ indices.jl:448
store i64 %60, i64* %.sroa.026.0..sroa_idx, align 8
; ││└
; ││┌ @ indices.jl:476 within `getindex'
store i64 %value_phi654, i64* %40, align 8
; │││┌ @ abstractarray.jl:566 within `checkbounds'
%65 = call nonnull {}* @j_throw_boundserror_4277([1 x [1 x [1 x i64]]]* nocapture readonly %6, [1 x i64]* nocapture readonly %7)
call void @llvm.trap()
unreachable
L106: ; preds = %L87
; ││└└
; ││┌ @ abstractarray.jl:1069 within `pointer'
; │││┌ @ pointer.jl:65 within `unsafe_convert'
%66 = bitcast {}* %14 to i8**
%67 = load i8*, i8** %66, align 8
; │││└
; │││┌ @ abstractarray.jl:1073 within `_memory_offset'
; ││││┌ @ int.jl:86 within `-'
%68 = add nsw i64 %value_phi654, -1
; │││└└
; │││┌ @ pointer.jl:159 within `+'
%69 = getelementptr i8, i8* %67, i64 %68
; │└└└
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:45 within `vload' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:45 @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:46
; ││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:427 within `load'
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:436 within `macro expansion'
%ptr.i = bitcast i8* %69 to <4 x i8>*
%res.i = load <4 x i8>, <4 x i8>* %ptr.i, align 1
; └└└└
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:731
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:263 within `_preprocessindices'
; ││┌ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; │││┌ @ abstractarray.jl:268 within `eachindex'
; ││││┌ @ abstractarray.jl:95 within `axes1'
; │││││┌ @ abstractarray.jl:75 within `axes'
; ││││││┌ @ array.jl:155 within `size'
%70 = load i64, i64* %19, align 8
; │││└└└└
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:212 within `checkindex'
%71 = icmp ugt i64 %61, %70
; │││└
; │││ @ abstractarray.jl:566 within `checkbounds'
br i1 %71, label %L137, label %L141
L137: ; preds = %L106
; ││└
store i64 %value_phi654, i64* %41, align 8
; ││┌ @ abstractarray.jl:566 within `checkbounds'
%72 = call nonnull {}* @j_throw_boundserror_4276({}* nonnull %16, [1 x [1 x i64]]* nocapture readonly %8)
call void @llvm.trap()
unreachable
L141: ; preds = %L106
; └└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:273 within `_pointer'
; ││┌ @ indices.jl:476 within `getindex'
; │││┌ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; ││││┌ @ abstractarray.jl:623 within `checkindex'
; │││││┌ @ int.jl:442 within `<='
%73 = icmp ugt i64 %value_phi654, %70
; ││││└└
; ││││ @ abstractarray.jl:566 within `checkbounds'
br i1 %73, label %L156, label %L160
L156: ; preds = %L141
; ││└└
; ││┌ @ indices.jl:457 within `LinearIndices' @ indices.jl:448 @ indices.jl:448
store i64 %70, i64* %.sroa.023.0..sroa_idx, align 8
; ││└
; ││┌ @ indices.jl:476 within `getindex'
store i64 %value_phi654, i64* %42, align 8
; │││┌ @ abstractarray.jl:566 within `checkbounds'
%74 = call nonnull {}* @j_throw_boundserror_4275([1 x [1 x [1 x i64]]]* nocapture readonly %9, [1 x i64]* nocapture readonly %10)
call void @llvm.trap()
unreachable
L160: ; preds = %L141
; └└└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:101 within `vstorec'
; │┌ @ range.jl:5 within `Colon'
; ││┌ @ range.jl:284 within `UnitRange'
; │││┌ @ range.jl:289 within `unitrange_last'
; ││││┌ @ operators.jl:352 within `>='
; │││││┌ @ int.jl:442 within `<='
%75 = icmp sgt i64 %value_phi553, 9223372036854775804
; ││││└└
%.v = select i1 %75, i64 -1, i64 3
%76 = add i64 %.v, %value_phi553
; │└└└
; │┌ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; ││┌ @ abstractarray.jl:268 within `eachindex'
; │││┌ @ abstractarray.jl:95 within `axes1'
; ││││┌ @ abstractarray.jl:75 within `axes'
; │││││┌ @ array.jl:155 within `size'
%77 = load i64, i64* %23, align 8
; ││└└└└
; ││┌ @ abstractarray.jl:628 within `checkindex'
; │││┌ @ range.jl:506 within `isempty'
; ││││┌ @ operators.jl:305 within `>'
; │││││┌ @ int.jl:83 within `<'
%78 = icmp slt i64 %76, %value_phi553
; │││└└└
; │││ @ abstractarray.jl:628 within `checkindex' @ abstractarray.jl:623
; │││┌ @ int.jl:442 within `<='
%79 = icmp sgt i64 %value_phi553, 0
%80 = icmp sle i64 %value_phi553, %77
; │││└
; │││┌ @ bool.jl:36 within `&'
%81 = and i1 %79, %80
; │││└
; │││┌ @ int.jl:442 within `<='
%82 = icmp sgt i64 %76, 0
%83 = icmp sle i64 %76, %77
; │││└
; │││┌ @ bool.jl:36 within `&'
%84 = and i1 %82, %83
; │││└
; │││ @ abstractarray.jl:628 within `checkindex'
; │││┌ @ bool.jl:36 within `&'
%85 = and i1 %81, %84
; │││└
; │││┌ @ bool.jl:37 within `|'
%86 = or i1 %78, %85
; ││└└
; ││ @ abstractarray.jl:566 within `checkbounds'
br i1 %86, label %L197, label %L194
L194: ; preds = %L160
; │└
store i64 %value_phi553, i64* %.sroa.0.0..sroa_idx, align 8
store i64 %76, i64* %.sroa.2.0..sroa_idx22, align 8
; │┌ @ abstractarray.jl:566 within `checkbounds'
%87 = call nonnull {}* @j_throw_boundserror_4274({}* nonnull %12, [1 x [2 x i64]]* nocapture readonly %11)
call void @llvm.trap()
unreachable
L197: ; preds = %L160
; └└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:286 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:273 within `_pointer'
; ││┌ @ abstractarray.jl:1069 within `pointer'
; │││┌ @ pointer.jl:65 within `unsafe_convert'
%88 = bitcast {}* %16 to i8**
%89 = load i8*, i8** %88, align 8
; │││└
; │││┌ @ abstractarray.jl:1073 within `_memory_offset'
; ││││┌ @ int.jl:88 within `*'
%90 = shl i64 %value_phi654, 3
%91 = add nsw i64 %90, -8
; │││└└
; │││┌ @ pointer.jl:159 within `+'
%92 = getelementptr i8, i8* %89, i64 %91
; │└└└
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:45 within `vload' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:45 @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:46
; ││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:427 within `load'
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:436 within `macro expansion'
%ptr.i29 = bitcast i8* %92 to <4 x double>*
%res.i30 = load <4 x double>, <4 x double>* %ptr.i29, align 8
; └└└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:103 within `vstorec'
; │┌ @ abstractarray.jl:1069 within `pointer'
; ││┌ @ pointer.jl:65 within `unsafe_convert'
%93 = bitcast {}* %12 to i8**
%94 = load i8*, i8** %93, align 8
; ││└
; ││┌ @ abstractarray.jl:1073 within `_memory_offset'
; │││┌ @ int.jl:88 within `*'
%95 = shl i64 %value_phi553, 3
%96 = add i64 %95, -8
; ││└└
; ││┌ @ pointer.jl:159 within `+'
%97 = getelementptr i8, i8* %94, i64 %96
; └└└
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:104 within `vstorec' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:96
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:519 within `maskedcompressstore'
; ││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:536 within `macro expansion'
%mask.i32 = trunc <4 x i8> %res.i to <4 x i1>
%ptr.i33 = bitcast i8* %97 to double*
call void @llvm.masked.compressstore.v4f64(<4 x double> %res.i30, double* %ptr.i33, <4 x i1> %mask.i32)
; └└└
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:732
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/simdvec.jl:468 within `sum'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/simdvec.jl:458 within `reduce'
; ││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:808 within `reduce_add'
; │││┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/LLVM_intrinsics.jl:838 within `macro expansion'
%maski.i = bitcast <4 x i1> %mask.i32 to i4
%maskipopcnt.i = call i4 @llvm.ctpop.i4(i4 %maski.i)
%res.i31 = zext i4 %maskipopcnt.i to i64
; └└└└
; ┌ @ int.jl:87 within `+'
%98 = add i64 %value_phi553, %res.i31
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:733
; ┌ @ int.jl:87 within `+'
%99 = add nuw nsw i64 %value_phi654, 4
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:729
; ┌ @ int.jl:442 within `<='
%100 = icmp sgt i64 %99, %37
; └
br i1 %100, label %L60.L218.preheader_crit_edge, label %L197.L64_crit_edge
L197.L64_crit_edge: ; preds = %L197
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:730
; ┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:285 within `getindex'
; │┌ @ /home/pkgeval/.julia/packages/SIMD/e6GgT/src/arrayops.jl:263 within `_preprocessindices'
; ││┌ @ abstractarray.jl:566 within `checkbounds' @ abstractarray.jl:551
; │││┌ @ abstractarray.jl:268 within `eachindex'
; ││││┌ @ abstractarray.jl:95 within `axes1'
; │││││┌ @ abstractarray.jl:75 within `axes'
; ││││││┌ @ array.jl:155 within `size'
%.pre229 = load i64, i64* %31, align 8
; └└└└└└└
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:729
br label %L64
L225: ; preds = %L230, %L225.lr.ph
%value_phi1451 = phi i64 [ %value_phi6.lcssa, %L225.lr.ph ], [ %104, %L230 ]
%value_phi1350 = phi i64 [ %value_phi5.lcssa, %L225.lr.ph ], [ %value_phi19, %L230 ]
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:736
; ┌ @ array.jl:809 within `getindex'
%101 = add i64 %value_phi1451, -1
%102 = icmp ult i64 %101, %47
br i1 %102, label %idxend, label %oob
L227: ; preds = %idxend
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:737
; ┌ @ array.jl:809 within `getindex'
%103 = icmp ult i64 %101, %52
br i1 %103, label %idxend16, label %oob15
L230: ; preds = %idxend18, %idxend
%value_phi19 = phi i64 [ %121, %idxend18 ], [ %value_phi1350, %idxend ]
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:740
; ┌ @ int.jl:87 within `+'
%104 = add nuw i64 %value_phi1451, 1
; └
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:735
; ┌ @ int.jl:442 within `<='
%105 = icmp sgt i64 %104, %43
; └
br i1 %105, label %L237, label %L225
L234: ; preds = %L42, %L19
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724
store {}* inttoptr (i64 139823507407152 to {}*), {}** %3, align 8
%106 = call nonnull {}* @jl_apply_generic({}* inttoptr (i64 139823599850656 to {}*), {}** nonnull %3, i32 1)
call void @jl_throw({}* %106)
unreachable
L237: ; preds = %L230, %L218.preheader
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!'
ret {}* %12
oob: ; preds = %L225
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:736
; ┌ @ array.jl:809 within `getindex'
%107 = alloca i64, align 8
store i64 %value_phi1451, i64* %107, align 8
call void @jl_bounds_error_ints({}* %14, i64* nonnull %107, i64 1)
unreachable
idxend: ; preds = %L225
%108 = getelementptr inbounds i8, i8* %49, i64 %101
%109 = load i8, i8* %108, align 1
%110 = and i8 %109, 1
%111 = icmp eq i8 %110, 0
; └
br i1 %111, label %L230, label %L227
oob15: ; preds = %L227
; @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:724 within `vcompress!' @ /home/pkgeval/.julia/packages/SIMD/e6GgT/test/runtests.jl:737
; ┌ @ array.jl:809 within `getindex'
%112 = alloca i64, align 8
store i64 %value_phi1451, i64* %112, align 8
call void @jl_bounds_error_ints({}* %16, i64* nonnull %112, i64 1)
unreachable
idxend16: ; preds = %L227
; └
; ┌ @ array.jl:847 within `setindex!'
%113 = add i64 %value_phi1350, -1
%114 = icmp ult i64 %113, %55
br i1 %114, label %idxend18, label %oob17
oob17: ; preds = %idxend16
%115 = alloca i64, align 8
store i64 %value_phi1350, i64* %115, align 8
call void @jl_bounds_error_ints({}* %12, i64* nonnull %115, i64 1)
unreachable
idxend18: ; preds = %idxend16
; └
; ┌ @ array.jl:809 within `getindex'
%116 = getelementptr inbounds double, double* %57, i64 %101
%117 = bitcast double* %116 to i64*
%118 = load i64, i64* %117, align 8
; └
; ┌ @ array.jl:847 within `setindex!'
%119 = getelementptr inbounds double, double* %59, i64 %113
%120 = bitcast double* %119 to i64*