[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git] / llvm / test / Transforms / LoopVectorize / X86 / CostModel / interleaved-store-f64-stride-4.ll
blob14e76623b050679b4a59bce1bffc9c96e008a8b1
1 ; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py UTC_ARGS: --filter "LV: Found an estimated cost of [0-9]+ for VF [0-9]+ For instruction:\s*store double %v3, ptr %out3"
2 ; RUN: opt -passes=loop-vectorize -vectorizer-maximize-bandwidth -S -mattr=+sse2 --debug-only=loop-vectorize < %s 2>&1 | FileCheck %s --check-prefix=SSE2
3 ; RUN: opt -passes=loop-vectorize -vectorizer-maximize-bandwidth -S -mattr=+avx  --debug-only=loop-vectorize < %s 2>&1 | FileCheck %s --check-prefix=AVX1
4 ; RUN: opt -passes=loop-vectorize -vectorizer-maximize-bandwidth -S -mattr=+avx2 --debug-only=loop-vectorize < %s 2>&1 | FileCheck %s --check-prefix=AVX2
5 ; RUN: opt -passes=loop-vectorize -vectorizer-maximize-bandwidth -S -mattr=+avx512vl --debug-only=loop-vectorize < %s 2>&1 | FileCheck %s --check-prefix=AVX512
6 ; REQUIRES: asserts
8 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
9 target triple = "x86_64-unknown-linux-gnu"
11 @A = global [1024 x i8] zeroinitializer, align 128
12 @B = global [1024 x double] zeroinitializer, align 128
14 define void @test() {
15 ; SSE2-LABEL: 'test'
16 ; SSE2:  LV: Found an estimated cost of 1 for VF 1 For instruction: store double %v3, ptr %out3, align 8
17 ; SSE2:  LV: Found an estimated cost of 12 for VF 2 For instruction: store double %v3, ptr %out3, align 8
18 ; SSE2:  LV: Found an estimated cost of 24 for VF 4 For instruction: store double %v3, ptr %out3, align 8
19 ; SSE2:  LV: Found an estimated cost of 48 for VF 8 For instruction: store double %v3, ptr %out3, align 8
21 ; AVX1-LABEL: 'test'
22 ; AVX1:  LV: Found an estimated cost of 1 for VF 1 For instruction: store double %v3, ptr %out3, align 8
23 ; AVX1:  LV: Found an estimated cost of 12 for VF 2 For instruction: store double %v3, ptr %out3, align 8
24 ; AVX1:  LV: Found an estimated cost of 28 for VF 4 For instruction: store double %v3, ptr %out3, align 8
25 ; AVX1:  LV: Found an estimated cost of 56 for VF 8 For instruction: store double %v3, ptr %out3, align 8
26 ; AVX1:  LV: Found an estimated cost of 112 for VF 16 For instruction: store double %v3, ptr %out3, align 8
28 ; AVX2-LABEL: 'test'
29 ; AVX2:  LV: Found an estimated cost of 1 for VF 1 For instruction: store double %v3, ptr %out3, align 8
30 ; AVX2:  LV: Found an estimated cost of 8 for VF 2 For instruction: store double %v3, ptr %out3, align 8
31 ; AVX2:  LV: Found an estimated cost of 12 for VF 4 For instruction: store double %v3, ptr %out3, align 8
32 ; AVX2:  LV: Found an estimated cost of 28 for VF 8 For instruction: store double %v3, ptr %out3, align 8
33 ; AVX2:  LV: Found an estimated cost of 56 for VF 16 For instruction: store double %v3, ptr %out3, align 8
35 ; AVX512-LABEL: 'test'
36 ; AVX512:  LV: Found an estimated cost of 1 for VF 1 For instruction: store double %v3, ptr %out3, align 8
37 ; AVX512:  LV: Found an estimated cost of 5 for VF 2 For instruction: store double %v3, ptr %out3, align 8
38 ; AVX512:  LV: Found an estimated cost of 11 for VF 4 For instruction: store double %v3, ptr %out3, align 8
39 ; AVX512:  LV: Found an estimated cost of 22 for VF 8 For instruction: store double %v3, ptr %out3, align 8
40 ; AVX512:  LV: Found an estimated cost of 44 for VF 16 For instruction: store double %v3, ptr %out3, align 8
41 ; AVX512:  LV: Found an estimated cost of 88 for VF 32 For instruction: store double %v3, ptr %out3, align 8
43 entry:
44   br label %for.body
46 for.body:
47   %iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
49   %iv.0 = add nuw nsw i64 %iv, 0
50   %iv.1 = add nuw nsw i64 %iv, 1
51   %iv.2 = add nuw nsw i64 %iv, 2
52   %iv.3 = add nuw nsw i64 %iv, 3
54   %in = getelementptr inbounds [1024 x i8], ptr @A, i64 0, i64 %iv.0
55   %v.narrow = load i8, ptr %in
57   %v = uitofp i8 %v.narrow to double
59   %v0 = fadd double %v, 0.0
60   %v1 = fadd double %v, 1.0
61   %v2 = fadd double %v, 2.0
62   %v3 = fadd double %v, 3.0
64   %out0 = getelementptr inbounds [1024 x double], ptr @B, i64 0, i64 %iv.0
65   %out1 = getelementptr inbounds [1024 x double], ptr @B, i64 0, i64 %iv.1
66   %out2 = getelementptr inbounds [1024 x double], ptr @B, i64 0, i64 %iv.2
67   %out3 = getelementptr inbounds [1024 x double], ptr @B, i64 0, i64 %iv.3
69   store double %v0, ptr %out0
70   store double %v1, ptr %out1
71   store double %v2, ptr %out2
72   store double %v3, ptr %out3
74   %iv.next = add nuw nsw i64 %iv.0, 4
75   %cmp = icmp ult i64 %iv.next, 1024
76   br i1 %cmp, label %for.body, label %for.cond.cleanup
78 for.cond.cleanup:
79   ret void