diff options
| author | Owen Anderson <resistor@mac.com> | 2012-08-30 23:35:16 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2012-08-30 23:35:16 +0000 |
| commit | cc61f87cf730fec6785dc492fb6c71bc17c8f56b (patch) | |
| tree | 475feff20a5fa300a477731ab4b974fbf54760c0 /llvm/test | |
| parent | db482ef7a7b6851ddafd6dbd7ee11a509adc9e6e (diff) | |
| download | bcm5719-llvm-cc61f87cf730fec6785dc492fb6c71bc17c8f56b.tar.gz bcm5719-llvm-cc61f87cf730fec6785dc492fb6c71bc17c8f56b.zip | |
Teach the DAG combiner to turn chains of FADDs (x+x+x+x+...) into FMULs by constants. This is only enabled in unsafe FP math mode, since it does not preserve rounding effects for all such constants.
llvm-svn: 162956
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/X86/fp-fast.ll | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/fp-fast.ll b/llvm/test/CodeGen/X86/fp-fast.ll new file mode 100644 index 00000000000..61f59b44988 --- /dev/null +++ b/llvm/test/CodeGen/X86/fp-fast.ll @@ -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 +} + |

