diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-21 06:12:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-21 06:12:41 +0000 |
commit | 1c2a9b95dc73c6fd11052e384ea5b10d011abb66 (patch) | |
tree | 44422d54bef2ebd163b44d747d5952a7313a8b65 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 956db27a63a5f105c12787098dbe713747ed0528 (diff) |
Fold (x & 8) != 0 and (x & 8) == 8 into (x & 8) >> 3.
This turns this PPC code:
rlwinm r2, r3, 0, 28, 28
cmpwi cr7, r2, 8
mfcr r2
rlwinm r3, r2, 31, 31, 31
into this:
rlwinm r2, r3, 0, 28, 28
srwi r2, r2, 3
rlwinm r3, r2, 0, 31, 31
Next up, nuking the extra and.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21390 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 7e870e6c2f..b82d1028b4 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -507,6 +507,28 @@ SDOperand SelectionDAG::getSetCC(ISD::CondCode Cond, MVT::ValueType VT, // FIXME: Implement the rest of these. + + // Fold bit comparisons when we can. + if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && + VT == N1.getValueType() && N1.getOpcode() == ISD::AND) + if (ConstantSDNode *AndRHS = + dyn_cast<ConstantSDNode>(N1.getOperand(1))) { + if (Cond == ISD::SETNE && C2 == 0) {// (X & 8) != 0 --> (X & 8) >> 3 + // Perform the xform if the AND RHS is a single bit. + if ((AndRHS->getValue() & (AndRHS->getValue()-1)) == 0) { + return getNode(ISD::SRL, VT, N1, + getConstant(ExactLog2(AndRHS->getValue()), + TLI.getShiftAmountTy())); + } + } else if (Cond == ISD::SETEQ && C2 == AndRHS->getValue()) { + // (X & 8) == 8 --> (X & 8) >> 3 + // Perform the xform if C2 is a single bit. + if ((C2 & (C2-1)) == 0) { + return getNode(ISD::SRL, VT, N1, + getConstant(ExactLog2(C2),TLI.getShiftAmountTy())); + } + } + } } } else if (isa<ConstantSDNode>(N1.Val)) { // Ensure that the constant occurs on the RHS. |