Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 1 | //===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===// |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Nate Begeman and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run |
| 11 | // both before and after the DAG is legalized. |
| 12 | // |
| 13 | // FIXME: Missing folds |
| 14 | // sdiv, udiv, srem, urem (X, const) where X is an integer can be expanded into |
| 15 | // a sequence of multiplies, shifts, and adds. This should be controlled by |
| 16 | // some kind of hint from the target that int div is expensive. |
| 17 | // various folds of mulh[s,u] by constants such as -1, powers of 2, etc. |
| 18 | // |
| 19 | // FIXME: Should add a corresponding version of fold AND with |
| 20 | // ZERO_EXTEND/SIGN_EXTEND by converting them to an ANY_EXTEND node which |
| 21 | // we don't have yet. |
| 22 | // |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 23 | // FIXME: select C, 16, 0 -> shr C, 4 |
| 24 | // FIXME: select C, pow2, pow2 -> something smart |
| 25 | // FIXME: trunc(select X, Y, Z) -> select X, trunc(Y), trunc(Z) |
| 26 | // FIXME: (select C, load A, load B) -> load (select C, A, B) |
| 27 | // FIXME: store -> load -> forward substitute |
| 28 | // FIXME: Dead stores -> nuke |
| 29 | // FIXME: shr X, (and Y,31) -> shr X, Y |
| 30 | // FIXME: TRUNC (LOAD) -> EXT_LOAD/LOAD(smaller) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 31 | // FIXME: mul (x, const) -> shifts + adds |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 32 | // FIXME: undef values |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 33 | // FIXME: zero extend when top bits are 0 -> drop it ? |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 34 | // FIXME: make truncate see through SIGN_EXTEND and AND |
| 35 | // FIXME: sext_in_reg(setcc) on targets that return zero or one, and where |
| 36 | // EVT != MVT::i1 can drop the sext. |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 37 | // FIXME: (sra (sra x, c1), c2) -> (sra x, c1+c2) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 38 | // FIXME: verify that getNode can't return extends with an operand whose type |
| 39 | // is >= to that of the extend. |
| 40 | // FIXME: divide by zero is currently left unfolded. do we want to turn this |
| 41 | // into an undef? |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 42 | // |
| 43 | //===----------------------------------------------------------------------===// |
| 44 | |
| 45 | #define DEBUG_TYPE "dagcombine" |
| 46 | #include "llvm/ADT/Statistic.h" |
| 47 | #include "llvm/CodeGen/SelectionDAG.h" |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Debug.h" |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 49 | #include "llvm/Support/MathExtras.h" |
| 50 | #include "llvm/Target/TargetLowering.h" |
Chris Lattner | a500fc6 | 2005-09-09 23:53:39 +0000 | [diff] [blame] | 51 | #include <algorithm> |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 52 | #include <cmath> |
| 53 | using namespace llvm; |
| 54 | |
| 55 | namespace { |
| 56 | Statistic<> NodesCombined ("dagcombiner", "Number of dag nodes combined"); |
| 57 | |
| 58 | class DAGCombiner { |
| 59 | SelectionDAG &DAG; |
| 60 | TargetLowering &TLI; |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 61 | bool AfterLegalize; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 62 | |
| 63 | // Worklist of all of the nodes that need to be simplified. |
| 64 | std::vector<SDNode*> WorkList; |
| 65 | |
| 66 | /// AddUsersToWorkList - When an instruction is simplified, add all users of |
| 67 | /// the instruction to the work lists because they might get more simplified |
| 68 | /// now. |
| 69 | /// |
| 70 | void AddUsersToWorkList(SDNode *N) { |
| 71 | for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 72 | UI != UE; ++UI) |
| 73 | WorkList.push_back(*UI); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | /// removeFromWorkList - remove all instances of N from the worklist. |
| 77 | void removeFromWorkList(SDNode *N) { |
| 78 | WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N), |
| 79 | WorkList.end()); |
| 80 | } |
| 81 | |
| 82 | /// visit - call the node-specific routine that knows how to fold each |
| 83 | /// particular type of node. |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 84 | SDOperand visit(SDNode *N); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 85 | |
| 86 | // Visitation implementation - Implement dag node combining for different |
| 87 | // node types. The semantics are as follows: |
| 88 | // Return Value: |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 89 | // SDOperand.Val == 0 - No change was made |
| 90 | // otherwise - N should be replaced by the returned Operand. |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 91 | // |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 92 | SDOperand visitTokenFactor(SDNode *N); |
| 93 | SDOperand visitADD(SDNode *N); |
| 94 | SDOperand visitSUB(SDNode *N); |
| 95 | SDOperand visitMUL(SDNode *N); |
| 96 | SDOperand visitSDIV(SDNode *N); |
| 97 | SDOperand visitUDIV(SDNode *N); |
| 98 | SDOperand visitSREM(SDNode *N); |
| 99 | SDOperand visitUREM(SDNode *N); |
| 100 | SDOperand visitMULHU(SDNode *N); |
| 101 | SDOperand visitMULHS(SDNode *N); |
| 102 | SDOperand visitAND(SDNode *N); |
| 103 | SDOperand visitOR(SDNode *N); |
| 104 | SDOperand visitXOR(SDNode *N); |
| 105 | SDOperand visitSHL(SDNode *N); |
| 106 | SDOperand visitSRA(SDNode *N); |
| 107 | SDOperand visitSRL(SDNode *N); |
| 108 | SDOperand visitCTLZ(SDNode *N); |
| 109 | SDOperand visitCTTZ(SDNode *N); |
| 110 | SDOperand visitCTPOP(SDNode *N); |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 111 | SDOperand visitSELECT(SDNode *N); |
| 112 | SDOperand visitSELECT_CC(SDNode *N); |
| 113 | SDOperand visitSETCC(SDNode *N); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 114 | SDOperand visitSIGN_EXTEND(SDNode *N); |
| 115 | SDOperand visitZERO_EXTEND(SDNode *N); |
| 116 | SDOperand visitSIGN_EXTEND_INREG(SDNode *N); |
| 117 | SDOperand visitTRUNCATE(SDNode *N); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 118 | |
| 119 | SDOperand visitFADD(SDNode *N); |
| 120 | SDOperand visitFSUB(SDNode *N); |
| 121 | SDOperand visitFMUL(SDNode *N); |
| 122 | SDOperand visitFDIV(SDNode *N); |
| 123 | SDOperand visitFREM(SDNode *N); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 124 | SDOperand visitSINT_TO_FP(SDNode *N); |
| 125 | SDOperand visitUINT_TO_FP(SDNode *N); |
| 126 | SDOperand visitFP_TO_SINT(SDNode *N); |
| 127 | SDOperand visitFP_TO_UINT(SDNode *N); |
| 128 | SDOperand visitFP_ROUND(SDNode *N); |
| 129 | SDOperand visitFP_ROUND_INREG(SDNode *N); |
| 130 | SDOperand visitFP_EXTEND(SDNode *N); |
| 131 | SDOperand visitFNEG(SDNode *N); |
| 132 | SDOperand visitFABS(SDNode *N); |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 133 | SDOperand visitBRCOND(SDNode *N); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 134 | SDOperand visitBRCONDTWOWAY(SDNode *N); |
| 135 | SDOperand visitBR_CC(SDNode *N); |
| 136 | SDOperand visitBRTWOWAY_CC(SDNode *N); |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 137 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 138 | SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2); |
| 139 | SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2, |
| 140 | SDOperand N3, ISD::CondCode CC); |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 141 | SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1, |
| 142 | ISD::CondCode Cond); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 143 | public: |
| 144 | DAGCombiner(SelectionDAG &D) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 145 | : DAG(D), TLI(D.getTargetLoweringInfo()), AfterLegalize(false) {} |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 146 | |
| 147 | /// Run - runs the dag combiner on all nodes in the work list |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 148 | void Run(bool RunningAfterLegalize); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 149 | }; |
| 150 | } |
| 151 | |
| 152 | /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use |
| 153 | /// this predicate to simplify operations downstream. V and Mask are known to |
| 154 | /// be the same type. |
| 155 | static bool MaskedValueIsZero(const SDOperand &Op, uint64_t Mask, |
| 156 | const TargetLowering &TLI) { |
| 157 | unsigned SrcBits; |
| 158 | if (Mask == 0) return true; |
| 159 | |
| 160 | // If we know the result of a setcc has the top bits zero, use this info. |
| 161 | switch (Op.getOpcode()) { |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 162 | case ISD::Constant: |
| 163 | return (cast<ConstantSDNode>(Op)->getValue() & Mask) == 0; |
| 164 | case ISD::SETCC: |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 165 | // FIXME: teach this about non ZeroOrOne values, such as 0 or -1 |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 166 | return ((Mask & 1) == 0) && |
| 167 | TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult; |
| 168 | case ISD::ZEXTLOAD: |
| 169 | SrcBits = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(3))->getVT()); |
| 170 | return (Mask & ((1ULL << SrcBits)-1)) == 0; // Returning only the zext bits. |
| 171 | case ISD::ZERO_EXTEND: |
| 172 | SrcBits = MVT::getSizeInBits(Op.getOperand(0).getValueType()); |
| 173 | return MaskedValueIsZero(Op.getOperand(0),Mask & ((1ULL << SrcBits)-1),TLI); |
| 174 | case ISD::AssertZext: |
| 175 | SrcBits = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT()); |
| 176 | return (Mask & ((1ULL << SrcBits)-1)) == 0; // Returning only the zext bits. |
| 177 | case ISD::AND: |
| 178 | // (X & C1) & C2 == 0 iff C1 & C2 == 0. |
| 179 | if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1))) |
| 180 | return MaskedValueIsZero(Op.getOperand(0),AndRHS->getValue() & Mask, TLI); |
| 181 | // FALL THROUGH |
| 182 | case ISD::OR: |
| 183 | case ISD::XOR: |
| 184 | return MaskedValueIsZero(Op.getOperand(0), Mask, TLI) && |
| 185 | MaskedValueIsZero(Op.getOperand(1), Mask, TLI); |
| 186 | case ISD::SELECT: |
| 187 | return MaskedValueIsZero(Op.getOperand(1), Mask, TLI) && |
| 188 | MaskedValueIsZero(Op.getOperand(2), Mask, TLI); |
| 189 | case ISD::SELECT_CC: |
| 190 | return MaskedValueIsZero(Op.getOperand(2), Mask, TLI) && |
| 191 | MaskedValueIsZero(Op.getOperand(3), Mask, TLI); |
| 192 | case ISD::SRL: |
| 193 | // (ushr X, C1) & C2 == 0 iff X & (C2 << C1) == 0 |
| 194 | if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 195 | uint64_t NewVal = Mask << ShAmt->getValue(); |
| 196 | SrcBits = MVT::getSizeInBits(Op.getValueType()); |
| 197 | if (SrcBits != 64) NewVal &= (1ULL << SrcBits)-1; |
| 198 | return MaskedValueIsZero(Op.getOperand(0), NewVal, TLI); |
| 199 | } |
| 200 | return false; |
| 201 | case ISD::SHL: |
| 202 | // (ushl X, C1) & C2 == 0 iff X & (C2 >> C1) == 0 |
| 203 | if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 204 | uint64_t NewVal = Mask >> ShAmt->getValue(); |
| 205 | return MaskedValueIsZero(Op.getOperand(0), NewVal, TLI); |
| 206 | } |
| 207 | return false; |
| 208 | case ISD::CTTZ: |
| 209 | case ISD::CTLZ: |
| 210 | case ISD::CTPOP: |
| 211 | // Bit counting instructions can not set the high bits of the result |
| 212 | // register. The max number of bits sets depends on the input. |
| 213 | return (Mask & (MVT::getSizeInBits(Op.getValueType())*2-1)) == 0; |
| 214 | |
| 215 | // TODO we could handle some SRA cases here. |
| 216 | default: break; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 217 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 218 | return false; |
| 219 | } |
| 220 | |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 221 | // isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc |
| 222 | // that selects between the values 1 and 0, making it equivalent to a setcc. |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 223 | // Also, set the incoming LHS, RHS, and CC references to the appropriate |
| 224 | // nodes based on the type of node we are checking. This simplifies life a |
| 225 | // bit for the callers. |
| 226 | static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS, |
| 227 | SDOperand &CC) { |
| 228 | if (N.getOpcode() == ISD::SETCC) { |
| 229 | LHS = N.getOperand(0); |
| 230 | RHS = N.getOperand(1); |
| 231 | CC = N.getOperand(2); |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 232 | return true; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 233 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 234 | if (N.getOpcode() == ISD::SELECT_CC && |
| 235 | N.getOperand(2).getOpcode() == ISD::Constant && |
| 236 | N.getOperand(3).getOpcode() == ISD::Constant && |
| 237 | cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 && |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 238 | cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) { |
| 239 | LHS = N.getOperand(0); |
| 240 | RHS = N.getOperand(1); |
| 241 | CC = N.getOperand(4); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 242 | return true; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 243 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 244 | return false; |
| 245 | } |
| 246 | |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 247 | // isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only |
| 248 | // one use. If this is true, it allows the users to invert the operation for |
| 249 | // free when it is profitable to do so. |
| 250 | static bool isOneUseSetCC(SDOperand N) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 251 | SDOperand N0, N1, N2; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 252 | if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse()) |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 253 | return true; |
| 254 | return false; |
| 255 | } |
| 256 | |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 257 | // FIXME: This should probably go in the ISD class rather than being duplicated |
| 258 | // in several files. |
| 259 | static bool isCommutativeBinOp(unsigned Opcode) { |
| 260 | switch (Opcode) { |
| 261 | case ISD::ADD: |
| 262 | case ISD::MUL: |
| 263 | case ISD::AND: |
| 264 | case ISD::OR: |
| 265 | case ISD::XOR: return true; |
| 266 | default: return false; // FIXME: Need commutative info for user ops! |
| 267 | } |
| 268 | } |
| 269 | |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 270 | void DAGCombiner::Run(bool RunningAfterLegalize) { |
| 271 | // set the instance variable, so that the various visit routines may use it. |
| 272 | AfterLegalize = RunningAfterLegalize; |
| 273 | |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 274 | // Add all the dag nodes to the worklist. |
| 275 | WorkList.insert(WorkList.end(), DAG.allnodes_begin(), DAG.allnodes_end()); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 276 | |
Chris Lattner | 9503859 | 2005-10-05 06:35:28 +0000 | [diff] [blame] | 277 | // Create a dummy node (which is not added to allnodes), that adds a reference |
| 278 | // to the root node, preventing it from being deleted, and tracking any |
| 279 | // changes of the root. |
| 280 | HandleSDNode Dummy(DAG.getRoot()); |
| 281 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 282 | // while the worklist isn't empty, inspect the node on the end of it and |
| 283 | // try and combine it. |
| 284 | while (!WorkList.empty()) { |
| 285 | SDNode *N = WorkList.back(); |
| 286 | WorkList.pop_back(); |
| 287 | |
| 288 | // If N has no uses, it is dead. Make sure to revisit all N's operands once |
Chris Lattner | 9503859 | 2005-10-05 06:35:28 +0000 | [diff] [blame] | 289 | // N is deleted from the DAG, since they too may now be dead or may have a |
| 290 | // reduced number of uses, allowing other xforms. |
| 291 | if (N->use_empty() && N != &Dummy) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 292 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 293 | WorkList.push_back(N->getOperand(i).Val); |
| 294 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 295 | removeFromWorkList(N); |
Chris Lattner | 9503859 | 2005-10-05 06:35:28 +0000 | [diff] [blame] | 296 | DAG.DeleteNode(N); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 297 | continue; |
| 298 | } |
| 299 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 300 | SDOperand RV = visit(N); |
| 301 | if (RV.Val) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 302 | ++NodesCombined; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 303 | // If we get back the same node we passed in, rather than a new node or |
| 304 | // zero, we know that the node must have defined multiple values and |
| 305 | // CombineTo was used. Since CombineTo takes care of the worklist |
| 306 | // mechanics for us, we have no work to do in this case. |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 307 | if (RV.Val != N) { |
Nate Begeman | 2300f55 | 2005-09-07 00:15:36 +0000 | [diff] [blame] | 308 | DEBUG(std::cerr << "\nReplacing "; N->dump(); |
| 309 | std::cerr << "\nWith: "; RV.Val->dump(); |
| 310 | std::cerr << '\n'); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 311 | DAG.ReplaceAllUsesWith(N, std::vector<SDOperand>(1, RV)); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 312 | |
| 313 | // Push the new node and any users onto the worklist |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 314 | WorkList.push_back(RV.Val); |
| 315 | AddUsersToWorkList(RV.Val); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 316 | |
| 317 | // Nodes can end up on the worklist more than once. Make sure we do |
| 318 | // not process a node that has been replaced. |
| 319 | removeFromWorkList(N); |
Chris Lattner | 5c46f74 | 2005-10-05 06:11:08 +0000 | [diff] [blame] | 320 | |
| 321 | // Finally, since the node is now dead, remove it from the graph. |
| 322 | DAG.DeleteNode(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 323 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 324 | } |
| 325 | } |
Chris Lattner | 9503859 | 2005-10-05 06:35:28 +0000 | [diff] [blame] | 326 | |
| 327 | // If the root changed (e.g. it was a dead load, update the root). |
| 328 | DAG.setRoot(Dummy.getValue()); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 329 | } |
| 330 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 331 | SDOperand DAGCombiner::visit(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 332 | switch(N->getOpcode()) { |
| 333 | default: break; |
Nate Begeman | 4942a96 | 2005-09-01 00:33:32 +0000 | [diff] [blame] | 334 | case ISD::TokenFactor: return visitTokenFactor(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 335 | case ISD::ADD: return visitADD(N); |
| 336 | case ISD::SUB: return visitSUB(N); |
| 337 | case ISD::MUL: return visitMUL(N); |
| 338 | case ISD::SDIV: return visitSDIV(N); |
| 339 | case ISD::UDIV: return visitUDIV(N); |
| 340 | case ISD::SREM: return visitSREM(N); |
| 341 | case ISD::UREM: return visitUREM(N); |
| 342 | case ISD::MULHU: return visitMULHU(N); |
| 343 | case ISD::MULHS: return visitMULHS(N); |
| 344 | case ISD::AND: return visitAND(N); |
| 345 | case ISD::OR: return visitOR(N); |
| 346 | case ISD::XOR: return visitXOR(N); |
| 347 | case ISD::SHL: return visitSHL(N); |
| 348 | case ISD::SRA: return visitSRA(N); |
| 349 | case ISD::SRL: return visitSRL(N); |
| 350 | case ISD::CTLZ: return visitCTLZ(N); |
| 351 | case ISD::CTTZ: return visitCTTZ(N); |
| 352 | case ISD::CTPOP: return visitCTPOP(N); |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 353 | case ISD::SELECT: return visitSELECT(N); |
| 354 | case ISD::SELECT_CC: return visitSELECT_CC(N); |
| 355 | case ISD::SETCC: return visitSETCC(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 356 | case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N); |
| 357 | case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N); |
| 358 | case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N); |
| 359 | case ISD::TRUNCATE: return visitTRUNCATE(N); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 360 | case ISD::FADD: return visitFADD(N); |
| 361 | case ISD::FSUB: return visitFSUB(N); |
| 362 | case ISD::FMUL: return visitFMUL(N); |
| 363 | case ISD::FDIV: return visitFDIV(N); |
| 364 | case ISD::FREM: return visitFREM(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 365 | case ISD::SINT_TO_FP: return visitSINT_TO_FP(N); |
| 366 | case ISD::UINT_TO_FP: return visitUINT_TO_FP(N); |
| 367 | case ISD::FP_TO_SINT: return visitFP_TO_SINT(N); |
| 368 | case ISD::FP_TO_UINT: return visitFP_TO_UINT(N); |
| 369 | case ISD::FP_ROUND: return visitFP_ROUND(N); |
| 370 | case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N); |
| 371 | case ISD::FP_EXTEND: return visitFP_EXTEND(N); |
| 372 | case ISD::FNEG: return visitFNEG(N); |
| 373 | case ISD::FABS: return visitFABS(N); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 374 | case ISD::BRCOND: return visitBRCOND(N); |
| 375 | case ISD::BRCONDTWOWAY: return visitBRCONDTWOWAY(N); |
| 376 | case ISD::BR_CC: return visitBR_CC(N); |
| 377 | case ISD::BRTWOWAY_CC: return visitBRTWOWAY_CC(N); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 378 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 379 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 380 | } |
| 381 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 382 | SDOperand DAGCombiner::visitTokenFactor(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 383 | // If the token factor has two operands and one is the entry token, replace |
| 384 | // the token factor with the other operand. |
| 385 | if (N->getNumOperands() == 2) { |
| 386 | if (N->getOperand(0).getOpcode() == ISD::EntryToken) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 387 | return N->getOperand(1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 388 | if (N->getOperand(1).getOpcode() == ISD::EntryToken) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 389 | return N->getOperand(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 390 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 391 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 394 | SDOperand DAGCombiner::visitADD(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 395 | SDOperand N0 = N->getOperand(0); |
| 396 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 397 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 398 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | f89d78d | 2005-09-07 16:09:19 +0000 | [diff] [blame] | 399 | MVT::ValueType VT = N0.getValueType(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 400 | |
| 401 | // fold (add c1, c2) -> c1+c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 402 | if (N0C && N1C) |
Nate Begeman | f89d78d | 2005-09-07 16:09:19 +0000 | [diff] [blame] | 403 | return DAG.getConstant(N0C->getValue() + N1C->getValue(), VT); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 404 | // canonicalize constant to RHS |
| 405 | if (N0C && !N1C) { |
| 406 | std::swap(N0, N1); |
| 407 | std::swap(N0C, N1C); |
| 408 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 409 | // fold (add x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 410 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 411 | return N0; |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 412 | // fold (add (add x, c1), c2) -> (add x, c1+c2) |
| 413 | if (N1C && N0.getOpcode() == ISD::ADD) { |
| 414 | ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0)); |
| 415 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 416 | if (N00C) |
| 417 | return DAG.getNode(ISD::ADD, VT, N0.getOperand(1), |
| 418 | DAG.getConstant(N1C->getValue()+N00C->getValue(), VT)); |
| 419 | if (N01C) |
| 420 | return DAG.getNode(ISD::ADD, VT, N0.getOperand(0), |
| 421 | DAG.getConstant(N1C->getValue()+N01C->getValue(), VT)); |
| 422 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 423 | // fold ((0-A) + B) -> B-A |
| 424 | if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) && |
| 425 | cast<ConstantSDNode>(N0.getOperand(0))->isNullValue()) |
Nate Begeman | f89d78d | 2005-09-07 16:09:19 +0000 | [diff] [blame] | 426 | return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 427 | // fold (A + (0-B)) -> A-B |
| 428 | if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) && |
| 429 | cast<ConstantSDNode>(N1.getOperand(0))->isNullValue()) |
Nate Begeman | f89d78d | 2005-09-07 16:09:19 +0000 | [diff] [blame] | 430 | return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1)); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 431 | // fold (A+(B-A)) -> B |
| 432 | if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1)) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 433 | return N1.getOperand(0); |
| 434 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 435 | } |
| 436 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 437 | SDOperand DAGCombiner::visitSUB(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 438 | SDOperand N0 = N->getOperand(0); |
| 439 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 440 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val); |
| 441 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 442 | |
| 443 | // fold (sub c1, c2) -> c1-c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 444 | if (N0C && N1C) |
| 445 | return DAG.getConstant(N0C->getValue() - N1C->getValue(), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 446 | N->getValueType(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 447 | // fold (sub x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 448 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 449 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 450 | // fold (A+B)-A -> B |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 451 | if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 452 | return N0.getOperand(1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 453 | // fold (A+B)-B -> A |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 454 | if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 455 | return N0.getOperand(0); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 456 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 457 | } |
| 458 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 459 | SDOperand DAGCombiner::visitMUL(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 460 | SDOperand N0 = N->getOperand(0); |
| 461 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 462 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 463 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 464 | MVT::ValueType VT = N0.getValueType(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 465 | |
| 466 | // fold (mul c1, c2) -> c1*c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 467 | if (N0C && N1C) |
| 468 | return DAG.getConstant(N0C->getValue() * N1C->getValue(), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 469 | N->getValueType(0)); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 470 | // canonicalize constant to RHS |
| 471 | if (N0C && !N1C) { |
| 472 | std::swap(N0, N1); |
| 473 | std::swap(N0C, N1C); |
| 474 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 475 | // fold (mul x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 476 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 477 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 478 | // fold (mul x, -1) -> 0-x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 479 | if (N1C && N1C->isAllOnesValue()) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 480 | return DAG.getNode(ISD::SUB, N->getValueType(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 481 | DAG.getConstant(0, N->getValueType(0)), N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 482 | // fold (mul x, (1 << c)) -> x << c |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 483 | if (N1C && isPowerOf2_64(N1C->getValue())) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 484 | return DAG.getNode(ISD::SHL, N->getValueType(0), N0, |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 485 | DAG.getConstant(Log2_64(N1C->getValue()), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 486 | TLI.getShiftAmountTy())); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 487 | // fold (mul (mul x, c1), c2) -> (mul x, c1*c2) |
| 488 | if (N1C && N0.getOpcode() == ISD::MUL) { |
| 489 | ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0)); |
| 490 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 491 | if (N00C) |
| 492 | return DAG.getNode(ISD::MUL, VT, N0.getOperand(1), |
| 493 | DAG.getConstant(N1C->getValue()*N00C->getValue(), VT)); |
| 494 | if (N01C) |
| 495 | return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), |
| 496 | DAG.getConstant(N1C->getValue()*N01C->getValue(), VT)); |
| 497 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 498 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 501 | SDOperand DAGCombiner::visitSDIV(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 502 | SDOperand N0 = N->getOperand(0); |
| 503 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 504 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val); |
| 505 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 506 | |
| 507 | // fold (sdiv c1, c2) -> c1/c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 508 | if (N0C && N1C && !N1C->isNullValue()) |
| 509 | return DAG.getConstant(N0C->getSignExtended() / N1C->getSignExtended(), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 510 | N->getValueType(0)); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 511 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 512 | } |
| 513 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 514 | SDOperand DAGCombiner::visitUDIV(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 515 | SDOperand N0 = N->getOperand(0); |
| 516 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 517 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val); |
| 518 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 519 | |
| 520 | // fold (udiv c1, c2) -> c1/c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 521 | if (N0C && N1C && !N1C->isNullValue()) |
| 522 | return DAG.getConstant(N0C->getValue() / N1C->getValue(), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 523 | N->getValueType(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 524 | // fold (udiv x, (1 << c)) -> x >>u c |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 525 | if (N1C && isPowerOf2_64(N1C->getValue())) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 526 | return DAG.getNode(ISD::SRL, N->getValueType(0), N0, |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 527 | DAG.getConstant(Log2_64(N1C->getValue()), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 528 | TLI.getShiftAmountTy())); |
| 529 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 530 | } |
| 531 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 532 | SDOperand DAGCombiner::visitSREM(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 533 | SDOperand N0 = N->getOperand(0); |
| 534 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 535 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 536 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 537 | |
| 538 | // fold (srem c1, c2) -> c1%c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 539 | if (N0C && N1C && !N1C->isNullValue()) |
| 540 | return DAG.getConstant(N0C->getSignExtended() % N1C->getSignExtended(), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 541 | N->getValueType(0)); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 542 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 543 | } |
| 544 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 545 | SDOperand DAGCombiner::visitUREM(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 546 | SDOperand N0 = N->getOperand(0); |
| 547 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 548 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 549 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 550 | |
| 551 | // fold (urem c1, c2) -> c1%c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 552 | if (N0C && N1C && !N1C->isNullValue()) |
| 553 | return DAG.getConstant(N0C->getValue() % N1C->getValue(), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 554 | N->getValueType(0)); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 555 | // FIXME: c2 power of 2 -> mask? |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 556 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 559 | SDOperand DAGCombiner::visitMULHS(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 560 | SDOperand N0 = N->getOperand(0); |
| 561 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 562 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 563 | |
| 564 | // fold (mulhs x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 565 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 566 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 567 | // fold (mulhs x, 1) -> (sra x, size(x)-1) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 568 | if (N1C && N1C->getValue() == 1) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 569 | return DAG.getNode(ISD::SRA, N0.getValueType(), N0, |
| 570 | DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1, |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 571 | TLI.getShiftAmountTy())); |
| 572 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 575 | SDOperand DAGCombiner::visitMULHU(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 576 | SDOperand N0 = N->getOperand(0); |
| 577 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 578 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 579 | |
| 580 | // fold (mulhu x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 581 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 582 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 583 | // fold (mulhu x, 1) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 584 | if (N1C && N1C->getValue() == 1) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 585 | return DAG.getConstant(0, N0.getValueType()); |
| 586 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 587 | } |
| 588 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 589 | SDOperand DAGCombiner::visitAND(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 590 | SDOperand N0 = N->getOperand(0); |
| 591 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 592 | SDOperand LL, LR, RL, RR, CC0, CC1; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 593 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 594 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 595 | MVT::ValueType VT = N1.getValueType(); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 596 | unsigned OpSizeInBits = MVT::getSizeInBits(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 597 | |
| 598 | // fold (and c1, c2) -> c1&c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 599 | if (N0C && N1C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 600 | return DAG.getConstant(N0C->getValue() & N1C->getValue(), VT); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 601 | // canonicalize constant to RHS |
| 602 | if (N0C && !N1C) { |
| 603 | std::swap(N0, N1); |
| 604 | std::swap(N0C, N1C); |
| 605 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 606 | // fold (and x, -1) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 607 | if (N1C && N1C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 608 | return N0; |
| 609 | // if (and x, c) is known to be zero, return 0 |
| 610 | if (N1C && MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits),TLI)) |
| 611 | return DAG.getConstant(0, VT); |
| 612 | // fold (and x, c) -> x iff (x & ~c) == 0 |
| 613 | if (N1C && MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits)), |
| 614 | TLI)) |
| 615 | return N0; |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 616 | // fold (and (and x, c1), c2) -> (and x, c1^c2) |
| 617 | if (N1C && N0.getOpcode() == ISD::AND) { |
| 618 | ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0)); |
| 619 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 620 | if (N00C) |
| 621 | return DAG.getNode(ISD::AND, VT, N0.getOperand(1), |
| 622 | DAG.getConstant(N1C->getValue()&N00C->getValue(), VT)); |
| 623 | if (N01C) |
| 624 | return DAG.getNode(ISD::AND, VT, N0.getOperand(0), |
| 625 | DAG.getConstant(N1C->getValue()&N01C->getValue(), VT)); |
| 626 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 627 | // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1) |
| 628 | if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG) { |
| 629 | unsigned ExtendBits = |
| 630 | MVT::getSizeInBits(cast<VTSDNode>(N0.getOperand(1))->getVT()); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 631 | if ((N1C->getValue() & (~0ULL << ExtendBits)) == 0) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 632 | return DAG.getNode(ISD::AND, VT, N0.getOperand(0), N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 633 | } |
| 634 | // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF |
| 635 | if (N0.getOpcode() == ISD::OR) |
| 636 | if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 637 | if ((ORI->getValue() & N1C->getValue()) == N1C->getValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 638 | return N1; |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 639 | // fold (and (setcc x), (setcc y)) -> (setcc (and x, y)) |
| 640 | if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ |
| 641 | ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); |
| 642 | ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); |
| 643 | |
| 644 | if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 && |
| 645 | MVT::isInteger(LL.getValueType())) { |
| 646 | // fold (X == 0) & (Y == 0) -> (X|Y == 0) |
| 647 | if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) { |
| 648 | SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL); |
| 649 | WorkList.push_back(ORNode.Val); |
| 650 | return DAG.getSetCC(VT, ORNode, LR, Op1); |
| 651 | } |
| 652 | // fold (X == -1) & (Y == -1) -> (X&Y == -1) |
| 653 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) { |
| 654 | SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL); |
| 655 | WorkList.push_back(ANDNode.Val); |
| 656 | return DAG.getSetCC(VT, ANDNode, LR, Op1); |
| 657 | } |
| 658 | // fold (X > -1) & (Y > -1) -> (X|Y > -1) |
| 659 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) { |
| 660 | SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL); |
| 661 | WorkList.push_back(ORNode.Val); |
| 662 | return DAG.getSetCC(VT, ORNode, LR, Op1); |
| 663 | } |
| 664 | } |
| 665 | // canonicalize equivalent to ll == rl |
| 666 | if (LL == RR && LR == RL) { |
| 667 | Op1 = ISD::getSetCCSwappedOperands(Op1); |
| 668 | std::swap(RL, RR); |
| 669 | } |
| 670 | if (LL == RL && LR == RR) { |
| 671 | bool isInteger = MVT::isInteger(LL.getValueType()); |
| 672 | ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger); |
| 673 | if (Result != ISD::SETCC_INVALID) |
| 674 | return DAG.getSetCC(N0.getValueType(), LL, LR, Result); |
| 675 | } |
| 676 | } |
| 677 | // fold (and (zext x), (zext y)) -> (zext (and x, y)) |
| 678 | if (N0.getOpcode() == ISD::ZERO_EXTEND && |
| 679 | N1.getOpcode() == ISD::ZERO_EXTEND && |
| 680 | N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) { |
| 681 | SDOperand ANDNode = DAG.getNode(ISD::AND, N0.getOperand(0).getValueType(), |
| 682 | N0.getOperand(0), N1.getOperand(0)); |
| 683 | WorkList.push_back(ANDNode.Val); |
| 684 | return DAG.getNode(ISD::ZERO_EXTEND, VT, ANDNode); |
| 685 | } |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 686 | // fold (and (shl/srl x), (shl/srl y)) -> (shl/srl (and x, y)) |
| 687 | if (((N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SHL) || |
| 688 | (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SRL)) && |
| 689 | N0.getOperand(1) == N1.getOperand(1)) { |
| 690 | SDOperand ANDNode = DAG.getNode(ISD::AND, N0.getOperand(0).getValueType(), |
| 691 | N0.getOperand(0), N1.getOperand(0)); |
| 692 | WorkList.push_back(ANDNode.Val); |
| 693 | return DAG.getNode(N0.getOpcode(), VT, ANDNode, N0.getOperand(1)); |
| 694 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 695 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 696 | } |
| 697 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 698 | SDOperand DAGCombiner::visitOR(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 699 | SDOperand N0 = N->getOperand(0); |
| 700 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 701 | SDOperand LL, LR, RL, RR, CC0, CC1; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 702 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 703 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 704 | MVT::ValueType VT = N1.getValueType(); |
| 705 | unsigned OpSizeInBits = MVT::getSizeInBits(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 706 | |
| 707 | // fold (or c1, c2) -> c1|c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 708 | if (N0C && N1C) |
| 709 | return DAG.getConstant(N0C->getValue() | N1C->getValue(), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 710 | N->getValueType(0)); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 711 | // canonicalize constant to RHS |
| 712 | if (N0C && !N1C) { |
| 713 | std::swap(N0, N1); |
| 714 | std::swap(N0C, N1C); |
| 715 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 716 | // fold (or x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 717 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 718 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 719 | // fold (or x, -1) -> -1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 720 | if (N1C && N1C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 721 | return N1; |
| 722 | // fold (or x, c) -> c iff (x & ~c) == 0 |
| 723 | if (N1C && MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits)), |
| 724 | TLI)) |
| 725 | return N1; |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 726 | // fold (or (or x, c1), c2) -> (or x, c1|c2) |
| 727 | if (N1C && N0.getOpcode() == ISD::OR) { |
| 728 | ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0)); |
| 729 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 730 | if (N00C) |
| 731 | return DAG.getNode(ISD::OR, VT, N0.getOperand(1), |
| 732 | DAG.getConstant(N1C->getValue()|N00C->getValue(), VT)); |
| 733 | if (N01C) |
| 734 | return DAG.getNode(ISD::OR, VT, N0.getOperand(0), |
| 735 | DAG.getConstant(N1C->getValue()|N01C->getValue(), VT)); |
| 736 | } |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 737 | // fold (or (setcc x), (setcc y)) -> (setcc (or x, y)) |
| 738 | if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ |
| 739 | ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); |
| 740 | ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); |
| 741 | |
| 742 | if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 && |
| 743 | MVT::isInteger(LL.getValueType())) { |
| 744 | // fold (X != 0) | (Y != 0) -> (X|Y != 0) |
| 745 | // fold (X < 0) | (Y < 0) -> (X|Y < 0) |
| 746 | if (cast<ConstantSDNode>(LR)->getValue() == 0 && |
| 747 | (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) { |
| 748 | SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL); |
| 749 | WorkList.push_back(ORNode.Val); |
| 750 | return DAG.getSetCC(VT, ORNode, LR, Op1); |
| 751 | } |
| 752 | // fold (X != -1) | (Y != -1) -> (X&Y != -1) |
| 753 | // fold (X > -1) | (Y > -1) -> (X&Y > -1) |
| 754 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && |
| 755 | (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) { |
| 756 | SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL); |
| 757 | WorkList.push_back(ANDNode.Val); |
| 758 | return DAG.getSetCC(VT, ANDNode, LR, Op1); |
| 759 | } |
| 760 | } |
| 761 | // canonicalize equivalent to ll == rl |
| 762 | if (LL == RR && LR == RL) { |
| 763 | Op1 = ISD::getSetCCSwappedOperands(Op1); |
| 764 | std::swap(RL, RR); |
| 765 | } |
| 766 | if (LL == RL && LR == RR) { |
| 767 | bool isInteger = MVT::isInteger(LL.getValueType()); |
| 768 | ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger); |
| 769 | if (Result != ISD::SETCC_INVALID) |
| 770 | return DAG.getSetCC(N0.getValueType(), LL, LR, Result); |
| 771 | } |
| 772 | } |
| 773 | // fold (or (zext x), (zext y)) -> (zext (or x, y)) |
| 774 | if (N0.getOpcode() == ISD::ZERO_EXTEND && |
| 775 | N1.getOpcode() == ISD::ZERO_EXTEND && |
| 776 | N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) { |
| 777 | SDOperand ORNode = DAG.getNode(ISD::OR, N0.getOperand(0).getValueType(), |
| 778 | N0.getOperand(0), N1.getOperand(0)); |
| 779 | WorkList.push_back(ORNode.Val); |
| 780 | return DAG.getNode(ISD::ZERO_EXTEND, VT, ORNode); |
| 781 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 782 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 783 | } |
| 784 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 785 | SDOperand DAGCombiner::visitXOR(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 786 | SDOperand N0 = N->getOperand(0); |
| 787 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 788 | SDOperand LHS, RHS, CC; |
| 789 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 790 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 791 | MVT::ValueType VT = N0.getValueType(); |
| 792 | |
| 793 | // fold (xor c1, c2) -> c1^c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 794 | if (N0C && N1C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 795 | return DAG.getConstant(N0C->getValue() ^ N1C->getValue(), VT); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 796 | // canonicalize constant to RHS |
| 797 | if (N0C && !N1C) { |
| 798 | std::swap(N0, N1); |
| 799 | std::swap(N0C, N1C); |
| 800 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 801 | // fold (xor x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 802 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 803 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 804 | // fold !(x cc y) -> (x !cc y) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 805 | if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) { |
| 806 | bool isInt = MVT::isInteger(LHS.getValueType()); |
| 807 | ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(), |
| 808 | isInt); |
| 809 | if (N0.getOpcode() == ISD::SETCC) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 810 | return DAG.getSetCC(VT, LHS, RHS, NotCC); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 811 | if (N0.getOpcode() == ISD::SELECT_CC) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 812 | return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 813 | assert(0 && "Unhandled SetCC Equivalent!"); |
| 814 | abort(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 815 | } |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 816 | // fold !(x or y) -> (!x and !y) iff x or y are setcc |
| 817 | if (N1C && N1C->getValue() == 1 && |
| 818 | (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 819 | SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 820 | if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) { |
| 821 | unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 822 | LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS |
| 823 | RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 824 | WorkList.push_back(LHS.Val); WorkList.push_back(RHS.Val); |
| 825 | return DAG.getNode(NewOpcode, VT, LHS, RHS); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 826 | } |
| 827 | } |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 828 | // fold !(x or y) -> (!x and !y) iff x or y are constants |
| 829 | if (N1C && N1C->isAllOnesValue() && |
| 830 | (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 831 | SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 832 | if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) { |
| 833 | unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 834 | LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS |
| 835 | RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 836 | WorkList.push_back(LHS.Val); WorkList.push_back(RHS.Val); |
| 837 | return DAG.getNode(NewOpcode, VT, LHS, RHS); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 838 | } |
| 839 | } |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 840 | // fold (xor (xor x, c1), c2) -> (xor x, c1^c2) |
| 841 | if (N1C && N0.getOpcode() == ISD::XOR) { |
| 842 | ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0)); |
| 843 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 844 | if (N00C) |
| 845 | return DAG.getNode(ISD::XOR, VT, N0.getOperand(1), |
| 846 | DAG.getConstant(N1C->getValue()^N00C->getValue(), VT)); |
| 847 | if (N01C) |
| 848 | return DAG.getNode(ISD::XOR, VT, N0.getOperand(0), |
| 849 | DAG.getConstant(N1C->getValue()^N01C->getValue(), VT)); |
| 850 | } |
| 851 | // fold (xor x, x) -> 0 |
| 852 | if (N0 == N1) |
| 853 | return DAG.getConstant(0, VT); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 854 | // fold (xor (zext x), (zext y)) -> (zext (xor x, y)) |
| 855 | if (N0.getOpcode() == ISD::ZERO_EXTEND && |
| 856 | N1.getOpcode() == ISD::ZERO_EXTEND && |
| 857 | N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) { |
| 858 | SDOperand XORNode = DAG.getNode(ISD::XOR, N0.getOperand(0).getValueType(), |
| 859 | N0.getOperand(0), N1.getOperand(0)); |
| 860 | WorkList.push_back(XORNode.Val); |
| 861 | return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode); |
| 862 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 863 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 864 | } |
| 865 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 866 | SDOperand DAGCombiner::visitSHL(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 867 | SDOperand N0 = N->getOperand(0); |
| 868 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 869 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 870 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 871 | MVT::ValueType VT = N0.getValueType(); |
| 872 | unsigned OpSizeInBits = MVT::getSizeInBits(VT); |
| 873 | |
| 874 | // fold (shl c1, c2) -> c1<<c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 875 | if (N0C && N1C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 876 | return DAG.getConstant(N0C->getValue() << N1C->getValue(), VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 877 | // fold (shl 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 878 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 879 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 880 | // fold (shl x, c >= size(x)) -> undef |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 881 | if (N1C && N1C->getValue() >= OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 882 | return DAG.getNode(ISD::UNDEF, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 883 | // fold (shl x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 884 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 885 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 886 | // if (shl x, c) is known to be zero, return 0 |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 887 | if (N1C && MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits),TLI)) |
| 888 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 889 | // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 890 | if (N1C && N0.getOpcode() == ISD::SHL && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 891 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
| 892 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 893 | uint64_t c2 = N1C->getValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 894 | if (c1 + c2 > OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 895 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 896 | return DAG.getNode(ISD::SHL, VT, N0.getOperand(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 897 | DAG.getConstant(c1 + c2, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 898 | } |
| 899 | // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or |
| 900 | // (srl (and x, -1 << c1), c1-c2) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 901 | if (N1C && N0.getOpcode() == ISD::SRL && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 902 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
| 903 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 904 | uint64_t c2 = N1C->getValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 905 | SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0), |
| 906 | DAG.getConstant(~0ULL << c1, VT)); |
| 907 | if (c2 > c1) |
| 908 | return DAG.getNode(ISD::SHL, VT, Mask, |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 909 | DAG.getConstant(c2-c1, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 910 | else |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 911 | return DAG.getNode(ISD::SRL, VT, Mask, |
| 912 | DAG.getConstant(c1-c2, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 913 | } |
| 914 | // fold (shl (sra x, c1), c1) -> (and x, -1 << c1) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 915 | if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 916 | return DAG.getNode(ISD::AND, VT, N0.getOperand(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 917 | DAG.getConstant(~0ULL << N1C->getValue(), VT)); |
| 918 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 919 | } |
| 920 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 921 | SDOperand DAGCombiner::visitSRA(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 922 | SDOperand N0 = N->getOperand(0); |
| 923 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 924 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 925 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 926 | MVT::ValueType VT = N0.getValueType(); |
| 927 | unsigned OpSizeInBits = MVT::getSizeInBits(VT); |
| 928 | |
| 929 | // fold (sra c1, c2) -> c1>>c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 930 | if (N0C && N1C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 931 | return DAG.getConstant(N0C->getSignExtended() >> N1C->getValue(), VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 932 | // fold (sra 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 933 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 934 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 935 | // fold (sra -1, x) -> -1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 936 | if (N0C && N0C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 937 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 938 | // fold (sra x, c >= size(x)) -> undef |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 939 | if (N1C && N1C->getValue() >= OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 940 | return DAG.getNode(ISD::UNDEF, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 941 | // fold (sra x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 942 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 943 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 944 | // If the sign bit is known to be zero, switch this to a SRL. |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 945 | if (N1C && MaskedValueIsZero(N0, (1ULL << (OpSizeInBits-1)), TLI)) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 946 | return DAG.getNode(ISD::SRL, VT, N0, N1); |
| 947 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 950 | SDOperand DAGCombiner::visitSRL(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 951 | SDOperand N0 = N->getOperand(0); |
| 952 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 953 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 954 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 955 | MVT::ValueType VT = N0.getValueType(); |
| 956 | unsigned OpSizeInBits = MVT::getSizeInBits(VT); |
| 957 | |
| 958 | // fold (srl c1, c2) -> c1 >>u c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 959 | if (N0C && N1C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 960 | return DAG.getConstant(N0C->getValue() >> N1C->getValue(), VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 961 | // fold (srl 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 962 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 963 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 964 | // fold (srl x, c >= size(x)) -> undef |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 965 | if (N1C && N1C->getValue() >= OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 966 | return DAG.getNode(ISD::UNDEF, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 967 | // fold (srl x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 968 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 969 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 970 | // if (srl x, c) is known to be zero, return 0 |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 971 | if (N1C && MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits),TLI)) |
| 972 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 973 | // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 974 | if (N1C && N0.getOpcode() == ISD::SRL && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 975 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
| 976 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 977 | uint64_t c2 = N1C->getValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 978 | if (c1 + c2 > OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 979 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 980 | return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 981 | DAG.getConstant(c1 + c2, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 982 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 983 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 984 | } |
| 985 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 986 | SDOperand DAGCombiner::visitCTLZ(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 987 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 988 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 989 | |
| 990 | // fold (ctlz c1) -> c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 991 | if (N0C) |
| 992 | return DAG.getConstant(CountLeadingZeros_64(N0C->getValue()), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 993 | N0.getValueType()); |
| 994 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 995 | } |
| 996 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 997 | SDOperand DAGCombiner::visitCTTZ(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 998 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 999 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1000 | |
| 1001 | // fold (cttz c1) -> c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1002 | if (N0C) |
| 1003 | return DAG.getConstant(CountTrailingZeros_64(N0C->getValue()), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1004 | N0.getValueType()); |
| 1005 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1006 | } |
| 1007 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1008 | SDOperand DAGCombiner::visitCTPOP(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1009 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1010 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1011 | |
| 1012 | // fold (ctpop c1) -> c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1013 | if (N0C) |
| 1014 | return DAG.getConstant(CountPopulation_64(N0C->getValue()), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1015 | N0.getValueType()); |
| 1016 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1017 | } |
| 1018 | |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1019 | SDOperand DAGCombiner::visitSELECT(SDNode *N) { |
| 1020 | SDOperand N0 = N->getOperand(0); |
| 1021 | SDOperand N1 = N->getOperand(1); |
| 1022 | SDOperand N2 = N->getOperand(2); |
| 1023 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1024 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 1025 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); |
| 1026 | MVT::ValueType VT = N->getValueType(0); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1027 | |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1028 | // fold select C, X, X -> X |
| 1029 | if (N1 == N2) |
| 1030 | return N1; |
| 1031 | // fold select true, X, Y -> X |
| 1032 | if (N0C && !N0C->isNullValue()) |
| 1033 | return N1; |
| 1034 | // fold select false, X, Y -> Y |
| 1035 | if (N0C && N0C->isNullValue()) |
| 1036 | return N2; |
| 1037 | // fold select C, 1, X -> C | X |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1038 | if (MVT::i1 == VT && N1C && N1C->getValue() == 1) |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1039 | return DAG.getNode(ISD::OR, VT, N0, N2); |
| 1040 | // fold select C, 0, X -> ~C & X |
| 1041 | // FIXME: this should check for C type == X type, not i1? |
| 1042 | if (MVT::i1 == VT && N1C && N1C->isNullValue()) { |
| 1043 | SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT)); |
| 1044 | WorkList.push_back(XORNode.Val); |
| 1045 | return DAG.getNode(ISD::AND, VT, XORNode, N2); |
| 1046 | } |
| 1047 | // fold select C, X, 1 -> ~C | X |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1048 | if (MVT::i1 == VT && N2C && N2C->getValue() == 1) { |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1049 | SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT)); |
| 1050 | WorkList.push_back(XORNode.Val); |
| 1051 | return DAG.getNode(ISD::OR, VT, XORNode, N1); |
| 1052 | } |
| 1053 | // fold select C, X, 0 -> C & X |
| 1054 | // FIXME: this should check for C type == X type, not i1? |
| 1055 | if (MVT::i1 == VT && N2C && N2C->isNullValue()) |
| 1056 | return DAG.getNode(ISD::AND, VT, N0, N1); |
| 1057 | // fold X ? X : Y --> X ? 1 : Y --> X | Y |
| 1058 | if (MVT::i1 == VT && N0 == N1) |
| 1059 | return DAG.getNode(ISD::OR, VT, N0, N2); |
| 1060 | // fold X ? Y : X --> X ? Y : 0 --> X & Y |
| 1061 | if (MVT::i1 == VT && N0 == N2) |
| 1062 | return DAG.getNode(ISD::AND, VT, N0, N1); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1063 | // fold selects based on a setcc into other things, such as min/max/abs |
| 1064 | if (N0.getOpcode() == ISD::SETCC) |
| 1065 | return SimplifySelect(N0, N1, N2); |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1066 | return SDOperand(); |
| 1067 | } |
| 1068 | |
| 1069 | SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) { |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1070 | SDOperand N0 = N->getOperand(0); |
| 1071 | SDOperand N1 = N->getOperand(1); |
| 1072 | SDOperand N2 = N->getOperand(2); |
| 1073 | SDOperand N3 = N->getOperand(3); |
| 1074 | SDOperand N4 = N->getOperand(4); |
| 1075 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1076 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 1077 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); |
| 1078 | ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get(); |
| 1079 | |
| 1080 | // Determine if the condition we're dealing with is constant |
| 1081 | SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC); |
Chris Lattner | 9155902 | 2005-10-05 04:45:43 +0000 | [diff] [blame] | 1082 | ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val); |
| 1083 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1084 | // fold select_cc lhs, rhs, x, x, cc -> x |
| 1085 | if (N2 == N3) |
| 1086 | return N2; |
| 1087 | // fold select_cc true, x, y -> x |
Chris Lattner | 9155902 | 2005-10-05 04:45:43 +0000 | [diff] [blame] | 1088 | if (SCCC && SCCC->getValue()) |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1089 | return N2; |
| 1090 | // fold select_cc false, x, y -> y |
Chris Lattner | 9155902 | 2005-10-05 04:45:43 +0000 | [diff] [blame] | 1091 | if (SCCC && SCCC->getValue() == 0) |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1092 | return N3; |
| 1093 | // fold select_cc into other things, such as min/max/abs |
| 1094 | return SimplifySelectCC(N0, N1, N2, N3, CC); |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | SDOperand DAGCombiner::visitSETCC(SDNode *N) { |
| 1098 | return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1), |
| 1099 | cast<CondCodeSDNode>(N->getOperand(2))->get()); |
| 1100 | } |
| 1101 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1102 | SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1103 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1104 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1105 | MVT::ValueType VT = N->getValueType(0); |
| 1106 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1107 | // fold (sext c1) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1108 | if (N0C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1109 | return DAG.getConstant(N0C->getSignExtended(), VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1110 | // fold (sext (sext x)) -> (sext x) |
| 1111 | if (N0.getOpcode() == ISD::SIGN_EXTEND) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1112 | return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0)); |
| 1113 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1114 | } |
| 1115 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1116 | SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1117 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1118 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1119 | MVT::ValueType VT = N->getValueType(0); |
| 1120 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1121 | // fold (zext c1) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1122 | if (N0C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1123 | return DAG.getConstant(N0C->getValue(), VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1124 | // fold (zext (zext x)) -> (zext x) |
| 1125 | if (N0.getOpcode() == ISD::ZERO_EXTEND) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1126 | return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0)); |
| 1127 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1128 | } |
| 1129 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1130 | SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1131 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1132 | SDOperand N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1133 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1134 | MVT::ValueType VT = N->getValueType(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1135 | MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1136 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1137 | // fold (sext_in_reg c1) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1138 | if (N0C) { |
| 1139 | SDOperand Truncate = DAG.getConstant(N0C->getValue(), EVT); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1140 | return DAG.getNode(ISD::SIGN_EXTEND, VT, Truncate); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1141 | } |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1142 | // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt1 |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1143 | if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1144 | cast<VTSDNode>(N0.getOperand(1))->getVT() < EVT) { |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1145 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1146 | } |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1147 | // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2 |
| 1148 | if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && |
| 1149 | EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) { |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1150 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1151 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1152 | // fold (sext_in_reg (assert_sext x)) -> (assert_sext x) |
| 1153 | if (N0.getOpcode() == ISD::AssertSext && |
| 1154 | cast<VTSDNode>(N0.getOperand(1))->getVT() <= EVT) { |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1155 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1156 | } |
| 1157 | // fold (sext_in_reg (sextload x)) -> (sextload x) |
| 1158 | if (N0.getOpcode() == ISD::SEXTLOAD && |
| 1159 | cast<VTSDNode>(N0.getOperand(3))->getVT() <= EVT) { |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1160 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1161 | } |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 1162 | // fold (sext_in_reg (setcc x)) -> setcc x iff (setcc x) == 0 or -1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1163 | // FIXME: teach isSetCCEquivalent about 0, -1 and then use it here |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1164 | if (N0.getOpcode() == ISD::SETCC && |
| 1165 | TLI.getSetCCResultContents() == |
| 1166 | TargetLowering::ZeroOrNegativeOneSetCCResult) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1167 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1168 | // FIXME: this code is currently just ported over from SelectionDAG.cpp |
| 1169 | // we probably actually want to handle this in two pieces. Rather than |
| 1170 | // checking all the top bits for zero, just check the sign bit here and turn |
| 1171 | // it into a zero extend inreg (AND with constant). |
| 1172 | // then, let the code for AND figure out if the mask is superfluous rather |
| 1173 | // than doing so here. |
| 1174 | if (N0.getOpcode() == ISD::AND && |
| 1175 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
| 1176 | uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue(); |
| 1177 | unsigned NumBits = MVT::getSizeInBits(EVT); |
| 1178 | if ((Mask & (~0ULL << (NumBits-1))) == 0) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1179 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1180 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1181 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1182 | } |
| 1183 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1184 | SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1185 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1186 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1187 | MVT::ValueType VT = N->getValueType(0); |
| 1188 | |
| 1189 | // noop truncate |
| 1190 | if (N0.getValueType() == N->getValueType(0)) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1191 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1192 | // fold (truncate c1) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1193 | if (N0C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1194 | return DAG.getConstant(N0C->getValue(), VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1195 | // fold (truncate (truncate x)) -> (truncate x) |
| 1196 | if (N0.getOpcode() == ISD::TRUNCATE) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1197 | return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1198 | // fold (truncate (ext x)) -> (ext x) or (truncate x) or x |
| 1199 | if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND){ |
| 1200 | if (N0.getValueType() < VT) |
| 1201 | // if the source is smaller than the dest, we still need an extend |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1202 | return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1203 | else if (N0.getValueType() > VT) |
| 1204 | // if the source is larger than the dest, than we just need the truncate |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1205 | return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1206 | else |
| 1207 | // if the source and dest are the same type, we can drop both the extend |
| 1208 | // and the truncate |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1209 | return N0.getOperand(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1210 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1211 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1212 | } |
| 1213 | |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1214 | SDOperand DAGCombiner::visitFADD(SDNode *N) { |
| 1215 | SDOperand N0 = N->getOperand(0); |
| 1216 | SDOperand N1 = N->getOperand(1); |
| 1217 | MVT::ValueType VT = N->getValueType(0); |
| 1218 | |
| 1219 | if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0)) |
| 1220 | if (ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1)) { |
| 1221 | // fold floating point (fadd c1, c2) |
| 1222 | return DAG.getConstantFP(N0CFP->getValue() + N1CFP->getValue(), |
| 1223 | N->getValueType(0)); |
| 1224 | } |
| 1225 | // fold (A + (-B)) -> A-B |
| 1226 | if (N1.getOpcode() == ISD::FNEG) |
| 1227 | return DAG.getNode(ISD::FSUB, VT, N0, N1.getOperand(0)); |
| 1228 | |
| 1229 | // fold ((-A) + B) -> B-A |
| 1230 | if (N0.getOpcode() == ISD::FNEG) |
| 1231 | return DAG.getNode(ISD::FSUB, VT, N1, N0.getOperand(0)); |
| 1232 | |
| 1233 | return SDOperand(); |
| 1234 | } |
| 1235 | |
| 1236 | SDOperand DAGCombiner::visitFSUB(SDNode *N) { |
| 1237 | SDOperand N0 = N->getOperand(0); |
| 1238 | SDOperand N1 = N->getOperand(1); |
| 1239 | MVT::ValueType VT = N->getValueType(0); |
| 1240 | |
| 1241 | if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0)) |
| 1242 | if (ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1)) { |
| 1243 | // fold floating point (fsub c1, c2) |
| 1244 | return DAG.getConstantFP(N0CFP->getValue() - N1CFP->getValue(), |
| 1245 | N->getValueType(0)); |
| 1246 | } |
| 1247 | // fold (A-(-B)) -> A+B |
| 1248 | if (N1.getOpcode() == ISD::FNEG) |
| 1249 | return DAG.getNode(ISD::FADD, N0.getValueType(), N0, N1.getOperand(0)); |
| 1250 | |
| 1251 | return SDOperand(); |
| 1252 | } |
| 1253 | |
| 1254 | SDOperand DAGCombiner::visitFMUL(SDNode *N) { |
| 1255 | SDOperand N0 = N->getOperand(0); |
| 1256 | SDOperand N1 = N->getOperand(1); |
| 1257 | MVT::ValueType VT = N->getValueType(0); |
| 1258 | |
| 1259 | if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0)) |
| 1260 | if (ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1)) { |
| 1261 | // fold floating point (fmul c1, c2) |
| 1262 | return DAG.getConstantFP(N0CFP->getValue() * N1CFP->getValue(), |
| 1263 | N->getValueType(0)); |
| 1264 | } |
| 1265 | return SDOperand(); |
| 1266 | } |
| 1267 | |
| 1268 | SDOperand DAGCombiner::visitFDIV(SDNode *N) { |
| 1269 | SDOperand N0 = N->getOperand(0); |
| 1270 | SDOperand N1 = N->getOperand(1); |
| 1271 | MVT::ValueType VT = N->getValueType(0); |
| 1272 | |
| 1273 | if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0)) |
| 1274 | if (ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1)) { |
| 1275 | // fold floating point (fdiv c1, c2) |
| 1276 | return DAG.getConstantFP(N0CFP->getValue() / N1CFP->getValue(), |
| 1277 | N->getValueType(0)); |
| 1278 | } |
| 1279 | return SDOperand(); |
| 1280 | } |
| 1281 | |
| 1282 | SDOperand DAGCombiner::visitFREM(SDNode *N) { |
| 1283 | SDOperand N0 = N->getOperand(0); |
| 1284 | SDOperand N1 = N->getOperand(1); |
| 1285 | MVT::ValueType VT = N->getValueType(0); |
| 1286 | |
| 1287 | if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0)) |
| 1288 | if (ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1)) { |
| 1289 | // fold floating point (frem c1, c2) -> fmod(c1, c2) |
| 1290 | return DAG.getConstantFP(fmod(N0CFP->getValue(),N1CFP->getValue()), |
| 1291 | N->getValueType(0)); |
| 1292 | } |
| 1293 | return SDOperand(); |
| 1294 | } |
| 1295 | |
| 1296 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1297 | SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1298 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1299 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1300 | |
| 1301 | // fold (sint_to_fp c1) -> c1fp |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1302 | if (N0C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1303 | return DAG.getConstantFP(N0C->getSignExtended(), N->getValueType(0)); |
| 1304 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1305 | } |
| 1306 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1307 | SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1308 | SDOperand N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1309 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1310 | |
| 1311 | // fold (uint_to_fp c1) -> c1fp |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1312 | if (N0C) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1313 | return DAG.getConstantFP(N0C->getValue(), N->getValueType(0)); |
| 1314 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1315 | } |
| 1316 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1317 | SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1318 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1319 | |
| 1320 | // fold (fp_to_sint c1fp) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1321 | if (N0CFP) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1322 | return DAG.getConstant((int64_t)N0CFP->getValue(), N->getValueType(0)); |
| 1323 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1326 | SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1327 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1328 | |
| 1329 | // fold (fp_to_uint c1fp) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1330 | if (N0CFP) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1331 | return DAG.getConstant((uint64_t)N0CFP->getValue(), N->getValueType(0)); |
| 1332 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1333 | } |
| 1334 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1335 | SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1336 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1337 | |
| 1338 | // fold (fp_round c1fp) -> c1fp |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1339 | if (N0CFP) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1340 | return DAG.getConstantFP(N0CFP->getValue(), N->getValueType(0)); |
| 1341 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1342 | } |
| 1343 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1344 | SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1345 | SDOperand N0 = N->getOperand(0); |
| 1346 | MVT::ValueType VT = N->getValueType(0); |
| 1347 | MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1348 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1349 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1350 | // fold (fp_round_inreg c1fp) -> c1fp |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1351 | if (N0CFP) { |
| 1352 | SDOperand Round = DAG.getConstantFP(N0CFP->getValue(), EVT); |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1353 | return DAG.getNode(ISD::FP_EXTEND, VT, Round); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1354 | } |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1355 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1356 | } |
| 1357 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1358 | SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1359 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1360 | |
| 1361 | // fold (fp_extend c1fp) -> c1fp |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1362 | if (N0CFP) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1363 | return DAG.getConstantFP(N0CFP->getValue(), N->getValueType(0)); |
| 1364 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1365 | } |
| 1366 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1367 | SDOperand DAGCombiner::visitFNEG(SDNode *N) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1368 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1369 | // fold (neg c1) -> -c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1370 | if (N0CFP) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1371 | return DAG.getConstantFP(-N0CFP->getValue(), N->getValueType(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1372 | // fold (neg (sub x, y)) -> (sub y, x) |
| 1373 | if (N->getOperand(0).getOpcode() == ISD::SUB) |
| 1374 | return DAG.getNode(ISD::SUB, N->getValueType(0), N->getOperand(1), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1375 | N->getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1376 | // fold (neg (neg x)) -> x |
| 1377 | if (N->getOperand(0).getOpcode() == ISD::FNEG) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1378 | return N->getOperand(0).getOperand(0); |
| 1379 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1380 | } |
| 1381 | |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1382 | SDOperand DAGCombiner::visitFABS(SDNode *N) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1383 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1384 | // fold (fabs c1) -> fabs(c1) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1385 | if (N0CFP) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1386 | return DAG.getConstantFP(fabs(N0CFP->getValue()), N->getValueType(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1387 | // fold (fabs (fabs x)) -> (fabs x) |
| 1388 | if (N->getOperand(0).getOpcode() == ISD::FABS) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1389 | return N->getOperand(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1390 | // fold (fabs (fneg x)) -> (fabs x) |
| 1391 | if (N->getOperand(0).getOpcode() == ISD::FNEG) |
| 1392 | return DAG.getNode(ISD::FABS, N->getValueType(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1393 | N->getOperand(0).getOperand(0)); |
| 1394 | return SDOperand(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1395 | } |
| 1396 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1397 | SDOperand DAGCombiner::visitBRCOND(SDNode *N) { |
| 1398 | SDOperand Chain = N->getOperand(0); |
| 1399 | SDOperand N1 = N->getOperand(1); |
| 1400 | SDOperand N2 = N->getOperand(2); |
| 1401 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 1402 | |
| 1403 | // never taken branch, fold to chain |
| 1404 | if (N1C && N1C->isNullValue()) |
| 1405 | return Chain; |
| 1406 | // unconditional branch |
| 1407 | if (N1C && !N1C->isNullValue()) |
| 1408 | return DAG.getNode(ISD::BR, MVT::Other, Chain, N2); |
| 1409 | return SDOperand(); |
| 1410 | } |
| 1411 | |
| 1412 | SDOperand DAGCombiner::visitBRCONDTWOWAY(SDNode *N) { |
| 1413 | SDOperand Chain = N->getOperand(0); |
| 1414 | SDOperand N1 = N->getOperand(1); |
| 1415 | SDOperand N2 = N->getOperand(2); |
| 1416 | SDOperand N3 = N->getOperand(3); |
| 1417 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 1418 | |
| 1419 | // unconditional branch to true mbb |
| 1420 | if (N1C && N1C->getValue() == 1) |
| 1421 | return DAG.getNode(ISD::BR, MVT::Other, Chain, N2); |
| 1422 | // unconditional branch to false mbb |
| 1423 | if (N1C && N1C->isNullValue()) |
| 1424 | return DAG.getNode(ISD::BR, MVT::Other, Chain, N3); |
| 1425 | return SDOperand(); |
| 1426 | } |
| 1427 | |
Chris Lattner | 3ea0b47 | 2005-10-05 06:47:48 +0000 | [diff] [blame^] | 1428 | // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB. |
| 1429 | // |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1430 | SDOperand DAGCombiner::visitBR_CC(SDNode *N) { |
Chris Lattner | 3ea0b47 | 2005-10-05 06:47:48 +0000 | [diff] [blame^] | 1431 | CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1)); |
| 1432 | SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3); |
| 1433 | |
| 1434 | // Use SimplifySetCC to simplify SETCC's. |
| 1435 | SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get()); |
| 1436 | if (Simp.Val) { |
| 1437 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Simp)) { |
| 1438 | if (C->getValue() & 1) // Unconditional branch |
| 1439 | return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0), |
| 1440 | N->getOperand(4)); |
| 1441 | else |
| 1442 | return N->getOperand(0); // Unconditional Fall through |
| 1443 | } else if (Simp.Val->getOpcode() == ISD::SETCC) { |
| 1444 | // Folded to a simpler setcc |
| 1445 | return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0), |
| 1446 | Simp.getOperand(2), Simp.getOperand(0), |
| 1447 | Simp.getOperand(1), N->getOperand(4)); |
| 1448 | } |
| 1449 | } |
| 1450 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1451 | return SDOperand(); |
| 1452 | } |
| 1453 | |
| 1454 | SDOperand DAGCombiner::visitBRTWOWAY_CC(SDNode *N) { |
| 1455 | // FIXME: come up with a common way between br_cc, brtwoway_cc, and select_cc |
| 1456 | // to canonicalize the condition without calling getnode a bazillion times. |
| 1457 | return SDOperand(); |
| 1458 | } |
| 1459 | |
| 1460 | SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){ |
| 1461 | return SDOperand(); |
| 1462 | } |
| 1463 | |
| 1464 | SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1, |
| 1465 | SDOperand N2, SDOperand N3, |
| 1466 | ISD::CondCode CC) { |
| 1467 | return SDOperand(); |
| 1468 | } |
| 1469 | |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1470 | SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0, |
| 1471 | SDOperand N1, ISD::CondCode Cond) { |
| 1472 | // These setcc operations always fold. |
| 1473 | switch (Cond) { |
| 1474 | default: break; |
| 1475 | case ISD::SETFALSE: |
| 1476 | case ISD::SETFALSE2: return DAG.getConstant(0, VT); |
| 1477 | case ISD::SETTRUE: |
| 1478 | case ISD::SETTRUE2: return DAG.getConstant(1, VT); |
| 1479 | } |
| 1480 | |
| 1481 | if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) { |
| 1482 | uint64_t C1 = N1C->getValue(); |
| 1483 | if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val)) { |
| 1484 | uint64_t C0 = N0C->getValue(); |
| 1485 | |
| 1486 | // Sign extend the operands if required |
| 1487 | if (ISD::isSignedIntSetCC(Cond)) { |
| 1488 | C0 = N0C->getSignExtended(); |
| 1489 | C1 = N1C->getSignExtended(); |
| 1490 | } |
| 1491 | |
| 1492 | switch (Cond) { |
| 1493 | default: assert(0 && "Unknown integer setcc!"); |
| 1494 | case ISD::SETEQ: return DAG.getConstant(C0 == C1, VT); |
| 1495 | case ISD::SETNE: return DAG.getConstant(C0 != C1, VT); |
| 1496 | case ISD::SETULT: return DAG.getConstant(C0 < C1, VT); |
| 1497 | case ISD::SETUGT: return DAG.getConstant(C0 > C1, VT); |
| 1498 | case ISD::SETULE: return DAG.getConstant(C0 <= C1, VT); |
| 1499 | case ISD::SETUGE: return DAG.getConstant(C0 >= C1, VT); |
| 1500 | case ISD::SETLT: return DAG.getConstant((int64_t)C0 < (int64_t)C1, VT); |
| 1501 | case ISD::SETGT: return DAG.getConstant((int64_t)C0 > (int64_t)C1, VT); |
| 1502 | case ISD::SETLE: return DAG.getConstant((int64_t)C0 <= (int64_t)C1, VT); |
| 1503 | case ISD::SETGE: return DAG.getConstant((int64_t)C0 >= (int64_t)C1, VT); |
| 1504 | } |
| 1505 | } else { |
| 1506 | // If the LHS is a ZERO_EXTEND, perform the comparison on the input. |
| 1507 | if (N0.getOpcode() == ISD::ZERO_EXTEND) { |
| 1508 | unsigned InSize = MVT::getSizeInBits(N0.getOperand(0).getValueType()); |
| 1509 | |
| 1510 | // If the comparison constant has bits in the upper part, the |
| 1511 | // zero-extended value could never match. |
| 1512 | if (C1 & (~0ULL << InSize)) { |
| 1513 | unsigned VSize = MVT::getSizeInBits(N0.getValueType()); |
| 1514 | switch (Cond) { |
| 1515 | case ISD::SETUGT: |
| 1516 | case ISD::SETUGE: |
| 1517 | case ISD::SETEQ: return DAG.getConstant(0, VT); |
| 1518 | case ISD::SETULT: |
| 1519 | case ISD::SETULE: |
| 1520 | case ISD::SETNE: return DAG.getConstant(1, VT); |
| 1521 | case ISD::SETGT: |
| 1522 | case ISD::SETGE: |
| 1523 | // True if the sign bit of C1 is set. |
| 1524 | return DAG.getConstant((C1 & (1ULL << VSize)) != 0, VT); |
| 1525 | case ISD::SETLT: |
| 1526 | case ISD::SETLE: |
| 1527 | // True if the sign bit of C1 isn't set. |
| 1528 | return DAG.getConstant((C1 & (1ULL << VSize)) == 0, VT); |
| 1529 | default: |
| 1530 | break; |
| 1531 | } |
| 1532 | } |
| 1533 | |
| 1534 | // Otherwise, we can perform the comparison with the low bits. |
| 1535 | switch (Cond) { |
| 1536 | case ISD::SETEQ: |
| 1537 | case ISD::SETNE: |
| 1538 | case ISD::SETUGT: |
| 1539 | case ISD::SETUGE: |
| 1540 | case ISD::SETULT: |
| 1541 | case ISD::SETULE: |
| 1542 | return DAG.getSetCC(VT, N0.getOperand(0), |
| 1543 | DAG.getConstant(C1, N0.getOperand(0).getValueType()), |
| 1544 | Cond); |
| 1545 | default: |
| 1546 | break; // todo, be more careful with signed comparisons |
| 1547 | } |
| 1548 | } else if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && |
| 1549 | (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { |
| 1550 | MVT::ValueType ExtSrcTy = cast<VTSDNode>(N0.getOperand(1))->getVT(); |
| 1551 | unsigned ExtSrcTyBits = MVT::getSizeInBits(ExtSrcTy); |
| 1552 | MVT::ValueType ExtDstTy = N0.getValueType(); |
| 1553 | unsigned ExtDstTyBits = MVT::getSizeInBits(ExtDstTy); |
| 1554 | |
| 1555 | // If the extended part has any inconsistent bits, it cannot ever |
| 1556 | // compare equal. In other words, they have to be all ones or all |
| 1557 | // zeros. |
| 1558 | uint64_t ExtBits = |
| 1559 | (~0ULL >> (64-ExtSrcTyBits)) & (~0ULL << (ExtDstTyBits-1)); |
| 1560 | if ((C1 & ExtBits) != 0 && (C1 & ExtBits) != ExtBits) |
| 1561 | return DAG.getConstant(Cond == ISD::SETNE, VT); |
| 1562 | |
| 1563 | SDOperand ZextOp; |
| 1564 | MVT::ValueType Op0Ty = N0.getOperand(0).getValueType(); |
| 1565 | if (Op0Ty == ExtSrcTy) { |
| 1566 | ZextOp = N0.getOperand(0); |
| 1567 | } else { |
| 1568 | int64_t Imm = ~0ULL >> (64-ExtSrcTyBits); |
| 1569 | ZextOp = DAG.getNode(ISD::AND, Op0Ty, N0.getOperand(0), |
| 1570 | DAG.getConstant(Imm, Op0Ty)); |
| 1571 | } |
| 1572 | WorkList.push_back(ZextOp.Val); |
| 1573 | // Otherwise, make this a use of a zext. |
| 1574 | return DAG.getSetCC(VT, ZextOp, |
| 1575 | DAG.getConstant(C1 & (~0ULL>>(64-ExtSrcTyBits)), |
| 1576 | ExtDstTy), |
| 1577 | Cond); |
| 1578 | } |
Chris Lattner | 5c46f74 | 2005-10-05 06:11:08 +0000 | [diff] [blame] | 1579 | |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1580 | uint64_t MinVal, MaxVal; |
| 1581 | unsigned OperandBitSize = MVT::getSizeInBits(N1C->getValueType(0)); |
| 1582 | if (ISD::isSignedIntSetCC(Cond)) { |
| 1583 | MinVal = 1ULL << (OperandBitSize-1); |
| 1584 | if (OperandBitSize != 1) // Avoid X >> 64, which is undefined. |
| 1585 | MaxVal = ~0ULL >> (65-OperandBitSize); |
| 1586 | else |
| 1587 | MaxVal = 0; |
| 1588 | } else { |
| 1589 | MinVal = 0; |
| 1590 | MaxVal = ~0ULL >> (64-OperandBitSize); |
| 1591 | } |
| 1592 | |
| 1593 | // Canonicalize GE/LE comparisons to use GT/LT comparisons. |
| 1594 | if (Cond == ISD::SETGE || Cond == ISD::SETUGE) { |
| 1595 | if (C1 == MinVal) return DAG.getConstant(1, VT); // X >= MIN --> true |
| 1596 | --C1; // X >= C0 --> X > (C0-1) |
| 1597 | return DAG.getSetCC(VT, N0, DAG.getConstant(C1, N1.getValueType()), |
| 1598 | (Cond == ISD::SETGE) ? ISD::SETGT : ISD::SETUGT); |
| 1599 | } |
| 1600 | |
| 1601 | if (Cond == ISD::SETLE || Cond == ISD::SETULE) { |
| 1602 | if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true |
| 1603 | ++C1; // X <= C0 --> X < (C0+1) |
| 1604 | return DAG.getSetCC(VT, N0, DAG.getConstant(C1, N1.getValueType()), |
| 1605 | (Cond == ISD::SETLE) ? ISD::SETLT : ISD::SETULT); |
| 1606 | } |
| 1607 | |
| 1608 | if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal) |
| 1609 | return DAG.getConstant(0, VT); // X < MIN --> false |
| 1610 | |
| 1611 | // Canonicalize setgt X, Min --> setne X, Min |
| 1612 | if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal) |
| 1613 | return DAG.getSetCC(VT, N0, N1, ISD::SETNE); |
| 1614 | |
| 1615 | // If we have setult X, 1, turn it into seteq X, 0 |
| 1616 | if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1) |
| 1617 | return DAG.getSetCC(VT, N0, DAG.getConstant(MinVal, N0.getValueType()), |
| 1618 | ISD::SETEQ); |
| 1619 | // If we have setugt X, Max-1, turn it into seteq X, Max |
| 1620 | else if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1) |
| 1621 | return DAG.getSetCC(VT, N0, DAG.getConstant(MaxVal, N0.getValueType()), |
| 1622 | ISD::SETEQ); |
| 1623 | |
| 1624 | // If we have "setcc X, C0", check to see if we can shrink the immediate |
| 1625 | // by changing cc. |
| 1626 | |
| 1627 | // SETUGT X, SINTMAX -> SETLT X, 0 |
| 1628 | if (Cond == ISD::SETUGT && OperandBitSize != 1 && |
| 1629 | C1 == (~0ULL >> (65-OperandBitSize))) |
| 1630 | return DAG.getSetCC(VT, N0, DAG.getConstant(0, N1.getValueType()), |
| 1631 | ISD::SETLT); |
| 1632 | |
| 1633 | // FIXME: Implement the rest of these. |
| 1634 | |
| 1635 | // Fold bit comparisons when we can. |
| 1636 | if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && |
| 1637 | VT == N0.getValueType() && N0.getOpcode() == ISD::AND) |
| 1638 | if (ConstantSDNode *AndRHS = |
| 1639 | dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
| 1640 | if (Cond == ISD::SETNE && C1 == 0) {// (X & 8) != 0 --> (X & 8) >> 3 |
| 1641 | // Perform the xform if the AND RHS is a single bit. |
| 1642 | if ((AndRHS->getValue() & (AndRHS->getValue()-1)) == 0) { |
| 1643 | return DAG.getNode(ISD::SRL, VT, N0, |
| 1644 | DAG.getConstant(Log2_64(AndRHS->getValue()), |
| 1645 | TLI.getShiftAmountTy())); |
| 1646 | } |
| 1647 | } else if (Cond == ISD::SETEQ && C1 == AndRHS->getValue()) { |
| 1648 | // (X & 8) == 8 --> (X & 8) >> 3 |
| 1649 | // Perform the xform if C1 is a single bit. |
| 1650 | if ((C1 & (C1-1)) == 0) { |
| 1651 | return DAG.getNode(ISD::SRL, VT, N0, |
| 1652 | DAG.getConstant(Log2_64(C1),TLI.getShiftAmountTy())); |
| 1653 | } |
| 1654 | } |
| 1655 | } |
| 1656 | } |
| 1657 | } else if (isa<ConstantSDNode>(N0.Val)) { |
| 1658 | // Ensure that the constant occurs on the RHS. |
| 1659 | return DAG.getSetCC(VT, N1, N0, ISD::getSetCCSwappedOperands(Cond)); |
| 1660 | } |
| 1661 | |
| 1662 | if (ConstantFPSDNode *N0C = dyn_cast<ConstantFPSDNode>(N0.Val)) |
| 1663 | if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) { |
| 1664 | double C0 = N0C->getValue(), C1 = N1C->getValue(); |
| 1665 | |
| 1666 | switch (Cond) { |
| 1667 | default: break; // FIXME: Implement the rest of these! |
| 1668 | case ISD::SETEQ: return DAG.getConstant(C0 == C1, VT); |
| 1669 | case ISD::SETNE: return DAG.getConstant(C0 != C1, VT); |
| 1670 | case ISD::SETLT: return DAG.getConstant(C0 < C1, VT); |
| 1671 | case ISD::SETGT: return DAG.getConstant(C0 > C1, VT); |
| 1672 | case ISD::SETLE: return DAG.getConstant(C0 <= C1, VT); |
| 1673 | case ISD::SETGE: return DAG.getConstant(C0 >= C1, VT); |
| 1674 | } |
| 1675 | } else { |
| 1676 | // Ensure that the constant occurs on the RHS. |
| 1677 | return DAG.getSetCC(VT, N1, N0, ISD::getSetCCSwappedOperands(Cond)); |
| 1678 | } |
| 1679 | |
| 1680 | if (N0 == N1) { |
| 1681 | // We can always fold X == Y for integer setcc's. |
| 1682 | if (MVT::isInteger(N0.getValueType())) |
| 1683 | return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT); |
| 1684 | unsigned UOF = ISD::getUnorderedFlavor(Cond); |
| 1685 | if (UOF == 2) // FP operators that are undefined on NaNs. |
| 1686 | return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT); |
| 1687 | if (UOF == unsigned(ISD::isTrueWhenEqual(Cond))) |
| 1688 | return DAG.getConstant(UOF, VT); |
| 1689 | // Otherwise, we can't fold it. However, we can simplify it to SETUO/SETO |
| 1690 | // if it is not already. |
| 1691 | ISD::CondCode NewCond = UOF == 0 ? ISD::SETUO : ISD::SETO; |
| 1692 | if (NewCond != Cond) |
| 1693 | return DAG.getSetCC(VT, N0, N1, NewCond); |
| 1694 | } |
| 1695 | |
| 1696 | if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && |
| 1697 | MVT::isInteger(N0.getValueType())) { |
| 1698 | if (N0.getOpcode() == ISD::ADD || N0.getOpcode() == ISD::SUB || |
| 1699 | N0.getOpcode() == ISD::XOR) { |
| 1700 | // Simplify (X+Y) == (X+Z) --> Y == Z |
| 1701 | if (N0.getOpcode() == N1.getOpcode()) { |
| 1702 | if (N0.getOperand(0) == N1.getOperand(0)) |
| 1703 | return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(1), Cond); |
| 1704 | if (N0.getOperand(1) == N1.getOperand(1)) |
| 1705 | return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(0), Cond); |
| 1706 | if (isCommutativeBinOp(N0.getOpcode())) { |
| 1707 | // If X op Y == Y op X, try other combinations. |
| 1708 | if (N0.getOperand(0) == N1.getOperand(1)) |
| 1709 | return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(0), Cond); |
| 1710 | if (N0.getOperand(1) == N1.getOperand(0)) |
| 1711 | return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(1), Cond); |
| 1712 | } |
| 1713 | } |
| 1714 | |
Chris Lattner | 5c46f74 | 2005-10-05 06:11:08 +0000 | [diff] [blame] | 1715 | // Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0. Common for condcodes. |
| 1716 | if (N0.getOpcode() == ISD::XOR) |
| 1717 | if (ConstantSDNode *XORC = dyn_cast<ConstantSDNode>(N0.getOperand(1))) |
| 1718 | if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(N1)) { |
| 1719 | // If we know that all of the inverted bits are zero, don't bother |
| 1720 | // performing the inversion. |
| 1721 | if (MaskedValueIsZero(N0.getOperand(0), ~XORC->getValue(), TLI)) |
| 1722 | return DAG.getSetCC(VT, N0.getOperand(0), |
| 1723 | DAG.getConstant(XORC->getValue()^RHSC->getValue(), |
| 1724 | N0.getValueType()), Cond); |
| 1725 | } |
| 1726 | |
Nate Begeman | 452d7be | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1727 | // Simplify (X+Z) == X --> Z == 0 |
| 1728 | if (N0.getOperand(0) == N1) |
| 1729 | return DAG.getSetCC(VT, N0.getOperand(1), |
| 1730 | DAG.getConstant(0, N0.getValueType()), Cond); |
| 1731 | if (N0.getOperand(1) == N1) { |
| 1732 | if (isCommutativeBinOp(N0.getOpcode())) |
| 1733 | return DAG.getSetCC(VT, N0.getOperand(0), |
| 1734 | DAG.getConstant(0, N0.getValueType()), Cond); |
| 1735 | else { |
| 1736 | assert(N0.getOpcode() == ISD::SUB && "Unexpected operation!"); |
| 1737 | // (Z-X) == X --> Z == X<<1 |
| 1738 | SDOperand SH = DAG.getNode(ISD::SHL, N1.getValueType(), |
| 1739 | N1, |
| 1740 | DAG.getConstant(1,TLI.getShiftAmountTy())); |
| 1741 | WorkList.push_back(SH.Val); |
| 1742 | return DAG.getSetCC(VT, N0.getOperand(0), SH, Cond); |
| 1743 | } |
| 1744 | } |
| 1745 | } |
| 1746 | |
| 1747 | if (N1.getOpcode() == ISD::ADD || N1.getOpcode() == ISD::SUB || |
| 1748 | N1.getOpcode() == ISD::XOR) { |
| 1749 | // Simplify X == (X+Z) --> Z == 0 |
| 1750 | if (N1.getOperand(0) == N0) { |
| 1751 | return DAG.getSetCC(VT, N1.getOperand(1), |
| 1752 | DAG.getConstant(0, N1.getValueType()), Cond); |
| 1753 | } else if (N1.getOperand(1) == N0) { |
| 1754 | if (isCommutativeBinOp(N1.getOpcode())) { |
| 1755 | return DAG.getSetCC(VT, N1.getOperand(0), |
| 1756 | DAG.getConstant(0, N1.getValueType()), Cond); |
| 1757 | } else { |
| 1758 | assert(N1.getOpcode() == ISD::SUB && "Unexpected operation!"); |
| 1759 | // X == (Z-X) --> X<<1 == Z |
| 1760 | SDOperand SH = DAG.getNode(ISD::SHL, N1.getValueType(), N0, |
| 1761 | DAG.getConstant(1,TLI.getShiftAmountTy())); |
| 1762 | WorkList.push_back(SH.Val); |
| 1763 | return DAG.getSetCC(VT, SH, N1.getOperand(0), Cond); |
| 1764 | } |
| 1765 | } |
| 1766 | } |
| 1767 | } |
| 1768 | |
| 1769 | // Fold away ALL boolean setcc's. |
| 1770 | SDOperand Temp; |
| 1771 | if (N0.getValueType() == MVT::i1) { |
| 1772 | switch (Cond) { |
| 1773 | default: assert(0 && "Unknown integer setcc!"); |
| 1774 | case ISD::SETEQ: // X == Y -> (X^Y)^1 |
| 1775 | Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, N1); |
| 1776 | N0 = DAG.getNode(ISD::XOR, MVT::i1, Temp, DAG.getConstant(1, MVT::i1)); |
| 1777 | WorkList.push_back(Temp.Val); |
| 1778 | break; |
| 1779 | case ISD::SETNE: // X != Y --> (X^Y) |
| 1780 | N0 = DAG.getNode(ISD::XOR, MVT::i1, N0, N1); |
| 1781 | break; |
| 1782 | case ISD::SETGT: // X >s Y --> X == 0 & Y == 1 --> X^1 & Y |
| 1783 | case ISD::SETULT: // X <u Y --> X == 0 & Y == 1 --> X^1 & Y |
| 1784 | Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1)); |
| 1785 | N0 = DAG.getNode(ISD::AND, MVT::i1, N1, Temp); |
| 1786 | WorkList.push_back(Temp.Val); |
| 1787 | break; |
| 1788 | case ISD::SETLT: // X <s Y --> X == 1 & Y == 0 --> Y^1 & X |
| 1789 | case ISD::SETUGT: // X >u Y --> X == 1 & Y == 0 --> Y^1 & X |
| 1790 | Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1)); |
| 1791 | N0 = DAG.getNode(ISD::AND, MVT::i1, N0, Temp); |
| 1792 | WorkList.push_back(Temp.Val); |
| 1793 | break; |
| 1794 | case ISD::SETULE: // X <=u Y --> X == 0 | Y == 1 --> X^1 | Y |
| 1795 | case ISD::SETGE: // X >=s Y --> X == 0 | Y == 1 --> X^1 | Y |
| 1796 | Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1)); |
| 1797 | N0 = DAG.getNode(ISD::OR, MVT::i1, N1, Temp); |
| 1798 | WorkList.push_back(Temp.Val); |
| 1799 | break; |
| 1800 | case ISD::SETUGE: // X >=u Y --> X == 1 | Y == 0 --> Y^1 | X |
| 1801 | case ISD::SETLE: // X <=s Y --> X == 1 | Y == 0 --> Y^1 | X |
| 1802 | Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1)); |
| 1803 | N0 = DAG.getNode(ISD::OR, MVT::i1, N0, Temp); |
| 1804 | break; |
| 1805 | } |
| 1806 | if (VT != MVT::i1) { |
| 1807 | WorkList.push_back(N0.Val); |
| 1808 | // FIXME: If running after legalize, we probably can't do this. |
| 1809 | N0 = DAG.getNode(ISD::ZERO_EXTEND, VT, N0); |
| 1810 | } |
| 1811 | return N0; |
| 1812 | } |
| 1813 | |
| 1814 | // Could not fold it. |
| 1815 | return SDOperand(); |
| 1816 | } |
| 1817 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1818 | // SelectionDAG::Combine - This is the entry point for the file. |
| 1819 | // |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 1820 | void SelectionDAG::Combine(bool RunningAfterLegalize) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1821 | /// run - This is the main entry point to this class. |
| 1822 | /// |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 1823 | DAGCombiner(*this).Run(RunningAfterLegalize); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1824 | } |