diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-18 03:06:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-18 03:06:49 +0000 |
commit | f03c90bee622b2749df9e9252d12b9d83e9d831c (patch) | |
tree | 4c716bc18cf48d2dcf1b1c9f7771dcdd043aa154 | |
parent | bf14f206327b45577c4f74bfc4929cbdf2e8d0f4 (diff) | |
download | bcm5719-llvm-f03c90bee622b2749df9e9252d12b9d83e9d831c.tar.gz bcm5719-llvm-f03c90bee622b2749df9e9252d12b9d83e9d831c.zip |
allow SRL to simplify its operands, as it doesn't demand all bits as input.
llvm-svn: 36245
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 20b9a588e2e..88596d65db3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -1728,7 +1728,7 @@ SDOperand DAGCombiner::visitSHL(SDNode *N) { // if (shl x, c) is known to be zero, return 0 if (TLI.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT))) return DAG.getConstant(0, VT); - if (SimplifyDemandedBits(SDOperand(N, 0))) + if (N1C && SimplifyDemandedBits(SDOperand(N, 0))) return SDOperand(N, 0); // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2) if (N1C && N0.getOpcode() == ISD::SHL && @@ -1907,6 +1907,12 @@ SDOperand DAGCombiner::visitSRL(SDNode *N) { return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT)); } } + + // fold operands of srl based on knowledge that the low bits are not + // demanded. + if (N1C && SimplifyDemandedBits(SDOperand(N, 0))) + return SDOperand(N, 0); + return SDOperand(); } |