Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Analysis / CostModel / X86 / intrinsic-cost.ll
blobddcdafb8945af05b8e5428f05fc7429b82e8b1fb
1 ; RUN: opt -S -mtriple=x86_64-apple-darwin -mcpu=core2 -passes="print<cost-model>" 2>&1 -disable-output < %s | FileCheck %s -check-prefix=CORE2
2 ; RUN: opt -S -mtriple=x86_64-apple-darwin -mcpu=corei7 -passes="print<cost-model>" 2>&1 -disable-output < %s | FileCheck %s -check-prefix=COREI7
4 ; If SSE4.1 roundps instruction is available it is cheap to lower, otherwise
5 ; it'll be scalarized into calls which are expensive.
6 define void @test1(ptr nocapture %f) nounwind {
7 vector.ph:
8   br label %vector.body
10 vector.body:                                      ; preds = %vector.body, %vector.ph
11   %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ]
12   %0 = getelementptr inbounds float, ptr %f, i64 %index
13   %wide.load = load <4 x float>, ptr %0, align 4
14   %1 = call <4 x float> @llvm.ceil.v4f32(<4 x float> %wide.load)
15   store <4 x float> %1, ptr %0, align 4
16   %index.next = add i64 %index, 4
17   %2 = icmp eq i64 %index.next, 1024
18   br i1 %2, label %for.end, label %vector.body
20 for.end:                                          ; preds = %vector.body
21   ret void
23 ; CORE2: function 'test1'
24 ; CORE2: Cost Model: Found an estimated cost of 46 for instruction:   %1 = call <4 x float> @llvm.ceil.v4f32(<4 x float> %wide.load)
26 ; COREI7: function 'test1'
27 ; COREI7: Cost Model: Found an estimated cost of 1 for instruction:   %1 = call <4 x float> @llvm.ceil.v4f32(<4 x float> %wide.load)
31 declare <4 x float> @llvm.ceil.v4f32(<4 x float>)  nounwind readnone
33 define void @test2(ptr nocapture %f) nounwind {
34 vector.ph:
35   br label %vector.body
37 vector.body:                                      ; preds = %vector.body, %vector.ph
38   %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ]
39   %0 = getelementptr inbounds float, ptr %f, i64 %index
40   %wide.load = load <4 x float>, ptr %0, align 4
41   %1 = call <4 x float> @llvm.nearbyint.v4f32(<4 x float> %wide.load)
42   store <4 x float> %1, ptr %0, align 4
43   %index.next = add i64 %index, 4
44   %2 = icmp eq i64 %index.next, 1024
45   br i1 %2, label %for.end, label %vector.body
47 for.end:                                          ; preds = %vector.body
48   ret void
50 ; CORE2: function 'test2'
51 ; CORE2: Cost Model: Found an estimated cost of 46 for instruction:   %1 = call <4 x float> @llvm.nearbyint.v4f32(<4 x float> %wide.load)
53 ; COREI7: function 'test2'
54 ; COREI7: Cost Model: Found an estimated cost of 1 for instruction:   %1 = call <4 x float> @llvm.nearbyint.v4f32(<4 x float> %wide.load)
58 declare <4 x float> @llvm.nearbyint.v4f32(<4 x float>)  nounwind readnone
60 define void @test3(ptr nocapture %f, <4 x float> %b, <4 x float> %c) nounwind {
61 vector.ph:
62   br label %vector.body
64 vector.body:                                      ; preds = %vector.body, %vector.ph
65   %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ]
66   %0 = getelementptr inbounds float, ptr %f, i64 %index
67   %wide.load = load <4 x float>, ptr %0, align 4
68   %1 = call <4 x float> @llvm.fmuladd.v4f32(<4 x float> %wide.load, <4 x float> %b, <4 x float> %c)
69   store <4 x float> %1, ptr %0, align 4
70   %index.next = add i64 %index, 4
71   %2 = icmp eq i64 %index.next, 1024
72   br i1 %2, label %for.end, label %vector.body
74 for.end:                                          ; preds = %vector.body
75   ret void
77 ; CORE2: function 'test3'
78 ; CORE2: Cost Model: Found an estimated cost of 4 for instruction: %1 = call <4 x float> @llvm.fmuladd.v4f32(<4 x float> %wide.load, <4 x float> %b, <4 x float> %c)
80 ; COREI7: function 'test3'
81 ; COREI7: Cost Model: Found an estimated cost of 2 for instruction: %1 = call <4 x float> @llvm.fmuladd.v4f32(<4 x float> %wide.load, <4 x float> %b, <4 x float> %c)
85 declare <4 x float> @llvm.fmuladd.v4f32(<4 x float>, <4 x float>, <4 x float>) nounwind readnone