sincospow-vector-expansion.ll
3.56 KB
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
; RUN: llc -o - %s -verify-machineinstrs -mtriple=aarch64-linux-gnu -mattr=+neon | FileCheck %s
; RUN: llc -o - %s -verify-machineinstrs -mtriple=aarch64-linux-gnu \
; RUN: -mattr=+neon -global-isel -global-isel-abort=2 \
; RUN: -pass-remarks-missed=gisel* \
; RUN: 2>&1 | FileCheck %s --check-prefixes=FALLBACK,GISEL
; FALLBACK-NOT: remark{{.*}}test_cos_v2f32
define <2 x float> @test_cos_v2f64(<2 x double> %v1) {
; CHECK-LABEL: test_cos_v2f64:
; CHECK: bl cos
; CHECK: bl cos
; GISEL-LABEL: test_cos_v2f64:
; GISEL: bl cos
; GISEL: bl cos
%1 = call <2 x double> @llvm.cos.v2f64(<2 x double> %v1)
%2 = fptrunc <2 x double> %1 to <2 x float>
ret <2 x float> %2
}
; FALLBACK-NOT: remark{{.*}}test_sin_v2f32
define <2 x float> @test_sin_v2f64(<2 x double> %v1) {
; CHECK-LABEL: test_sin_v2f64:
; CHECK: bl sin
; CHECK: bl sin
; GISEL-LABEL: test_sin_v2f64:
; GISEL: bl sin
; GISEL: bl sin
%1 = call <2 x double> @llvm.sin.v2f64(<2 x double> %v1)
%2 = fptrunc <2 x double> %1 to <2 x float>
ret <2 x float> %2
}
define <2 x float> @test_pow_v2f64(<2 x double> %v1, <2 x double> %v2) {
; CHECK-LABEL: test_pow_v2f64:
; CHECK: bl pow
; CHECK: bl pow
%1 = call <2 x double> @llvm.pow.v2f64(<2 x double> %v1, <2 x double> %v2)
%2 = fptrunc <2 x double> %1 to <2 x float>
ret <2 x float> %2
}
declare <2 x double> @llvm.cos.v2f64(<2 x double>)
declare <2 x double> @llvm.sin.v2f64(<2 x double>)
declare <2 x double> @llvm.pow.v2f64(<2 x double>, <2 x double>)
; FALLBACK-NOT: remark{{.*}}test_cos_v2f32
define <2 x float> @test_cos_v2f32(<2 x float> %v1) {
; CHECK-LABEL: test_cos_v2f32:
; CHECK: bl cos
; CHECK: bl cos
; GISEL-LABEL: test_cos_v2f32:
; GISEL: bl cos
; GISEL: bl cos
%1 = call <2 x float> @llvm.cos.v2f32(<2 x float> %v1)
ret <2 x float> %1
}
; FALLBACK-NOT: remark{{.*}}test_sin_v2f32
define <2 x float> @test_sin_v2f32(<2 x float> %v1) {
; CHECK-LABEL: test_sin_v2f32:
; CHECK: bl sin
; CHECK: bl sin
; GISEL-LABEL: test_sin_v2f32:
; GISEL: bl sin
; GISEL: bl sin
%1 = call <2 x float> @llvm.sin.v2f32(<2 x float> %v1)
ret <2 x float> %1
}
define <2 x float> @test_pow_v2f32(<2 x float> %v1, <2 x float> %v2) {
; CHECK-LABEL: test_pow_v2f32:
; CHECK: bl pow
; CHECK: bl pow
%1 = call <2 x float> @llvm.pow.v2f32(<2 x float> %v1, <2 x float> %v2)
ret <2 x float> %1
}
declare <2 x float> @llvm.cos.v2f32(<2 x float>)
declare <2 x float> @llvm.sin.v2f32(<2 x float>)
declare <2 x float> @llvm.pow.v2f32(<2 x float>, <2 x float>)
; FALLBACK-NOT: remark{{.*}}test_cos_v4f32
define <4 x float> @test_cos_v4f32(<4 x float> %v1) {
; CHECK-LABEL: test_cos_v4f32:
; CHECK: bl cos
; CHECK: bl cos
; CHECK: bl cos
; CHECK: bl cos
; GISEL-LABEL: test_cos_v4f32:
; GISEL: bl cos
; GISEL: bl cos
; GISEL: bl cos
; GISEL: bl cos
%1 = call <4 x float> @llvm.cos.v4f32(<4 x float> %v1)
ret <4 x float> %1
}
; FALLBACK-NOT: remark{{.*}}test_sin_v4f32
define <4 x float> @test_sin_v4f32(<4 x float> %v1) {
; CHECK-LABEL: test_sin_v4f32:
; CHECK: bl sin
; CHECK: bl sin
; CHECK: bl sin
; CHECK: bl sin
; GISEL-LABEL: test_sin_v4f32:
; GISEL: bl sin
; GISEL: bl sin
; GISEL: bl sin
; GISEL: bl sin
%1 = call <4 x float> @llvm.sin.v4f32(<4 x float> %v1)
ret <4 x float> %1
}
define <4 x float> @test_pow_v4f32(<4 x float> %v1, <4 x float> %v2) {
; CHECK-LABEL: test_pow_v4f32:
; CHECK: bl pow
; CHECK: bl pow
; CHECK: bl pow
; CHECK: bl pow
%1 = call <4 x float> @llvm.pow.v4f32(<4 x float> %v1, <4 x float> %v2)
ret <4 x float> %1
}
declare <4 x float> @llvm.cos.v4f32(<4 x float>)
declare <4 x float> @llvm.sin.v4f32(<4 x float>)
declare <4 x float> @llvm.pow.v4f32(<4 x float>, <4 x float>)