forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Teach the DAG combiner to turn chains of FADDs (x+x+x+x+...) into FMU…
…Ls by constants. This is only enabled in unsafe FP math mode, since it does not preserve rounding effects for all such constants. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162956 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
2 changed files
with
159 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
; RUN: llc -march=x86-64 -mtriple=x86_64-apple-darwin -enable-unsafe-fp-math < %s | FileCheck %s | ||
|
||
; CHECK: test1 | ||
define float @test1(float %a) { | ||
; CHECK-NOT: vaddss | ||
; CHECK: vmulss | ||
; CHECK-NOT: vaddss | ||
; CHECK: ret | ||
%t1 = fadd float %a, %a | ||
%r = fadd float %t1, %t1 | ||
ret float %r | ||
} | ||
|
||
; CHECK: test2 | ||
define float @test2(float %a) { | ||
; CHECK-NOT: vaddss | ||
; CHECK: vmulss | ||
; CHECK-NOT: vaddss | ||
; CHECK: ret | ||
%t1 = fmul float 4.0, %a | ||
%t2 = fadd float %a, %a | ||
%r = fadd float %t1, %t2 | ||
ret float %r | ||
} | ||
|
||
; CHECK: test3 | ||
define float @test3(float %a) { | ||
; CHECK-NOT: vaddss | ||
; CHECK: vxorps | ||
; CHECK-NOT: vaddss | ||
; CHECK: ret | ||
%t1 = fmul float 2.0, %a | ||
%t2 = fadd float %a, %a | ||
%r = fsub float %t1, %t2 | ||
ret float %r | ||
} | ||
|