diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2015-03-01 00:09:35 +0000 | 
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2015-03-01 00:09:35 +0000 | 
| commit | b8c907e2a7bb021d9f6a2c7ff70e42a8bd8af87d (patch) | |
| tree | 485d3e0c30724bcbd64c5b08ac9e34329f9b3aea /llvm/lib/CodeGen | |
| parent | d076b2a8791bb0627e312292f5bbaeb5b5b87130 (diff) | |
| download | bcm5719-llvm-b8c907e2a7bb021d9f6a2c7ff70e42a8bd8af87d.tar.gz bcm5719-llvm-b8c907e2a7bb021d9f6a2c7ff70e42a8bd8af87d.zip | |
avoid infinite looping when folding vector multiplies of constants (PR22698)
We were missing a check for the following fold in DAGCombiner:
// fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
If 'x' is also a constant, then we shouldn't do anything. Otherwise, we could end up swapping the operands back and forth forever.
This should fix:
http://llvm.org/bugs/show_bug.cgi?id=22698
Differential Revision: http://reviews.llvm.org/D7917
llvm-svn: 230884
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 19 | 
1 files changed, 14 insertions, 5 deletions
| diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 8722c624797..9e2b5afde1e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -7453,14 +7453,23 @@ SDValue DAGCombiner::visitFMUL(SDNode *N) {        // Fold scalars or any vector constants (not just splats).        // This fold is done in general by InstCombine, but extra fmul insts        // may have been generated during lowering. +      SDValue N00 = N0.getOperand(0);        SDValue N01 = N0.getOperand(1);        auto *BV1 = dyn_cast<BuildVectorSDNode>(N1); +      auto *BV00 = dyn_cast<BuildVectorSDNode>(N00);        auto *BV01 = dyn_cast<BuildVectorSDNode>(N01); -      if ((N1CFP && isConstOrConstSplatFP(N01)) || -          (BV1 && BV01 && BV1->isConstant() && BV01->isConstant())) { -        SDLoc SL(N); -        SDValue MulConsts = DAG.getNode(ISD::FMUL, SL, VT, N01, N1); -        return DAG.getNode(ISD::FMUL, SL, VT, N0.getOperand(0), MulConsts); +       +      // Check 1: Make sure that the first operand of the inner multiply is NOT +      // a constant. Otherwise, we may induce infinite looping. +      if (!(isConstOrConstSplatFP(N00) || (BV00 && BV00->isConstant()))) { +        // Check 2: Make sure that the second operand of the inner multiply and +        // the second operand of the outer multiply are constants. +        if ((N1CFP && isConstOrConstSplatFP(N01)) || +            (BV1 && BV01 && BV1->isConstant() && BV01->isConstant())) { +          SDLoc SL(N); +          SDValue MulConsts = DAG.getNode(ISD::FMUL, SL, VT, N01, N1); +          return DAG.getNode(ISD::FMUL, SL, VT, N00, MulConsts); +        }        }      } | 

