diff options
| author | Florian Hahn <flo@fhahn.com> | 2019-09-10 13:10:28 +0000 | 
|---|---|---|
| committer | Florian Hahn <flo@fhahn.com> | 2019-09-10 13:10:28 +0000 | 
| commit | 18a1f0818b659cee13865b4fad2648d85984a4ed (patch) | |
| tree | 95f558a6c7cf821acdd94f31dc5c0220ef1f8700 /llvm/lib/Transforms | |
| parent | 8886d0134eac27d9f4116bc39c7c4696321b9007 (diff) | |
| download | bcm5719-llvm-18a1f0818b659cee13865b4fad2648d85984a4ed.tar.gz bcm5719-llvm-18a1f0818b659cee13865b4fad2648d85984a4ed.zip | |
[InstCombine] Use SimplifyFMulInst to simplify multiply in fma.
This allows us to fold fma's that multiply with 0.0. Also, the
multiply by 1.0 case is handled there as well. The fneg/fabs cases
are not handled by SimplifyFMulInst, so we need to keep them.
Reviewers: spatel, anemet, lebedev.ri
Reviewed By: spatel
Differential Revision: https://reviews.llvm.org/D67351
llvm-svn: 371518
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp index d304f98ceae..3863e5fcb8f 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -2258,9 +2258,11 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) {        return II;      } -    // fma x, 1, z -> fadd x, z -    if (match(Src1, m_FPOne())) { -      auto *FAdd = BinaryOperator::CreateFAdd(Src0, II->getArgOperand(2)); +    // Try to simplify the underlying FMul. +    if (Value *V = SimplifyFMulInst(II->getArgOperand(0), II->getArgOperand(1), +                                    II->getFastMathFlags(), +                                    SQ.getWithInstruction(II))) { +      auto *FAdd = BinaryOperator::CreateFAdd(V, II->getArgOperand(2));        FAdd->copyFastMathFlags(II);        return FAdd;      } | 

