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
|
; RUN: llvm-as < %s | llc -limit-float-precision=6 -march=x86 | \
; RUN: not grep exp | not grep log | not grep pow
; RUN: llvm-as < %s | llc -limit-float-precision=12 -march=x86 | \
; RUN: not grep exp | not grep log | not grep pow
; RUN: llvm-as < %s | llc -limit-float-precision=18 -march=x86 | \
; RUN: not grep exp | not grep log | not grep pow
target triple = "i386-apple-darwin9.5"
define float @f1(float %x) nounwind noinline {
entry:
%x_addr = alloca float ; <float*> [#uses=2]
%retval = alloca float ; <float*> [#uses=2]
%0 = alloca float ; <float*> [#uses=2]
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
store float %x, float* %x_addr
%1 = load float* %x_addr, align 4 ; <float> [#uses=1]
%2 = call float @llvm.exp.f32(float %1) ; <float> [#uses=1]
store float %2, float* %0, align 4
%3 = load float* %0, align 4 ; <float> [#uses=1]
store float %3, float* %retval, align 4
br label %return
return: ; preds = %entry
%retval1 = load float* %retval ; <float> [#uses=1]
ret float %retval1
}
declare float @llvm.exp.f32(float) nounwind readonly
define float @f2(float %x) nounwind noinline {
entry:
%x_addr = alloca float ; <float*> [#uses=2]
%retval = alloca float ; <float*> [#uses=2]
%0 = alloca float ; <float*> [#uses=2]
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
store float %x, float* %x_addr
%1 = load float* %x_addr, align 4 ; <float> [#uses=1]
%2 = call float @llvm.exp2.f32(float %1) ; <float> [#uses=1]
store float %2, float* %0, align 4
%3 = load float* %0, align 4 ; <float> [#uses=1]
store float %3, float* %retval, align 4
br label %return
return: ; preds = %entry
%retval1 = load float* %retval ; <float> [#uses=1]
ret float %retval1
}
declare float @llvm.exp2.f32(float) nounwind readonly
define float @f3(float %x) nounwind noinline {
entry:
%x_addr = alloca float ; <float*> [#uses=2]
%retval = alloca float ; <float*> [#uses=2]
%0 = alloca float ; <float*> [#uses=2]
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
store float %x, float* %x_addr
%1 = load float* %x_addr, align 4 ; <float> [#uses=1]
%2 = call float @llvm.pow.f32(float 1.000000e+01, float %1) ; <float> [#uses=1]
store float %2, float* %0, align 4
%3 = load float* %0, align 4 ; <float> [#uses=1]
store float %3, float* %retval, align 4
br label %return
return: ; preds = %entry
%retval1 = load float* %retval ; <float> [#uses=1]
ret float %retval1
}
declare float @llvm.pow.f32(float, float) nounwind readonly
define float @f4(float %x) nounwind noinline {
entry:
%x_addr = alloca float ; <float*> [#uses=2]
%retval = alloca float ; <float*> [#uses=2]
%0 = alloca float ; <float*> [#uses=2]
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
store float %x, float* %x_addr
%1 = load float* %x_addr, align 4 ; <float> [#uses=1]
%2 = call float @llvm.log.f32(float %1) ; <float> [#uses=1]
store float %2, float* %0, align 4
%3 = load float* %0, align 4 ; <float> [#uses=1]
store float %3, float* %retval, align 4
br label %return
return: ; preds = %entry
%retval1 = load float* %retval ; <float> [#uses=1]
ret float %retval1
}
declare float @llvm.log.f32(float) nounwind readonly
define float @f5(float %x) nounwind noinline {
entry:
%x_addr = alloca float ; <float*> [#uses=2]
%retval = alloca float ; <float*> [#uses=2]
%0 = alloca float ; <float*> [#uses=2]
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
store float %x, float* %x_addr
%1 = load float* %x_addr, align 4 ; <float> [#uses=1]
%2 = call float @llvm.log2.f32(float %1) ; <float> [#uses=1]
store float %2, float* %0, align 4
%3 = load float* %0, align 4 ; <float> [#uses=1]
store float %3, float* %retval, align 4
br label %return
return: ; preds = %entry
%retval1 = load float* %retval ; <float> [#uses=1]
ret float %retval1
}
declare float @llvm.log2.f32(float) nounwind readonly
define float @f6(float %x) nounwind noinline {
entry:
%x_addr = alloca float ; <float*> [#uses=2]
%retval = alloca float ; <float*> [#uses=2]
%0 = alloca float ; <float*> [#uses=2]
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
store float %x, float* %x_addr
%1 = load float* %x_addr, align 4 ; <float> [#uses=1]
%2 = call float @llvm.log10.f32(float %1) ; <float> [#uses=1]
store float %2, float* %0, align 4
%3 = load float* %0, align 4 ; <float> [#uses=1]
store float %3, float* %retval, align 4
br label %return
return: ; preds = %entry
%retval1 = load float* %retval ; <float> [#uses=1]
ret float %retval1
}
declare float @llvm.log10.f32(float) nounwind readonly
|