2008-02-17 20:02:20 +00:00
|
|
|
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 > %t
|
2007-04-16 17:36:08 +00:00
|
|
|
; RUN: grep fadds %t
|
|
|
|
; RUN: grep faddd %t
|
|
|
|
; RUN: grep fmuls %t
|
|
|
|
; RUN: grep fmuld %t
|
Update this test. Due to dag combiner improvements, we now compile
f7/f11 to:
_f7:
eor r0, r0, #2, 2 @ -2147483648
bx lr
_f11:
bic r0, r0, #2, 2 @ -2147483648
bx lr
instead of:
_f7:
fmsr s0, r0
fnegs s0, s0
fmrs r0, s0
bx lr
_f11:
fmsr s0, r0
fabss s0, s0
fmrs r0, s0
bx lr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46423 91177308-0d34-0410-b5e6-96231b3b80d8
2008-01-27 23:26:37 +00:00
|
|
|
; RUN: grep eor %t
|
2007-04-16 17:36:08 +00:00
|
|
|
; RUN: grep fnegd %t
|
|
|
|
; RUN: grep fdivs %t
|
|
|
|
; RUN: grep fdivd %t
|
2007-01-19 09:20:23 +00:00
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define float @f1(float %a, float %b) {
|
2006-10-09 19:15:17 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp = add float %a, %b ; <float> [#uses=1]
|
2006-10-09 19:15:17 +00:00
|
|
|
ret float %tmp
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define double @f2(double %a, double %b) {
|
2006-10-09 19:15:17 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp = add double %a, %b ; <double> [#uses=1]
|
2006-10-09 19:15:17 +00:00
|
|
|
ret double %tmp
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define float @f3(float %a, float %b) {
|
2006-10-09 19:15:17 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp = mul float %a, %b ; <float> [#uses=1]
|
2006-10-09 19:15:17 +00:00
|
|
|
ret float %tmp
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define double @f4(double %a, double %b) {
|
2006-10-09 19:15:17 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp = mul double %a, %b ; <double> [#uses=1]
|
2006-10-09 19:15:17 +00:00
|
|
|
ret double %tmp
|
|
|
|
}
|
2006-10-10 19:35:01 +00:00
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define float @f5(float %a, float %b) {
|
2006-10-10 19:35:01 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp = sub float %a, %b ; <float> [#uses=1]
|
2006-10-10 19:35:01 +00:00
|
|
|
ret float %tmp
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define double @f6(double %a, double %b) {
|
2006-10-10 19:35:01 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp = sub double %a, %b ; <double> [#uses=1]
|
2006-10-10 19:35:01 +00:00
|
|
|
ret double %tmp
|
|
|
|
}
|
2006-10-13 17:37:35 +00:00
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define float @f7(float %a) {
|
2006-10-13 17:37:35 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp1 = sub float -0.000000e+00, %a ; <float> [#uses=1]
|
2006-10-13 17:37:35 +00:00
|
|
|
ret float %tmp1
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define double @f8(double %a) {
|
2006-10-13 17:37:35 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp1 = sub double -0.000000e+00, %a ; <double> [#uses=1]
|
2006-10-13 17:37:35 +00:00
|
|
|
ret double %tmp1
|
|
|
|
}
|
2006-10-16 21:50:04 +00:00
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define float @f9(float %a, float %b) {
|
2006-10-16 21:50:04 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp1 = fdiv float %a, %b ; <float> [#uses=1]
|
2006-10-16 21:50:04 +00:00
|
|
|
ret float %tmp1
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define double @f10(double %a, double %b) {
|
2006-10-16 21:50:04 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp1 = fdiv double %a, %b ; <double> [#uses=1]
|
2006-10-16 21:50:04 +00:00
|
|
|
ret double %tmp1
|
|
|
|
}
|
2006-10-17 20:33:13 +00:00
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define float @f11(float %a) {
|
2006-10-17 20:33:13 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp1 = call float @fabsf( float %a ) ; <float> [#uses=1]
|
2006-10-17 20:33:13 +00:00
|
|
|
ret float %tmp1
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
declare float @fabsf(float)
|
2006-10-17 20:33:13 +00:00
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
define double @f12(double %a) {
|
2006-10-17 20:33:13 +00:00
|
|
|
entry:
|
2008-02-17 20:02:20 +00:00
|
|
|
%tmp1 = call double @fabs( double %a ) ; <double> [#uses=1]
|
2006-10-17 20:33:13 +00:00
|
|
|
ret double %tmp1
|
|
|
|
}
|
|
|
|
|
2008-02-17 20:02:20 +00:00
|
|
|
declare double @fabs(double)
|