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 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 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. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 12 | // |
Dan Gohman | 4128700 | 2009-04-25 17:09:45 +0000 | [diff] [blame] | 13 | // This pass is not a substitute for the LLVM IR instcombine pass. This pass is |
| 14 | // primarily intended to handle simplification opportunities that are implicit |
| 15 | // in the LLVM IR and exposed by the various codegen lowering phases. |
| 16 | // |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 17 | //===----------------------------------------------------------------------===// |
| 18 | |
| 19 | #define DEBUG_TYPE "dagcombine" |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/SelectionDAG.h" |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 21 | #include "llvm/DerivedTypes.h" |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 22 | #include "llvm/LLVMContext.h" |
Chris Lattner | 00161a6 | 2008-01-25 07:20:16 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunction.h" |
| 24 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/AliasAnalysis.h" |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 26 | #include "llvm/DataLayout.h" |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetLowering.h" |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | ddae4bd | 2007-01-08 23:04:05 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallPtrSet.h" |
| 31 | #include "llvm/ADT/Statistic.h" |
Jim Laskey | d1aed7a | 2006-09-21 16:28:59 +0000 | [diff] [blame] | 32 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Debug.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 34 | #include "llvm/Support/ErrorHandling.h" |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 35 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 36 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | a500fc6 | 2005-09-09 23:53:39 +0000 | [diff] [blame] | 37 | #include <algorithm> |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 38 | using namespace llvm; |
| 39 | |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 40 | STATISTIC(NodesCombined , "Number of dag nodes combined"); |
| 41 | STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created"); |
| 42 | STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created"); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 43 | STATISTIC(OpsNarrowed , "Number of load/op/store narrowed"); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 44 | STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int"); |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 45 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 46 | namespace { |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 47 | static cl::opt<bool> |
Owen Anderson | 0dcc814 | 2010-09-19 21:01:26 +0000 | [diff] [blame] | 48 | CombinerAA("combiner-alias-analysis", cl::Hidden, |
Jim Laskey | 26f7fa7 | 2006-10-17 19:33:52 +0000 | [diff] [blame] | 49 | cl::desc("Turn on alias analysis during testing")); |
Jim Laskey | 3ad175b | 2006-10-12 15:22:24 +0000 | [diff] [blame] | 50 | |
Jim Laskey | 07a2709 | 2006-10-18 19:08:31 +0000 | [diff] [blame] | 51 | static cl::opt<bool> |
| 52 | CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden, |
| 53 | cl::desc("Include global information in alias analysis")); |
| 54 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 55 | //------------------------------ DAGCombiner ---------------------------------// |
| 56 | |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 57 | class DAGCombiner { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 58 | SelectionDAG &DAG; |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 59 | const TargetLowering &TLI; |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 60 | CombineLevel Level; |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 61 | CodeGenOpt::Level OptLevel; |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 62 | bool LegalOperations; |
| 63 | bool LegalTypes; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 64 | |
| 65 | // Worklist of all of the nodes that need to be simplified. |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 66 | // |
| 67 | // This has the semantics that when adding to the worklist, |
| 68 | // the item added must be next to be processed. It should |
| 69 | // also only appear once. The naive approach to this takes |
| 70 | // linear time. |
| 71 | // |
| 72 | // To reduce the insert/remove time to logarithmic, we use |
| 73 | // a set and a vector to maintain our worklist. |
| 74 | // |
| 75 | // The set contains the items on the worklist, but does not |
| 76 | // maintain the order they should be visited. |
| 77 | // |
| 78 | // The vector maintains the order nodes should be visited, but may |
| 79 | // contain duplicate or removed nodes. When choosing a node to |
| 80 | // visit, we pop off the order stack until we find an item that is |
| 81 | // also in the contents set. All operations are O(log N). |
| 82 | SmallPtrSet<SDNode*, 64> WorkListContents; |
Benjamin Kramer | d5f7690 | 2012-03-10 00:23:58 +0000 | [diff] [blame] | 83 | SmallVector<SDNode*, 64> WorkListOrder; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 84 | |
Jim Laskey | c7c3f11 | 2006-10-16 20:52:31 +0000 | [diff] [blame] | 85 | // AA - Used for DAG load/store alias analysis. |
| 86 | AliasAnalysis &AA; |
| 87 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 88 | /// AddUsersToWorkList - When an instruction is simplified, add all users of |
| 89 | /// the instruction to the work lists because they might get more simplified |
| 90 | /// now. |
| 91 | /// |
| 92 | void AddUsersToWorkList(SDNode *N) { |
| 93 | for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 94 | UI != UE; ++UI) |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 95 | AddToWorkList(*UI); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 98 | /// visit - call the node-specific routine that knows how to fold each |
| 99 | /// particular type of node. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 100 | SDValue visit(SDNode *N); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 101 | |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 102 | public: |
James Molloy | 6afa3f7 | 2012-02-16 09:48:07 +0000 | [diff] [blame] | 103 | /// AddToWorkList - Add to the work list making sure its instance is at the |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 104 | /// back (next to be processed.) |
Chris Lattner | 5750df9 | 2006-03-01 04:03:14 +0000 | [diff] [blame] | 105 | void AddToWorkList(SDNode *N) { |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 106 | WorkListContents.insert(N); |
| 107 | WorkListOrder.push_back(N); |
Chris Lattner | 5750df9 | 2006-03-01 04:03:14 +0000 | [diff] [blame] | 108 | } |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 109 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 110 | /// removeFromWorkList - remove all instances of N from the worklist. |
| 111 | /// |
| 112 | void removeFromWorkList(SDNode *N) { |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 113 | WorkListContents.erase(N); |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 114 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 115 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 116 | SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 117 | bool AddTo = true); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 118 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 119 | SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) { |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 120 | return CombineTo(N, &Res, 1, AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 121 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 122 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 123 | SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 124 | bool AddTo = true) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 125 | SDValue To[] = { Res0, Res1 }; |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 126 | return CombineTo(N, To, 2, AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 127 | } |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 128 | |
| 129 | void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 130 | |
| 131 | private: |
| 132 | |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 133 | /// SimplifyDemandedBits - Check the specified integer node value to see if |
Chris Lattner | b2742f4 | 2006-03-01 19:55:35 +0000 | [diff] [blame] | 134 | /// it can be simplified or if things it uses can be simplified by bit |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 135 | /// propagation. If so, return true. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 136 | bool SimplifyDemandedBits(SDValue Op) { |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 137 | unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits(); |
| 138 | APInt Demanded = APInt::getAllOnesValue(BitWidth); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 139 | return SimplifyDemandedBits(Op, Demanded); |
| 140 | } |
| 141 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 142 | bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded); |
Chris Lattner | 87514ca | 2005-10-10 22:31:19 +0000 | [diff] [blame] | 143 | |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 144 | bool CombineToPreIndexedLoadStore(SDNode *N); |
| 145 | bool CombineToPostIndexedLoadStore(SDNode *N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 146 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 147 | void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad); |
| 148 | SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace); |
| 149 | SDValue SExtPromoteOperand(SDValue Op, EVT PVT); |
| 150 | SDValue ZExtPromoteOperand(SDValue Op, EVT PVT); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 151 | SDValue PromoteIntBinOp(SDValue Op); |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 152 | SDValue PromoteIntShiftOp(SDValue Op); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 153 | SDValue PromoteExtend(SDValue Op); |
| 154 | bool PromoteLoad(SDValue Op); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 155 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 156 | void ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs, |
| 157 | SDValue Trunc, SDValue ExtLoad, DebugLoc DL, |
| 158 | ISD::NodeType ExtType); |
| 159 | |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 160 | /// combine - call the node-specific routine that knows how to fold each |
| 161 | /// particular type of node. If that doesn't do anything, try the |
| 162 | /// target-specific DAG combines. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 163 | SDValue combine(SDNode *N); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 164 | |
| 165 | // Visitation implementation - Implement dag node combining for different |
| 166 | // node types. The semantics are as follows: |
| 167 | // Return Value: |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 168 | // SDValue.getNode() == 0 - No change was made |
| 169 | // SDValue.getNode() == N - N was replaced, is dead and has been handled. |
| 170 | // otherwise - N should be replaced by the returned Operand. |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 171 | // |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 172 | SDValue visitTokenFactor(SDNode *N); |
| 173 | SDValue visitMERGE_VALUES(SDNode *N); |
| 174 | SDValue visitADD(SDNode *N); |
| 175 | SDValue visitSUB(SDNode *N); |
| 176 | SDValue visitADDC(SDNode *N); |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 177 | SDValue visitSUBC(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 178 | SDValue visitADDE(SDNode *N); |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 179 | SDValue visitSUBE(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 180 | SDValue visitMUL(SDNode *N); |
| 181 | SDValue visitSDIV(SDNode *N); |
| 182 | SDValue visitUDIV(SDNode *N); |
| 183 | SDValue visitSREM(SDNode *N); |
| 184 | SDValue visitUREM(SDNode *N); |
| 185 | SDValue visitMULHU(SDNode *N); |
| 186 | SDValue visitMULHS(SDNode *N); |
| 187 | SDValue visitSMUL_LOHI(SDNode *N); |
| 188 | SDValue visitUMUL_LOHI(SDNode *N); |
Benjamin Kramer | f55d26e | 2011-05-21 18:31:55 +0000 | [diff] [blame] | 189 | SDValue visitSMULO(SDNode *N); |
| 190 | SDValue visitUMULO(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 191 | SDValue visitSDIVREM(SDNode *N); |
| 192 | SDValue visitUDIVREM(SDNode *N); |
| 193 | SDValue visitAND(SDNode *N); |
| 194 | SDValue visitOR(SDNode *N); |
| 195 | SDValue visitXOR(SDNode *N); |
| 196 | SDValue SimplifyVBinOp(SDNode *N); |
Craig Topper | dd201ff | 2012-09-11 01:45:21 +0000 | [diff] [blame] | 197 | SDValue SimplifyVUnaryOp(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 198 | SDValue visitSHL(SDNode *N); |
| 199 | SDValue visitSRA(SDNode *N); |
| 200 | SDValue visitSRL(SDNode *N); |
| 201 | SDValue visitCTLZ(SDNode *N); |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 202 | SDValue visitCTLZ_ZERO_UNDEF(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 203 | SDValue visitCTTZ(SDNode *N); |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 204 | SDValue visitCTTZ_ZERO_UNDEF(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 205 | SDValue visitCTPOP(SDNode *N); |
| 206 | SDValue visitSELECT(SDNode *N); |
| 207 | SDValue visitSELECT_CC(SDNode *N); |
| 208 | SDValue visitSETCC(SDNode *N); |
| 209 | SDValue visitSIGN_EXTEND(SDNode *N); |
| 210 | SDValue visitZERO_EXTEND(SDNode *N); |
| 211 | SDValue visitANY_EXTEND(SDNode *N); |
| 212 | SDValue visitSIGN_EXTEND_INREG(SDNode *N); |
| 213 | SDValue visitTRUNCATE(SDNode *N); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 214 | SDValue visitBITCAST(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 215 | SDValue visitBUILD_PAIR(SDNode *N); |
| 216 | SDValue visitFADD(SDNode *N); |
| 217 | SDValue visitFSUB(SDNode *N); |
| 218 | SDValue visitFMUL(SDNode *N); |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 219 | SDValue visitFMA(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 220 | SDValue visitFDIV(SDNode *N); |
| 221 | SDValue visitFREM(SDNode *N); |
| 222 | SDValue visitFCOPYSIGN(SDNode *N); |
| 223 | SDValue visitSINT_TO_FP(SDNode *N); |
| 224 | SDValue visitUINT_TO_FP(SDNode *N); |
| 225 | SDValue visitFP_TO_SINT(SDNode *N); |
| 226 | SDValue visitFP_TO_UINT(SDNode *N); |
| 227 | SDValue visitFP_ROUND(SDNode *N); |
| 228 | SDValue visitFP_ROUND_INREG(SDNode *N); |
| 229 | SDValue visitFP_EXTEND(SDNode *N); |
| 230 | SDValue visitFNEG(SDNode *N); |
| 231 | SDValue visitFABS(SDNode *N); |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 232 | SDValue visitFCEIL(SDNode *N); |
| 233 | SDValue visitFTRUNC(SDNode *N); |
| 234 | SDValue visitFFLOOR(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 235 | SDValue visitBRCOND(SDNode *N); |
| 236 | SDValue visitBR_CC(SDNode *N); |
| 237 | SDValue visitLOAD(SDNode *N); |
| 238 | SDValue visitSTORE(SDNode *N); |
| 239 | SDValue visitINSERT_VECTOR_ELT(SDNode *N); |
| 240 | SDValue visitEXTRACT_VECTOR_ELT(SDNode *N); |
| 241 | SDValue visitBUILD_VECTOR(SDNode *N); |
| 242 | SDValue visitCONCAT_VECTORS(SDNode *N); |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 243 | SDValue visitEXTRACT_SUBVECTOR(SDNode *N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 244 | SDValue visitVECTOR_SHUFFLE(SDNode *N); |
Jim Grosbach | 9a52649 | 2010-06-23 16:07:42 +0000 | [diff] [blame] | 245 | SDValue visitMEMBARRIER(SDNode *N); |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 246 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 247 | SDValue XformToShuffleWithZero(SDNode *N); |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 248 | SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 249 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 250 | SDValue visitShiftByConstant(SDNode *N, unsigned Amt); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 251 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 252 | bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS); |
| 253 | SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 254 | SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 255 | SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2, |
| 256 | SDValue N3, ISD::CondCode CC, |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 257 | bool NotExtCompare = false); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 258 | SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond, |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 259 | DebugLoc DL, bool foldBooleans = true); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 260 | SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 261 | unsigned HiOp); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 262 | SDValue CombineConsecutiveLoads(SDNode *N, EVT VT); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 263 | SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 264 | SDValue BuildSDIV(SDNode *N); |
| 265 | SDValue BuildUDIV(SDNode *N); |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 266 | SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1, |
| 267 | bool DemandHighBits = true); |
| 268 | SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1); |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 269 | SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 270 | SDValue ReduceLoadWidth(SDNode *N); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 271 | SDValue ReduceLoadOpStoreWidth(SDNode *N); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 272 | SDValue TransformFPLoadStorePair(SDNode *N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 273 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 274 | SDValue GetDemandedBits(SDValue V, const APInt &Mask); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 275 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 276 | /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes, |
| 277 | /// looking for aliasing nodes and adding them to the Aliases vector. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 278 | void GatherAllAliases(SDNode *N, SDValue OriginalChain, |
| 279 | SmallVector<SDValue, 8> &Aliases); |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 280 | |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 281 | /// isAlias - Return true if there is any possibility that the two addresses |
| 282 | /// overlap. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 283 | bool isAlias(SDValue Ptr1, int64_t Size1, |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 284 | const Value *SrcValue1, int SrcValueOffset1, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 285 | unsigned SrcValueAlign1, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 286 | const MDNode *TBAAInfo1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 287 | SDValue Ptr2, int64_t Size2, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 288 | const Value *SrcValue2, int SrcValueOffset2, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 289 | unsigned SrcValueAlign2, |
| 290 | const MDNode *TBAAInfo2) const; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 291 | |
Jim Laskey | 7ca56af | 2006-10-11 13:47:09 +0000 | [diff] [blame] | 292 | /// FindAliasInfo - Extracts the relevant alias information from the memory |
| 293 | /// node. Returns true if the operand was a load. |
| 294 | bool FindAliasInfo(SDNode *N, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 295 | SDValue &Ptr, int64_t &Size, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 296 | const Value *&SrcValue, int &SrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 297 | unsigned &SrcValueAlignment, |
| 298 | const MDNode *&TBAAInfo) const; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 299 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 300 | /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 301 | /// looking for a better chain (aliasing node.) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 302 | SDValue FindBetterChain(SDNode *N, SDValue Chain); |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 303 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 304 | /// Merge consecutive store operations into a wide store. |
| 305 | /// This optimization uses wide integers or vectors when possible. |
| 306 | /// \return True if some memory operations were changed. |
| 307 | bool MergeConsecutiveStores(StoreSDNode *N); |
| 308 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 309 | public: |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 310 | DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL) |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 311 | : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes), |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 312 | OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {} |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 313 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 314 | /// Run - runs the dag combiner on all nodes in the work list |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 315 | void Run(CombineLevel AtLevel); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 316 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 317 | SelectionDAG &getDAG() const { return DAG; } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 318 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 319 | /// getShiftAmountTy - Returns a type large enough to hold any valid |
| 320 | /// shift amount - before type legalization these can be huge. |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 321 | EVT getShiftAmountTy(EVT LHSTy) { |
| 322 | return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy(); |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 323 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 324 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 325 | /// isTypeLegal - This method returns true if we are running before type |
| 326 | /// legalization or if the specified VT is legal. |
| 327 | bool isTypeLegal(const EVT &VT) { |
| 328 | if (!LegalTypes) return true; |
| 329 | return TLI.isTypeLegal(VT); |
| 330 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 331 | }; |
| 332 | } |
| 333 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 334 | |
| 335 | namespace { |
| 336 | /// WorkListRemover - This class is a DAGUpdateListener that removes any deleted |
| 337 | /// nodes from the worklist. |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 338 | class WorkListRemover : public SelectionDAG::DAGUpdateListener { |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 339 | DAGCombiner &DC; |
| 340 | public: |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 341 | explicit WorkListRemover(DAGCombiner &dc) |
| 342 | : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {} |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 343 | |
Duncan Sands | edfcf59 | 2008-06-11 11:42:12 +0000 | [diff] [blame] | 344 | virtual void NodeDeleted(SDNode *N, SDNode *E) { |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 345 | DC.removeFromWorkList(N); |
| 346 | } |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 347 | }; |
| 348 | } |
| 349 | |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 350 | //===----------------------------------------------------------------------===// |
| 351 | // TargetLowering::DAGCombinerInfo implementation |
| 352 | //===----------------------------------------------------------------------===// |
| 353 | |
| 354 | void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) { |
| 355 | ((DAGCombiner*)DC)->AddToWorkList(N); |
| 356 | } |
| 357 | |
Cameron Zwarich | ed3caf9 | 2011-04-02 02:40:26 +0000 | [diff] [blame] | 358 | void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) { |
| 359 | ((DAGCombiner*)DC)->removeFromWorkList(N); |
| 360 | } |
| 361 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 362 | SDValue TargetLowering::DAGCombinerInfo:: |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 363 | CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) { |
| 364 | return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 365 | } |
| 366 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 367 | SDValue TargetLowering::DAGCombinerInfo:: |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 368 | CombineTo(SDNode *N, SDValue Res, bool AddTo) { |
| 369 | return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 373 | SDValue TargetLowering::DAGCombinerInfo:: |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 374 | CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) { |
| 375 | return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 376 | } |
| 377 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 378 | void TargetLowering::DAGCombinerInfo:: |
| 379 | CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { |
| 380 | return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO); |
| 381 | } |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 382 | |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 383 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 384 | // Helper Functions |
| 385 | //===----------------------------------------------------------------------===// |
| 386 | |
| 387 | /// isNegatibleForFree - Return 1 if we can compute the negated form of the |
| 388 | /// specified expression for the same cost as the expression itself, or 2 if we |
| 389 | /// can compute the negated form more cheaply than the expression itself. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 390 | static char isNegatibleForFree(SDValue Op, bool LegalOperations, |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 391 | const TargetLowering &TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 392 | const TargetOptions *Options, |
Chris Lattner | 0254e70 | 2008-02-26 07:04:54 +0000 | [diff] [blame] | 393 | unsigned Depth = 0) { |
Dale Johannesen | db44bf8 | 2007-10-16 23:38:29 +0000 | [diff] [blame] | 394 | // No compile time optimizations on this type. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 395 | if (Op.getValueType() == MVT::ppcf128) |
Dale Johannesen | db44bf8 | 2007-10-16 23:38:29 +0000 | [diff] [blame] | 396 | return 0; |
| 397 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 398 | // fneg is removable even if it has multiple uses. |
| 399 | if (Op.getOpcode() == ISD::FNEG) return 2; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 400 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 401 | // Don't allow anything with multiple uses. |
| 402 | if (!Op.hasOneUse()) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 403 | |
Chris Lattner | 3adf951 | 2007-05-25 02:19:06 +0000 | [diff] [blame] | 404 | // Don't recurse exponentially. |
| 405 | if (Depth > 6) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 406 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 407 | switch (Op.getOpcode()) { |
| 408 | default: return false; |
| 409 | case ISD::ConstantFP: |
Chris Lattner | 0254e70 | 2008-02-26 07:04:54 +0000 | [diff] [blame] | 410 | // Don't invert constant FP values after legalize. The negated constant |
| 411 | // isn't necessarily legal. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 412 | return LegalOperations ? 0 : 1; |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 413 | case ISD::FADD: |
| 414 | // FIXME: determine better conditions for this xform. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 415 | if (!Options->UnsafeFPMath) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 416 | |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 417 | // After operation legalization, it might not be legal to create new FSUBs. |
| 418 | if (LegalOperations && |
| 419 | !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) |
| 420 | return 0; |
| 421 | |
Craig Topper | 956342b | 2012-09-09 22:58:45 +0000 | [diff] [blame] | 422 | // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 423 | if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, |
| 424 | Options, Depth + 1)) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 425 | return V; |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 426 | // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 427 | return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 428 | Depth + 1); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 429 | case ISD::FSUB: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 430 | // We can't turn -(A-B) into B-A when we honor signed zeros. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 431 | if (!Options->UnsafeFPMath) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 432 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 433 | // fold (fneg (fsub A, B)) -> (fsub B, A) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 434 | return 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 435 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 436 | case ISD::FMUL: |
| 437 | case ISD::FDIV: |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 438 | if (Options->HonorSignDependentRoundingFPMath()) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 439 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 440 | // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y)) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 441 | if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, |
| 442 | Options, Depth + 1)) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 443 | return V; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 444 | |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 445 | return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 446 | Depth + 1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 447 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 448 | case ISD::FP_EXTEND: |
| 449 | case ISD::FP_ROUND: |
| 450 | case ISD::FSIN: |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 451 | return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 452 | Depth + 1); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | |
| 456 | /// GetNegatedExpression - If isNegatibleForFree returns true, this function |
| 457 | /// returns the newly negated expression. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 458 | static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 459 | bool LegalOperations, unsigned Depth = 0) { |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 460 | // fneg is removable even if it has multiple uses. |
| 461 | if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 462 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 463 | // Don't allow anything with multiple uses. |
| 464 | assert(Op.hasOneUse() && "Unknown reuse!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 465 | |
Chris Lattner | 3adf951 | 2007-05-25 02:19:06 +0000 | [diff] [blame] | 466 | assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree"); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 467 | switch (Op.getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 468 | default: llvm_unreachable("Unknown code"); |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 469 | case ISD::ConstantFP: { |
| 470 | APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF(); |
| 471 | V.changeSign(); |
| 472 | return DAG.getConstantFP(V, Op.getValueType()); |
| 473 | } |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 474 | case ISD::FADD: |
| 475 | // FIXME: determine better conditions for this xform. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 476 | assert(DAG.getTarget().Options.UnsafeFPMath); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 477 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 478 | // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 479 | if (isNegatibleForFree(Op.getOperand(0), LegalOperations, |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 480 | DAG.getTargetLoweringInfo(), |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 481 | &DAG.getTarget().Options, Depth+1)) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 482 | return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 483 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 484 | LegalOperations, Depth+1), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 485 | Op.getOperand(1)); |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 486 | // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 487 | return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 488 | GetNegatedExpression(Op.getOperand(1), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 489 | LegalOperations, Depth+1), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 490 | Op.getOperand(0)); |
| 491 | case ISD::FSUB: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 492 | // We can't turn -(A-B) into B-A when we honor signed zeros. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 493 | assert(DAG.getTarget().Options.UnsafeFPMath); |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 494 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 495 | // fold (fneg (fsub 0, B)) -> B |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 496 | if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0))) |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 497 | if (N0CFP->getValueAPF().isZero()) |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 498 | return Op.getOperand(1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 499 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 500 | // fold (fneg (fsub A, B)) -> (fsub B, A) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 501 | return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(), |
| 502 | Op.getOperand(1), Op.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 503 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 504 | case ISD::FMUL: |
| 505 | case ISD::FDIV: |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 506 | assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 507 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 508 | // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 509 | if (isNegatibleForFree(Op.getOperand(0), LegalOperations, |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 510 | DAG.getTargetLoweringInfo(), |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 511 | &DAG.getTarget().Options, Depth+1)) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 512 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 513 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 514 | LegalOperations, Depth+1), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 515 | Op.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 516 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 517 | // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y)) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 518 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 519 | Op.getOperand(0), |
Chris Lattner | 0254e70 | 2008-02-26 07:04:54 +0000 | [diff] [blame] | 520 | GetNegatedExpression(Op.getOperand(1), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 521 | LegalOperations, Depth+1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 522 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 523 | case ISD::FP_EXTEND: |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 524 | case ISD::FSIN: |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 525 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 526 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 527 | LegalOperations, Depth+1)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 528 | case ISD::FP_ROUND: |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 529 | return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 530 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 531 | LegalOperations, Depth+1), |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 532 | Op.getOperand(1)); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 533 | } |
| 534 | } |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 535 | |
| 536 | |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 537 | // isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc |
| 538 | // that selects between the values 1 and 0, making it equivalent to a setcc. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 539 | // Also, set the incoming LHS, RHS, and CC references to the appropriate |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 540 | // nodes based on the type of node we are checking. This simplifies life a |
| 541 | // bit for the callers. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 542 | static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS, |
| 543 | SDValue &CC) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 544 | if (N.getOpcode() == ISD::SETCC) { |
| 545 | LHS = N.getOperand(0); |
| 546 | RHS = N.getOperand(1); |
| 547 | CC = N.getOperand(2); |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 548 | return true; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 549 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 550 | if (N.getOpcode() == ISD::SELECT_CC && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 551 | N.getOperand(2).getOpcode() == ISD::Constant && |
| 552 | N.getOperand(3).getOpcode() == ISD::Constant && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 553 | cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 && |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 554 | cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) { |
| 555 | LHS = N.getOperand(0); |
| 556 | RHS = N.getOperand(1); |
| 557 | CC = N.getOperand(4); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 558 | return true; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 559 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 560 | return false; |
| 561 | } |
| 562 | |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 563 | // isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only |
| 564 | // one use. If this is true, it allows the users to invert the operation for |
| 565 | // free when it is profitable to do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 566 | static bool isOneUseSetCC(SDValue N) { |
| 567 | SDValue N0, N1, N2; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 568 | if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse()) |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 569 | return true; |
| 570 | return false; |
| 571 | } |
| 572 | |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 573 | SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL, |
| 574 | SDValue N0, SDValue N1) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 575 | EVT VT = N0.getValueType(); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 576 | if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) { |
| 577 | if (isa<ConstantSDNode>(N1)) { |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 578 | // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2)) |
Bill Wendling | 6af7618 | 2009-01-30 20:50:00 +0000 | [diff] [blame] | 579 | SDValue OpNode = |
| 580 | DAG.FoldConstantArithmetic(Opc, VT, |
| 581 | cast<ConstantSDNode>(N0.getOperand(1)), |
| 582 | cast<ConstantSDNode>(N1)); |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 583 | return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 584 | } |
| 585 | if (N0.hasOneUse()) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 586 | // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 587 | SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT, |
| 588 | N0.getOperand(0), N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 589 | AddToWorkList(OpNode.getNode()); |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 590 | return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1)); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 591 | } |
| 592 | } |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 593 | |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 594 | if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) { |
| 595 | if (isa<ConstantSDNode>(N0)) { |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 596 | // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2)) |
Bill Wendling | 6af7618 | 2009-01-30 20:50:00 +0000 | [diff] [blame] | 597 | SDValue OpNode = |
| 598 | DAG.FoldConstantArithmetic(Opc, VT, |
| 599 | cast<ConstantSDNode>(N1.getOperand(1)), |
| 600 | cast<ConstantSDNode>(N0)); |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 601 | return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 602 | } |
| 603 | if (N1.hasOneUse()) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 604 | // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 605 | SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT, |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 606 | N1.getOperand(0), N0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 607 | AddToWorkList(OpNode.getNode()); |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 608 | return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1)); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 609 | } |
| 610 | } |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 611 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 612 | return SDValue(); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 615 | SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, |
| 616 | bool AddTo) { |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 617 | assert(N->getNumValues() == NumTo && "Broken CombineTo call!"); |
| 618 | ++NodesCombined; |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 619 | DEBUG(dbgs() << "\nReplacing.1 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 620 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 621 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 622 | To[0].getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 623 | dbgs() << " and " << NumTo-1 << " other values\n"; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 624 | for (unsigned i = 0, e = NumTo; i != e; ++i) |
Jakob Stoklund Olesen | 9f0d4e6 | 2009-12-03 05:15:35 +0000 | [diff] [blame] | 625 | assert((!To[i].getNode() || |
| 626 | N->getValueType(i) == To[i].getValueType()) && |
Dan Gohman | 764fd0c | 2009-01-21 15:17:51 +0000 | [diff] [blame] | 627 | "Cannot combine value to value of different type!")); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 628 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 629 | DAG.ReplaceAllUsesWith(N, To); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 630 | if (AddTo) { |
| 631 | // Push the new nodes and any users onto the worklist |
| 632 | for (unsigned i = 0, e = NumTo; i != e; ++i) { |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 633 | if (To[i].getNode()) { |
| 634 | AddToWorkList(To[i].getNode()); |
| 635 | AddUsersToWorkList(To[i].getNode()); |
| 636 | } |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 637 | } |
| 638 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 639 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 640 | // Finally, if the node is now dead, remove it from the graph. The node |
| 641 | // may not be dead if the replacement process recursively simplified to |
| 642 | // something else needing this node. |
| 643 | if (N->use_empty()) { |
| 644 | // Nodes can be reintroduced into the worklist. Make sure we do not |
| 645 | // process a node that has been replaced. |
| 646 | removeFromWorkList(N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 647 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 648 | // Finally, since the node is now dead, remove it from the graph. |
| 649 | DAG.DeleteNode(N); |
| 650 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 651 | return SDValue(N, 0); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 652 | } |
| 653 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 654 | void DAGCombiner:: |
| 655 | CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 656 | // Replace all uses. If any nodes become isomorphic to other nodes and |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 657 | // are deleted, make sure to remove them from our worklist. |
| 658 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 659 | DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 660 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 661 | // Push the new node and any (possibly new) users onto the worklist. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 662 | AddToWorkList(TLO.New.getNode()); |
| 663 | AddUsersToWorkList(TLO.New.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 664 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 665 | // Finally, if the node is now dead, remove it from the graph. The node |
| 666 | // may not be dead if the replacement process recursively simplified to |
| 667 | // something else needing this node. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 668 | if (TLO.Old.getNode()->use_empty()) { |
| 669 | removeFromWorkList(TLO.Old.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 670 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 671 | // If the operands of this node are only used by the node, they will now |
| 672 | // be dead. Make sure to visit them first to delete dead nodes early. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 673 | for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i) |
| 674 | if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse()) |
| 675 | AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 676 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 677 | DAG.DeleteNode(TLO.Old.getNode()); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 678 | } |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | /// SimplifyDemandedBits - Check the specified integer node value to see if |
| 682 | /// it can be simplified or if things it uses can be simplified by bit |
| 683 | /// propagation. If so, return true. |
| 684 | bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 685 | TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 686 | APInt KnownZero, KnownOne; |
| 687 | if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO)) |
| 688 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 689 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 690 | // Revisit the node. |
| 691 | AddToWorkList(Op.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 692 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 693 | // Replace the old value with the new one. |
| 694 | ++NodesCombined; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 695 | DEBUG(dbgs() << "\nReplacing.2 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 696 | TLO.Old.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 697 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 698 | TLO.New.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 699 | dbgs() << '\n'); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 700 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 701 | CommitTargetLoweringOpt(TLO); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 702 | return true; |
| 703 | } |
| 704 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 705 | void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) { |
| 706 | DebugLoc dl = Load->getDebugLoc(); |
| 707 | EVT VT = Load->getValueType(0); |
| 708 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0)); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 709 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 710 | DEBUG(dbgs() << "\nReplacing.9 "; |
| 711 | Load->dump(&DAG); |
| 712 | dbgs() << "\nWith: "; |
| 713 | Trunc.getNode()->dump(&DAG); |
| 714 | dbgs() << '\n'); |
| 715 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 716 | DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc); |
| 717 | DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1)); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 718 | removeFromWorkList(Load); |
| 719 | DAG.DeleteNode(Load); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 720 | AddToWorkList(Trunc.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) { |
| 724 | Replace = false; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 725 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 726 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) { |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 727 | EVT MemVT = LD->getMemoryVT(); |
| 728 | ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 729 | ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 730 | : ISD::EXTLOAD) |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 731 | : LD->getExtensionType(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 732 | Replace = true; |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 733 | return DAG.getExtLoad(ExtType, dl, PVT, |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 734 | LD->getChain(), LD->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 735 | LD->getPointerInfo(), |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 736 | MemVT, LD->isVolatile(), |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 737 | LD->isNonTemporal(), LD->getAlignment()); |
| 738 | } |
| 739 | |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 740 | unsigned Opc = Op.getOpcode(); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 741 | switch (Opc) { |
| 742 | default: break; |
| 743 | case ISD::AssertSext: |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 744 | return DAG.getNode(ISD::AssertSext, dl, PVT, |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 745 | SExtPromoteOperand(Op.getOperand(0), PVT), |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 746 | Op.getOperand(1)); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 747 | case ISD::AssertZext: |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 748 | return DAG.getNode(ISD::AssertZext, dl, PVT, |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 749 | ZExtPromoteOperand(Op.getOperand(0), PVT), |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 750 | Op.getOperand(1)); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 751 | case ISD::Constant: { |
| 752 | unsigned ExtOpc = |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 753 | Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 754 | return DAG.getNode(ExtOpc, dl, PVT, Op); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 755 | } |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT)) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 759 | return SDValue(); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 760 | return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 761 | } |
| 762 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 763 | SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 764 | if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT)) |
| 765 | return SDValue(); |
| 766 | EVT OldVT = Op.getValueType(); |
| 767 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 768 | bool Replace = false; |
| 769 | SDValue NewOp = PromoteOperand(Op, PVT, Replace); |
| 770 | if (NewOp.getNode() == 0) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 771 | return SDValue(); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 772 | AddToWorkList(NewOp.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 773 | |
| 774 | if (Replace) |
| 775 | ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); |
| 776 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp, |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 777 | DAG.getValueType(OldVT)); |
| 778 | } |
| 779 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 780 | SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 781 | EVT OldVT = Op.getValueType(); |
| 782 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 783 | bool Replace = false; |
| 784 | SDValue NewOp = PromoteOperand(Op, PVT, Replace); |
| 785 | if (NewOp.getNode() == 0) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 786 | return SDValue(); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 787 | AddToWorkList(NewOp.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 788 | |
| 789 | if (Replace) |
| 790 | ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); |
| 791 | return DAG.getZeroExtendInReg(NewOp, dl, OldVT); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 792 | } |
| 793 | |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 794 | /// PromoteIntBinOp - Promote the specified integer binary operation if the |
| 795 | /// target indicates it is beneficial. e.g. On x86, it's usually better to |
| 796 | /// promote i16 operations to i32 since i16 instructions are longer. |
| 797 | SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) { |
| 798 | if (!LegalOperations) |
| 799 | return SDValue(); |
| 800 | |
| 801 | EVT VT = Op.getValueType(); |
| 802 | if (VT.isVector() || !VT.isInteger()) |
| 803 | return SDValue(); |
| 804 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 805 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 806 | // promoting it. |
| 807 | unsigned Opc = Op.getOpcode(); |
| 808 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 809 | return SDValue(); |
| 810 | |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 811 | EVT PVT = VT; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 812 | // Consult target whether it is a good idea to promote this operation and |
| 813 | // what's the right type to promote it to. |
| 814 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 815 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 816 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 817 | bool Replace0 = false; |
| 818 | SDValue N0 = Op.getOperand(0); |
| 819 | SDValue NN0 = PromoteOperand(N0, PVT, Replace0); |
| 820 | if (NN0.getNode() == 0) |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 821 | return SDValue(); |
| 822 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 823 | bool Replace1 = false; |
| 824 | SDValue N1 = Op.getOperand(1); |
Evan Cheng | aad753b | 2010-05-10 19:03:57 +0000 | [diff] [blame] | 825 | SDValue NN1; |
| 826 | if (N0 == N1) |
| 827 | NN1 = NN0; |
| 828 | else { |
| 829 | NN1 = PromoteOperand(N1, PVT, Replace1); |
| 830 | if (NN1.getNode() == 0) |
| 831 | return SDValue(); |
| 832 | } |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 833 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 834 | AddToWorkList(NN0.getNode()); |
Evan Cheng | aad753b | 2010-05-10 19:03:57 +0000 | [diff] [blame] | 835 | if (NN1.getNode()) |
| 836 | AddToWorkList(NN1.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 837 | |
| 838 | if (Replace0) |
| 839 | ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode()); |
| 840 | if (Replace1) |
| 841 | ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode()); |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 842 | |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 843 | DEBUG(dbgs() << "\nPromoting "; |
| 844 | Op.getNode()->dump(&DAG)); |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 845 | DebugLoc dl = Op.getDebugLoc(); |
| 846 | return DAG.getNode(ISD::TRUNCATE, dl, VT, |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 847 | DAG.getNode(Opc, dl, PVT, NN0, NN1)); |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 848 | } |
| 849 | return SDValue(); |
| 850 | } |
| 851 | |
| 852 | /// PromoteIntShiftOp - Promote the specified integer shift operation if the |
| 853 | /// target indicates it is beneficial. e.g. On x86, it's usually better to |
| 854 | /// promote i16 operations to i32 since i16 instructions are longer. |
| 855 | SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) { |
| 856 | if (!LegalOperations) |
| 857 | return SDValue(); |
| 858 | |
| 859 | EVT VT = Op.getValueType(); |
| 860 | if (VT.isVector() || !VT.isInteger()) |
| 861 | return SDValue(); |
| 862 | |
| 863 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 864 | // promoting it. |
| 865 | unsigned Opc = Op.getOpcode(); |
| 866 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 867 | return SDValue(); |
| 868 | |
| 869 | EVT PVT = VT; |
| 870 | // Consult target whether it is a good idea to promote this operation and |
| 871 | // what's the right type to promote it to. |
| 872 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
| 873 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 874 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 875 | bool Replace = false; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 876 | SDValue N0 = Op.getOperand(0); |
| 877 | if (Opc == ISD::SRA) |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 878 | N0 = SExtPromoteOperand(Op.getOperand(0), PVT); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 879 | else if (Opc == ISD::SRL) |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 880 | N0 = ZExtPromoteOperand(Op.getOperand(0), PVT); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 881 | else |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 882 | N0 = PromoteOperand(N0, PVT, Replace); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 883 | if (N0.getNode() == 0) |
| 884 | return SDValue(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 885 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 886 | AddToWorkList(N0.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 887 | if (Replace) |
| 888 | ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode()); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 889 | |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 890 | DEBUG(dbgs() << "\nPromoting "; |
| 891 | Op.getNode()->dump(&DAG)); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 892 | DebugLoc dl = Op.getDebugLoc(); |
| 893 | return DAG.getNode(ISD::TRUNCATE, dl, VT, |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 894 | DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1))); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 895 | } |
| 896 | return SDValue(); |
| 897 | } |
| 898 | |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 899 | SDValue DAGCombiner::PromoteExtend(SDValue Op) { |
| 900 | if (!LegalOperations) |
| 901 | return SDValue(); |
| 902 | |
| 903 | EVT VT = Op.getValueType(); |
| 904 | if (VT.isVector() || !VT.isInteger()) |
| 905 | return SDValue(); |
| 906 | |
| 907 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 908 | // promoting it. |
| 909 | unsigned Opc = Op.getOpcode(); |
| 910 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 911 | return SDValue(); |
| 912 | |
| 913 | EVT PVT = VT; |
| 914 | // Consult target whether it is a good idea to promote this operation and |
| 915 | // what's the right type to promote it to. |
| 916 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
| 917 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 918 | // fold (aext (aext x)) -> (aext x) |
| 919 | // fold (aext (zext x)) -> (zext x) |
| 920 | // fold (aext (sext x)) -> (sext x) |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 921 | DEBUG(dbgs() << "\nPromoting "; |
| 922 | Op.getNode()->dump(&DAG)); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 923 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0)); |
| 924 | } |
| 925 | return SDValue(); |
| 926 | } |
| 927 | |
| 928 | bool DAGCombiner::PromoteLoad(SDValue Op) { |
| 929 | if (!LegalOperations) |
| 930 | return false; |
| 931 | |
| 932 | EVT VT = Op.getValueType(); |
| 933 | if (VT.isVector() || !VT.isInteger()) |
| 934 | return false; |
| 935 | |
| 936 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 937 | // promoting it. |
| 938 | unsigned Opc = Op.getOpcode(); |
| 939 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 940 | return false; |
| 941 | |
| 942 | EVT PVT = VT; |
| 943 | // Consult target whether it is a good idea to promote this operation and |
| 944 | // what's the right type to promote it to. |
| 945 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
| 946 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 947 | |
| 948 | DebugLoc dl = Op.getDebugLoc(); |
| 949 | SDNode *N = Op.getNode(); |
| 950 | LoadSDNode *LD = cast<LoadSDNode>(N); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 951 | EVT MemVT = LD->getMemoryVT(); |
| 952 | ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 953 | ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 954 | : ISD::EXTLOAD) |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 955 | : LD->getExtensionType(); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 956 | SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT, |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 957 | LD->getChain(), LD->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 958 | LD->getPointerInfo(), |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 959 | MemVT, LD->isVolatile(), |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 960 | LD->isNonTemporal(), LD->getAlignment()); |
| 961 | SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD); |
| 962 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 963 | DEBUG(dbgs() << "\nPromoting "; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 964 | N->dump(&DAG); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 965 | dbgs() << "\nTo: "; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 966 | Result.getNode()->dump(&DAG); |
| 967 | dbgs() << '\n'); |
| 968 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 969 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result); |
| 970 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1)); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 971 | removeFromWorkList(N); |
| 972 | DAG.DeleteNode(N); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 973 | AddToWorkList(Result.getNode()); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 974 | return true; |
| 975 | } |
| 976 | return false; |
| 977 | } |
| 978 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 979 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 980 | //===----------------------------------------------------------------------===// |
| 981 | // Main DAG Combiner implementation |
| 982 | //===----------------------------------------------------------------------===// |
| 983 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 984 | void DAGCombiner::Run(CombineLevel AtLevel) { |
| 985 | // set the instance variables, so that the various visit routines may use it. |
| 986 | Level = AtLevel; |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 987 | LegalOperations = Level >= AfterLegalizeVectorOps; |
| 988 | LegalTypes = Level >= AfterLegalizeTypes; |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 989 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 990 | // Add all the dag nodes to the worklist. |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 991 | for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), |
| 992 | E = DAG.allnodes_end(); I != E; ++I) |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 993 | AddToWorkList(I); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 994 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 995 | // Create a dummy node (which is not added to allnodes), that adds a reference |
| 996 | // to the root node, preventing it from being deleted, and tracking any |
| 997 | // changes of the root. |
| 998 | HandleSDNode Dummy(DAG.getRoot()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 999 | |
Jim Laskey | 26f7fa7 | 2006-10-17 19:33:52 +0000 | [diff] [blame] | 1000 | // The root of the dag may dangle to deleted nodes until the dag combiner is |
| 1001 | // done. Set it to null to avoid confusion. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1002 | DAG.setRoot(SDValue()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1003 | |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 1004 | // while the worklist isn't empty, find a node and |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1005 | // try and combine it. |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 1006 | while (!WorkListContents.empty()) { |
| 1007 | SDNode *N; |
| 1008 | // The WorkListOrder holds the SDNodes in order, but it may contain duplicates. |
| 1009 | // In order to avoid a linear scan, we use a set (O(log N)) to hold what the |
| 1010 | // worklist *should* contain, and check the node we want to visit is should |
| 1011 | // actually be visited. |
| 1012 | do { |
Benjamin Kramer | d5f7690 | 2012-03-10 00:23:58 +0000 | [diff] [blame] | 1013 | N = WorkListOrder.pop_back_val(); |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 1014 | } while (!WorkListContents.erase(N)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1015 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1016 | // If N has no uses, it is dead. Make sure to revisit all N's operands once |
| 1017 | // N is deleted from the DAG, since they too may now be dead or may have a |
| 1018 | // reduced number of uses, allowing other xforms. |
| 1019 | if (N->use_empty() && N != &Dummy) { |
| 1020 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 1021 | AddToWorkList(N->getOperand(i).getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1022 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1023 | DAG.DeleteNode(N); |
| 1024 | continue; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1025 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1026 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1027 | SDValue RV = combine(N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1028 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1029 | if (RV.getNode() == 0) |
| 1030 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1031 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1032 | ++NodesCombined; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1033 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1034 | // If we get back the same node we passed in, rather than a new node or |
| 1035 | // zero, we know that the node must have defined multiple values and |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1036 | // CombineTo was used. Since CombineTo takes care of the worklist |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1037 | // mechanics for us, we have no work to do in this case. |
| 1038 | if (RV.getNode() == N) |
| 1039 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1040 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1041 | assert(N->getOpcode() != ISD::DELETED_NODE && |
| 1042 | RV.getNode()->getOpcode() != ISD::DELETED_NODE && |
| 1043 | "Node was deleted but visit returned new node!"); |
Chris Lattner | 729c6d1 | 2006-05-27 00:43:02 +0000 | [diff] [blame] | 1044 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1045 | DEBUG(dbgs() << "\nReplacing.3 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 1046 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 1047 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 1048 | RV.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 1049 | dbgs() << '\n'); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1050 | |
Devang Patel | 9728ea2 | 2011-05-23 22:04:42 +0000 | [diff] [blame] | 1051 | // Transfer debug value. |
| 1052 | DAG.TransferDbgValues(SDValue(N, 0), RV); |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1053 | WorkListRemover DeadNodes(*this); |
| 1054 | if (N->getNumValues() == RV.getNode()->getNumValues()) |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1055 | DAG.ReplaceAllUsesWith(N, RV.getNode()); |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1056 | else { |
| 1057 | assert(N->getValueType(0) == RV.getValueType() && |
| 1058 | N->getNumValues() == 1 && "Type mismatch"); |
| 1059 | SDValue OpV = RV; |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1060 | DAG.ReplaceAllUsesWith(N, &OpV); |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1061 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1062 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1063 | // Push the new node and any users onto the worklist |
| 1064 | AddToWorkList(RV.getNode()); |
| 1065 | AddUsersToWorkList(RV.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1066 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1067 | // Add any uses of the old node to the worklist in case this node is the |
| 1068 | // last one that uses them. They may become dead after this node is |
| 1069 | // deleted. |
| 1070 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 1071 | AddToWorkList(N->getOperand(i).getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1072 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 1073 | // Finally, if the node is now dead, remove it from the graph. The node |
| 1074 | // may not be dead if the replacement process recursively simplified to |
| 1075 | // something else needing this node. |
| 1076 | if (N->use_empty()) { |
| 1077 | // Nodes can be reintroduced into the worklist. Make sure we do not |
| 1078 | // process a node that has been replaced. |
| 1079 | removeFromWorkList(N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1080 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 1081 | // Finally, since the node is now dead, remove it from the graph. |
| 1082 | DAG.DeleteNode(N); |
| 1083 | } |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1084 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1085 | |
Chris Lattner | 9503859 | 2005-10-05 06:35:28 +0000 | [diff] [blame] | 1086 | // If the root changed (e.g. it was a dead load, update the root). |
| 1087 | DAG.setRoot(Dummy.getValue()); |
Hal Finkel | 31490ba | 2012-04-16 03:33:22 +0000 | [diff] [blame] | 1088 | DAG.RemoveDeadNodes(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1089 | } |
| 1090 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1091 | SDValue DAGCombiner::visit(SDNode *N) { |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1092 | switch (N->getOpcode()) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1093 | default: break; |
Nate Begeman | 4942a96 | 2005-09-01 00:33:32 +0000 | [diff] [blame] | 1094 | case ISD::TokenFactor: return visitTokenFactor(N); |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1095 | case ISD::MERGE_VALUES: return visitMERGE_VALUES(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1096 | case ISD::ADD: return visitADD(N); |
| 1097 | case ISD::SUB: return visitSUB(N); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1098 | case ISD::ADDC: return visitADDC(N); |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1099 | case ISD::SUBC: return visitSUBC(N); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1100 | case ISD::ADDE: return visitADDE(N); |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1101 | case ISD::SUBE: return visitSUBE(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1102 | case ISD::MUL: return visitMUL(N); |
| 1103 | case ISD::SDIV: return visitSDIV(N); |
| 1104 | case ISD::UDIV: return visitUDIV(N); |
| 1105 | case ISD::SREM: return visitSREM(N); |
| 1106 | case ISD::UREM: return visitUREM(N); |
| 1107 | case ISD::MULHU: return visitMULHU(N); |
| 1108 | case ISD::MULHS: return visitMULHS(N); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1109 | case ISD::SMUL_LOHI: return visitSMUL_LOHI(N); |
| 1110 | case ISD::UMUL_LOHI: return visitUMUL_LOHI(N); |
Benjamin Kramer | f55d26e | 2011-05-21 18:31:55 +0000 | [diff] [blame] | 1111 | case ISD::SMULO: return visitSMULO(N); |
| 1112 | case ISD::UMULO: return visitUMULO(N); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1113 | case ISD::SDIVREM: return visitSDIVREM(N); |
| 1114 | case ISD::UDIVREM: return visitUDIVREM(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1115 | case ISD::AND: return visitAND(N); |
| 1116 | case ISD::OR: return visitOR(N); |
| 1117 | case ISD::XOR: return visitXOR(N); |
| 1118 | case ISD::SHL: return visitSHL(N); |
| 1119 | case ISD::SRA: return visitSRA(N); |
| 1120 | case ISD::SRL: return visitSRL(N); |
| 1121 | case ISD::CTLZ: return visitCTLZ(N); |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 1122 | case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1123 | case ISD::CTTZ: return visitCTTZ(N); |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 1124 | case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1125 | case ISD::CTPOP: return visitCTPOP(N); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1126 | case ISD::SELECT: return visitSELECT(N); |
| 1127 | case ISD::SELECT_CC: return visitSELECT_CC(N); |
| 1128 | case ISD::SETCC: return visitSETCC(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1129 | case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N); |
| 1130 | case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 1131 | case ISD::ANY_EXTEND: return visitANY_EXTEND(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1132 | case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N); |
| 1133 | case ISD::TRUNCATE: return visitTRUNCATE(N); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1134 | case ISD::BITCAST: return visitBITCAST(N); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 1135 | case ISD::BUILD_PAIR: return visitBUILD_PAIR(N); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1136 | case ISD::FADD: return visitFADD(N); |
| 1137 | case ISD::FSUB: return visitFSUB(N); |
| 1138 | case ISD::FMUL: return visitFMUL(N); |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 1139 | case ISD::FMA: return visitFMA(N); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1140 | case ISD::FDIV: return visitFDIV(N); |
| 1141 | case ISD::FREM: return visitFREM(N); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 1142 | case ISD::FCOPYSIGN: return visitFCOPYSIGN(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1143 | case ISD::SINT_TO_FP: return visitSINT_TO_FP(N); |
| 1144 | case ISD::UINT_TO_FP: return visitUINT_TO_FP(N); |
| 1145 | case ISD::FP_TO_SINT: return visitFP_TO_SINT(N); |
| 1146 | case ISD::FP_TO_UINT: return visitFP_TO_UINT(N); |
| 1147 | case ISD::FP_ROUND: return visitFP_ROUND(N); |
| 1148 | case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N); |
| 1149 | case ISD::FP_EXTEND: return visitFP_EXTEND(N); |
| 1150 | case ISD::FNEG: return visitFNEG(N); |
| 1151 | case ISD::FABS: return visitFABS(N); |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 1152 | case ISD::FFLOOR: return visitFFLOOR(N); |
| 1153 | case ISD::FCEIL: return visitFCEIL(N); |
| 1154 | case ISD::FTRUNC: return visitFTRUNC(N); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1155 | case ISD::BRCOND: return visitBRCOND(N); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1156 | case ISD::BR_CC: return visitBR_CC(N); |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 1157 | case ISD::LOAD: return visitLOAD(N); |
Chris Lattner | 87514ca | 2005-10-10 22:31:19 +0000 | [diff] [blame] | 1158 | case ISD::STORE: return visitSTORE(N); |
Chris Lattner | ca24244 | 2006-03-19 01:27:56 +0000 | [diff] [blame] | 1159 | case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 1160 | case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1161 | case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N); |
| 1162 | case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N); |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 1163 | case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N); |
Chris Lattner | 66445d3 | 2006-03-28 22:11:53 +0000 | [diff] [blame] | 1164 | case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N); |
Jim Grosbach | 9a52649 | 2010-06-23 16:07:42 +0000 | [diff] [blame] | 1165 | case ISD::MEMBARRIER: return visitMEMBARRIER(N); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1166 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1167 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1168 | } |
| 1169 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1170 | SDValue DAGCombiner::combine(SDNode *N) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1171 | SDValue RV = visit(N); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1172 | |
| 1173 | // If nothing happened, try a target-specific DAG combine. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1174 | if (RV.getNode() == 0) { |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1175 | assert(N->getOpcode() != ISD::DELETED_NODE && |
| 1176 | "Node was deleted but visit returned NULL!"); |
| 1177 | |
| 1178 | if (N->getOpcode() >= ISD::BUILTIN_OP_END || |
| 1179 | TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) { |
| 1180 | |
| 1181 | // Expose the DAG combiner to the target combiner impls. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1182 | TargetLowering::DAGCombinerInfo |
Jakob Stoklund Olesen | 78d1264 | 2009-07-24 18:22:59 +0000 | [diff] [blame] | 1183 | DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1184 | |
| 1185 | RV = TLI.PerformDAGCombine(N, DagCombineInfo); |
| 1186 | } |
| 1187 | } |
| 1188 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1189 | // If nothing happened still, try promoting the operation. |
| 1190 | if (RV.getNode() == 0) { |
| 1191 | switch (N->getOpcode()) { |
| 1192 | default: break; |
| 1193 | case ISD::ADD: |
| 1194 | case ISD::SUB: |
| 1195 | case ISD::MUL: |
| 1196 | case ISD::AND: |
| 1197 | case ISD::OR: |
| 1198 | case ISD::XOR: |
| 1199 | RV = PromoteIntBinOp(SDValue(N, 0)); |
| 1200 | break; |
| 1201 | case ISD::SHL: |
| 1202 | case ISD::SRA: |
| 1203 | case ISD::SRL: |
| 1204 | RV = PromoteIntShiftOp(SDValue(N, 0)); |
| 1205 | break; |
| 1206 | case ISD::SIGN_EXTEND: |
| 1207 | case ISD::ZERO_EXTEND: |
| 1208 | case ISD::ANY_EXTEND: |
| 1209 | RV = PromoteExtend(SDValue(N, 0)); |
| 1210 | break; |
| 1211 | case ISD::LOAD: |
| 1212 | if (PromoteLoad(SDValue(N, 0))) |
| 1213 | RV = SDValue(N, 0); |
| 1214 | break; |
| 1215 | } |
| 1216 | } |
| 1217 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1218 | // If N is a commutative binary node, try commuting it to enable more |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1219 | // sdisel CSE. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1220 | if (RV.getNode() == 0 && |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1221 | SelectionDAG::isCommutativeBinOp(N->getOpcode()) && |
| 1222 | N->getNumValues() == 1) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1223 | SDValue N0 = N->getOperand(0); |
| 1224 | SDValue N1 = N->getOperand(1); |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1225 | |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1226 | // Constant operands are canonicalized to RHS. |
| 1227 | if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1228 | SDValue Ops[] = { N1, N0 }; |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1229 | SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(), |
| 1230 | Ops, 2); |
Evan Cheng | ea10046 | 2008-03-24 23:55:16 +0000 | [diff] [blame] | 1231 | if (CSENode) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1232 | return SDValue(CSENode, 0); |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1233 | } |
| 1234 | } |
| 1235 | |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1236 | return RV; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1237 | } |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1238 | |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1239 | /// getInputChainForNode - Given a node, return its input chain if it has one, |
| 1240 | /// otherwise return a null sd operand. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1241 | static SDValue getInputChainForNode(SDNode *N) { |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1242 | if (unsigned NumOps = N->getNumOperands()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1243 | if (N->getOperand(0).getValueType() == MVT::Other) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1244 | return N->getOperand(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1245 | else if (N->getOperand(NumOps-1).getValueType() == MVT::Other) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1246 | return N->getOperand(NumOps-1); |
| 1247 | for (unsigned i = 1; i < NumOps-1; ++i) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1248 | if (N->getOperand(i).getValueType() == MVT::Other) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1249 | return N->getOperand(i); |
| 1250 | } |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1251 | return SDValue(); |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1252 | } |
| 1253 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1254 | SDValue DAGCombiner::visitTokenFactor(SDNode *N) { |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1255 | // If N has two operands, where one has an input chain equal to the other, |
| 1256 | // the 'other' chain is redundant. |
| 1257 | if (N->getNumOperands() == 2) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1258 | if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1)) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1259 | return N->getOperand(0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1260 | if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0)) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1261 | return N->getOperand(1); |
| 1262 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1263 | |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1264 | SmallVector<SDNode *, 8> TFs; // List of token factors to visit. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1265 | SmallVector<SDValue, 8> Ops; // Ops for replacing token factor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1266 | SmallPtrSet<SDNode*, 16> SeenOps; |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1267 | bool Changed = false; // If we should replace this token factor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1268 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1269 | // Start out with this token factor. |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 1270 | TFs.push_back(N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1271 | |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 1272 | // Iterate through token factors. The TFs grows when new token factors are |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 1273 | // encountered. |
| 1274 | for (unsigned i = 0; i < TFs.size(); ++i) { |
| 1275 | SDNode *TF = TFs[i]; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1276 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1277 | // Check each of the operands. |
| 1278 | for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1279 | SDValue Op = TF->getOperand(i); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1280 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1281 | switch (Op.getOpcode()) { |
| 1282 | case ISD::EntryToken: |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 1283 | // Entry tokens don't need to be added to the list. They are |
| 1284 | // rededundant. |
| 1285 | Changed = true; |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1286 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1287 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1288 | case ISD::TokenFactor: |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 1289 | if (Op.hasOneUse() && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1290 | std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) { |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1291 | // Queue up for processing. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1292 | TFs.push_back(Op.getNode()); |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1293 | // Clean up in case the token factor is removed. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1294 | AddToWorkList(Op.getNode()); |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1295 | Changed = true; |
| 1296 | break; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 1297 | } |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1298 | // Fall thru |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1299 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1300 | default: |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1301 | // Only add if it isn't already in the list. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1302 | if (SeenOps.insert(Op.getNode())) |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 1303 | Ops.push_back(Op); |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1304 | else |
| 1305 | Changed = true; |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1306 | break; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 1307 | } |
| 1308 | } |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1309 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1310 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1311 | SDValue Result; |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1312 | |
| 1313 | // If we've change things around then replace token factor. |
| 1314 | if (Changed) { |
Dan Gohman | 3035959 | 2008-01-29 13:02:09 +0000 | [diff] [blame] | 1315 | if (Ops.empty()) { |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1316 | // The entry token is the only possible outcome. |
| 1317 | Result = DAG.getEntryNode(); |
| 1318 | } else { |
| 1319 | // New and improved token factor. |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1320 | Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1321 | MVT::Other, &Ops[0], Ops.size()); |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 1322 | } |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1323 | |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 1324 | // Don't add users to work list. |
| 1325 | return CombineTo(N, Result, false); |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 1326 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1327 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1328 | return Result; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1329 | } |
| 1330 | |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1331 | /// MERGE_VALUES can always be eliminated. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1332 | SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) { |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1333 | WorkListRemover DeadNodes(*this); |
Dan Gohman | 00edf39 | 2009-08-10 23:43:19 +0000 | [diff] [blame] | 1334 | // Replacing results may cause a different MERGE_VALUES to suddenly |
| 1335 | // be CSE'd with N, and carry its uses with it. Iterate until no |
| 1336 | // uses remain, to ensure that the node can be safely deleted. |
Pete Cooper | 3affd9e | 2012-06-20 19:35:43 +0000 | [diff] [blame] | 1337 | // First add the users of this node to the work list so that they |
| 1338 | // can be tried again once they have new operands. |
| 1339 | AddUsersToWorkList(N); |
Dan Gohman | 00edf39 | 2009-08-10 23:43:19 +0000 | [diff] [blame] | 1340 | do { |
| 1341 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1342 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i)); |
Dan Gohman | 00edf39 | 2009-08-10 23:43:19 +0000 | [diff] [blame] | 1343 | } while (!N->use_empty()); |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1344 | removeFromWorkList(N); |
| 1345 | DAG.DeleteNode(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1346 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1349 | static |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1350 | SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1, |
| 1351 | SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1352 | EVT VT = N0.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1353 | SDValue N00 = N0.getOperand(0); |
| 1354 | SDValue N01 = N0.getOperand(1); |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1355 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01); |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1356 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1357 | if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() && |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1358 | isa<ConstantSDNode>(N00.getOperand(1))) { |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1359 | // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), ) |
| 1360 | N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, |
| 1361 | DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT, |
| 1362 | N00.getOperand(0), N01), |
| 1363 | DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT, |
| 1364 | N00.getOperand(1), N01)); |
| 1365 | return DAG.getNode(ISD::ADD, DL, VT, N0, N1); |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1366 | } |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1367 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1368 | return SDValue(); |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1369 | } |
| 1370 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1371 | SDValue DAGCombiner::visitADD(SDNode *N) { |
| 1372 | SDValue N0 = N->getOperand(0); |
| 1373 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1374 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1375 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1376 | EVT VT = N0.getValueType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1377 | |
| 1378 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1379 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1380 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1381 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1382 | } |
Bill Wendling | 2476e5d | 2008-12-10 22:36:00 +0000 | [diff] [blame] | 1383 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1384 | // fold (add x, undef) -> undef |
Dan Gohman | 70fb1ae | 2007-07-10 15:19:29 +0000 | [diff] [blame] | 1385 | if (N0.getOpcode() == ISD::UNDEF) |
| 1386 | return N0; |
| 1387 | if (N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1388 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1389 | // fold (add c1, c2) -> c1+c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1390 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1391 | return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 1392 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 1393 | if (N0C && !N1C) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1394 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1395 | // fold (add x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1396 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1397 | return N0; |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1398 | // fold (add Sym, c) -> Sym+c |
| 1399 | if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 1400 | if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C && |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1401 | GA->getOpcode() == ISD::GlobalAddress) |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 1402 | return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1403 | GA->getOffset() + |
| 1404 | (uint64_t)N1C->getSExtValue()); |
Chris Lattner | 4aafb4f | 2006-01-12 20:22:43 +0000 | [diff] [blame] | 1405 | // fold ((c1-A)+c2) -> (c1+c2)-A |
| 1406 | if (N1C && N0.getOpcode() == ISD::SUB) |
| 1407 | if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0))) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1408 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1409 | DAG.getConstant(N1C->getAPIntValue()+ |
| 1410 | N0C->getAPIntValue(), VT), |
Chris Lattner | 4aafb4f | 2006-01-12 20:22:43 +0000 | [diff] [blame] | 1411 | N0.getOperand(1)); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1412 | // reassociate add |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 1413 | SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1414 | if (RADD.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1415 | return RADD; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1416 | // fold ((0-A) + B) -> B-A |
| 1417 | if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) && |
| 1418 | cast<ConstantSDNode>(N0.getOperand(0))->isNullValue()) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1419 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1420 | // fold (A + (0-B)) -> A-B |
| 1421 | if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) && |
| 1422 | cast<ConstantSDNode>(N1.getOperand(0))->isNullValue()) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1423 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1)); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1424 | // fold (A+(B-A)) -> B |
| 1425 | if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1)) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1426 | return N1.getOperand(0); |
Dale Johannesen | 56eca91 | 2008-11-27 00:43:21 +0000 | [diff] [blame] | 1427 | // fold ((B-A)+A) -> B |
| 1428 | if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1)) |
| 1429 | return N0.getOperand(0); |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1430 | // fold (A+(B-(A+C))) to (B-C) |
| 1431 | if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1432 | N0 == N1.getOperand(1).getOperand(0)) |
| 1433 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0), |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1434 | N1.getOperand(1).getOperand(1)); |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1435 | // fold (A+(B-(C+A))) to (B-C) |
| 1436 | if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1437 | N0 == N1.getOperand(1).getOperand(1)) |
| 1438 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0), |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1439 | N1.getOperand(1).getOperand(0)); |
Dale Johannesen | 7c7bc72 | 2008-12-23 23:47:22 +0000 | [diff] [blame] | 1440 | // fold (A+((B-A)+or-C)) to (B+or-C) |
Dale Johannesen | 34d7985 | 2008-12-02 18:40:40 +0000 | [diff] [blame] | 1441 | if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) && |
| 1442 | N1.getOperand(0).getOpcode() == ISD::SUB && |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1443 | N0 == N1.getOperand(0).getOperand(1)) |
| 1444 | return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT, |
| 1445 | N1.getOperand(0).getOperand(0), N1.getOperand(1)); |
Dale Johannesen | 34d7985 | 2008-12-02 18:40:40 +0000 | [diff] [blame] | 1446 | |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1447 | // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant |
| 1448 | if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) { |
| 1449 | SDValue N00 = N0.getOperand(0); |
| 1450 | SDValue N01 = N0.getOperand(1); |
| 1451 | SDValue N10 = N1.getOperand(0); |
| 1452 | SDValue N11 = N1.getOperand(1); |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1453 | |
| 1454 | if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10)) |
| 1455 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1456 | DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10), |
| 1457 | DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11)); |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1458 | } |
Chris Lattner | 947c289 | 2006-03-13 06:51:27 +0000 | [diff] [blame] | 1459 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1460 | if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0))) |
| 1461 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1462 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1463 | // fold (a+b) -> (a|b) iff a and b share no bits. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1464 | if (VT.isInteger() && !VT.isVector()) { |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 1465 | APInt LHSZero, LHSOne; |
| 1466 | APInt RHSZero, RHSOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1467 | DAG.ComputeMaskedBits(N0, LHSZero, LHSOne); |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1468 | |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 1469 | if (LHSZero.getBoolValue()) { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1470 | DAG.ComputeMaskedBits(N1, RHSZero, RHSOne); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1471 | |
Chris Lattner | 947c289 | 2006-03-13 06:51:27 +0000 | [diff] [blame] | 1472 | // If all possibly-set bits on the LHS are clear on the RHS, return an OR. |
| 1473 | // If all possibly-set bits on the RHS are clear on the LHS, return an OR. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1474 | if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1475 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1); |
Chris Lattner | 947c289 | 2006-03-13 06:51:27 +0000 | [diff] [blame] | 1476 | } |
| 1477 | } |
Evan Cheng | 3ef554d | 2006-11-06 08:14:30 +0000 | [diff] [blame] | 1478 | |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1479 | // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), ) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1480 | if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) { |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1481 | SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1482 | if (Result.getNode()) return Result; |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1483 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1484 | if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) { |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1485 | SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1486 | if (Result.getNode()) return Result; |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1487 | } |
| 1488 | |
Dan Gohman | cd9e155 | 2010-01-19 23:30:49 +0000 | [diff] [blame] | 1489 | // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n)) |
| 1490 | if (N1.getOpcode() == ISD::SHL && |
| 1491 | N1.getOperand(0).getOpcode() == ISD::SUB) |
| 1492 | if (ConstantSDNode *C = |
| 1493 | dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0))) |
| 1494 | if (C->getAPIntValue() == 0) |
| 1495 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, |
| 1496 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1497 | N1.getOperand(0).getOperand(1), |
| 1498 | N1.getOperand(1))); |
| 1499 | if (N0.getOpcode() == ISD::SHL && |
| 1500 | N0.getOperand(0).getOpcode() == ISD::SUB) |
| 1501 | if (ConstantSDNode *C = |
| 1502 | dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0))) |
| 1503 | if (C->getAPIntValue() == 0) |
| 1504 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, |
| 1505 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1506 | N0.getOperand(0).getOperand(1), |
| 1507 | N0.getOperand(1))); |
| 1508 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 1509 | if (N1.getOpcode() == ISD::AND) { |
| 1510 | SDValue AndOp0 = N1.getOperand(0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1511 | ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1)); |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 1512 | unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0); |
| 1513 | unsigned DestBits = VT.getScalarType().getSizeInBits(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1514 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 1515 | // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x)) |
| 1516 | // and similar xforms where the inner op is either ~0 or 0. |
| 1517 | if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) { |
| 1518 | DebugLoc DL = N->getDebugLoc(); |
| 1519 | return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0); |
| 1520 | } |
| 1521 | } |
| 1522 | |
Benjamin Kramer | f50125e | 2010-12-22 23:17:45 +0000 | [diff] [blame] | 1523 | // add (sext i1), X -> sub X, (zext i1) |
| 1524 | if (N0.getOpcode() == ISD::SIGN_EXTEND && |
| 1525 | N0.getOperand(0).getValueType() == MVT::i1 && |
| 1526 | !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) { |
| 1527 | DebugLoc DL = N->getDebugLoc(); |
| 1528 | SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)); |
| 1529 | return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt); |
| 1530 | } |
| 1531 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1532 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1533 | } |
| 1534 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1535 | SDValue DAGCombiner::visitADDC(SDNode *N) { |
| 1536 | SDValue N0 = N->getOperand(0); |
| 1537 | SDValue N1 = N->getOperand(1); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1538 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1539 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1540 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1541 | |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1542 | // If the flag result is dead, turn this into an ADD. |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 1543 | if (!N->hasAnyUseOfValue(1)) |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1544 | return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1), |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1545 | DAG.getNode(ISD::CARRY_FALSE, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1546 | N->getDebugLoc(), MVT::Glue)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1547 | |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1548 | // canonicalize constant to RHS. |
Dan Gohman | 0a4627d | 2008-06-23 15:29:14 +0000 | [diff] [blame] | 1549 | if (N0C && !N1C) |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1550 | return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1551 | |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1552 | // fold (addc x, 0) -> x + no carry out |
| 1553 | if (N1C && N1C->isNullValue()) |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1554 | return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1555 | N->getDebugLoc(), MVT::Glue)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1556 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1557 | // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits. |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 1558 | APInt LHSZero, LHSOne; |
| 1559 | APInt RHSZero, RHSOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1560 | DAG.ComputeMaskedBits(N0, LHSZero, LHSOne); |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1561 | |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 1562 | if (LHSZero.getBoolValue()) { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1563 | DAG.ComputeMaskedBits(N1, RHSZero, RHSOne); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1564 | |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1565 | // If all possibly-set bits on the LHS are clear on the RHS, return an OR. |
| 1566 | // If all possibly-set bits on the RHS are clear on the LHS, return an OR. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1567 | if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero) |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1568 | return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1), |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1569 | DAG.getNode(ISD::CARRY_FALSE, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1570 | N->getDebugLoc(), MVT::Glue)); |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1571 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1572 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1573 | return SDValue(); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1574 | } |
| 1575 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1576 | SDValue DAGCombiner::visitADDE(SDNode *N) { |
| 1577 | SDValue N0 = N->getOperand(0); |
| 1578 | SDValue N1 = N->getOperand(1); |
| 1579 | SDValue CarryIn = N->getOperand(2); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1580 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1581 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1582 | |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1583 | // canonicalize constant to RHS |
Dan Gohman | 0a4627d | 2008-06-23 15:29:14 +0000 | [diff] [blame] | 1584 | if (N0C && !N1C) |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1585 | return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(), |
| 1586 | N1, N0, CarryIn); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1587 | |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1588 | // fold (adde x, y, false) -> (addc x, y) |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1589 | if (CarryIn.getOpcode() == ISD::CARRY_FALSE) |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1590 | return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1591 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1592 | return SDValue(); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1593 | } |
| 1594 | |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1595 | // Since it may not be valid to emit a fold to zero for vector initializers |
| 1596 | // check if we can before folding. |
| 1597 | static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1598 | SelectionDAG &DAG, bool LegalOperations) { |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1599 | if (!VT.isVector()) { |
| 1600 | return DAG.getConstant(0, VT); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 1601 | } |
| 1602 | if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) { |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1603 | // Produce a vector of zeros. |
| 1604 | SDValue El = DAG.getConstant(0, VT.getVectorElementType()); |
| 1605 | std::vector<SDValue> Ops(VT.getVectorNumElements(), El); |
| 1606 | return DAG.getNode(ISD::BUILD_VECTOR, DL, VT, |
| 1607 | &Ops[0], Ops.size()); |
| 1608 | } |
| 1609 | return SDValue(); |
| 1610 | } |
| 1611 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1612 | SDValue DAGCombiner::visitSUB(SDNode *N) { |
| 1613 | SDValue N0 = N->getOperand(0); |
| 1614 | SDValue N1 = N->getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1615 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode()); |
| 1616 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1617 | ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 : |
| 1618 | dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1619 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1620 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1621 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1622 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1623 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1624 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1625 | } |
Bill Wendling | 2476e5d | 2008-12-10 22:36:00 +0000 | [diff] [blame] | 1626 | |
Chris Lattner | 854077d | 2005-10-17 01:07:11 +0000 | [diff] [blame] | 1627 | // fold (sub x, x) -> 0 |
Eric Christopher | 169e155 | 2011-02-16 01:10:03 +0000 | [diff] [blame] | 1628 | // FIXME: Refactor this and xor and other similar operations together. |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1629 | if (N0 == N1) |
| 1630 | return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1631 | // fold (sub c1, c2) -> c1-c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1632 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1633 | return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C); |
Chris Lattner | 05b5743 | 2005-10-11 06:07:15 +0000 | [diff] [blame] | 1634 | // fold (sub x, c) -> (add x, -c) |
| 1635 | if (N1C) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1636 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1637 | DAG.getConstant(-N1C->getAPIntValue(), VT)); |
Evan Cheng | 1ad0e8b | 2010-01-18 21:38:44 +0000 | [diff] [blame] | 1638 | // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) |
| 1639 | if (N0C && N0C->isAllOnesValue()) |
| 1640 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0); |
Benjamin Kramer | 2c94b42 | 2011-01-29 12:34:05 +0000 | [diff] [blame] | 1641 | // fold A-(A-B) -> B |
| 1642 | if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0)) |
| 1643 | return N1.getOperand(1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1644 | // fold (A+B)-A -> B |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1645 | if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1646 | return N0.getOperand(1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1647 | // fold (A+B)-B -> A |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1648 | if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1649 | return N0.getOperand(0); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1650 | // fold C2-(A+C1) -> (C2-C1)-A |
| 1651 | if (N1.getOpcode() == ISD::ADD && N0C && N1C1) { |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 1652 | SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), |
| 1653 | VT); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1654 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC, |
Bill Wendling | 96cb112 | 2012-07-19 00:04:14 +0000 | [diff] [blame] | 1655 | N1.getOperand(0)); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1656 | } |
Dale Johannesen | 7c7bc72 | 2008-12-23 23:47:22 +0000 | [diff] [blame] | 1657 | // fold ((A+(B+or-C))-B) -> A+or-C |
Dale Johannesen | fd3b7b7 | 2008-12-16 22:13:49 +0000 | [diff] [blame] | 1658 | if (N0.getOpcode() == ISD::ADD && |
Dale Johannesen | f9cbc1f | 2008-12-23 23:01:27 +0000 | [diff] [blame] | 1659 | (N0.getOperand(1).getOpcode() == ISD::SUB || |
| 1660 | N0.getOperand(1).getOpcode() == ISD::ADD) && |
Dale Johannesen | fd3b7b7 | 2008-12-16 22:13:49 +0000 | [diff] [blame] | 1661 | N0.getOperand(1).getOperand(0) == N1) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1662 | return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT, |
| 1663 | N0.getOperand(0), N0.getOperand(1).getOperand(1)); |
Dale Johannesen | f9cbc1f | 2008-12-23 23:01:27 +0000 | [diff] [blame] | 1664 | // fold ((A+(C+B))-B) -> A+C |
| 1665 | if (N0.getOpcode() == ISD::ADD && |
| 1666 | N0.getOperand(1).getOpcode() == ISD::ADD && |
| 1667 | N0.getOperand(1).getOperand(1) == N1) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1668 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, |
| 1669 | N0.getOperand(0), N0.getOperand(1).getOperand(0)); |
Dale Johannesen | 58e39b0 | 2008-12-23 01:59:54 +0000 | [diff] [blame] | 1670 | // fold ((A-(B-C))-C) -> A-B |
| 1671 | if (N0.getOpcode() == ISD::SUB && |
| 1672 | N0.getOperand(1).getOpcode() == ISD::SUB && |
| 1673 | N0.getOperand(1).getOperand(1) == N1) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1674 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1675 | N0.getOperand(0), N0.getOperand(1).getOperand(0)); |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1676 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1677 | // If either operand of a sub is undef, the result is undef |
Dan Gohman | 70fb1ae | 2007-07-10 15:19:29 +0000 | [diff] [blame] | 1678 | if (N0.getOpcode() == ISD::UNDEF) |
| 1679 | return N0; |
| 1680 | if (N1.getOpcode() == ISD::UNDEF) |
| 1681 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1682 | |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1683 | // If the relocation model supports it, consider symbol offsets. |
| 1684 | if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 1685 | if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) { |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1686 | // fold (sub Sym, c) -> Sym-c |
| 1687 | if (N1C && GA->getOpcode() == ISD::GlobalAddress) |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 1688 | return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1689 | GA->getOffset() - |
| 1690 | (uint64_t)N1C->getSExtValue()); |
| 1691 | // fold (sub Sym+c1, Sym+c2) -> c1-c2 |
| 1692 | if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1)) |
| 1693 | if (GA->getGlobal() == GB->getGlobal()) |
| 1694 | return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(), |
| 1695 | VT); |
| 1696 | } |
| 1697 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1698 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1701 | SDValue DAGCombiner::visitSUBC(SDNode *N) { |
| 1702 | SDValue N0 = N->getOperand(0); |
| 1703 | SDValue N1 = N->getOperand(1); |
| 1704 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1705 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 1706 | EVT VT = N0.getValueType(); |
| 1707 | |
| 1708 | // If the flag result is dead, turn this into an SUB. |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 1709 | if (!N->hasAnyUseOfValue(1)) |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1710 | return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1), |
| 1711 | DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1712 | MVT::Glue)); |
| 1713 | |
| 1714 | // fold (subc x, x) -> 0 + no borrow |
| 1715 | if (N0 == N1) |
| 1716 | return CombineTo(N, DAG.getConstant(0, VT), |
| 1717 | DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1718 | MVT::Glue)); |
| 1719 | |
| 1720 | // fold (subc x, 0) -> x + no borrow |
| 1721 | if (N1C && N1C->isNullValue()) |
| 1722 | return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1723 | MVT::Glue)); |
| 1724 | |
| 1725 | // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow |
| 1726 | if (N0C && N0C->isAllOnesValue()) |
| 1727 | return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0), |
| 1728 | DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1729 | MVT::Glue)); |
| 1730 | |
| 1731 | return SDValue(); |
| 1732 | } |
| 1733 | |
| 1734 | SDValue DAGCombiner::visitSUBE(SDNode *N) { |
| 1735 | SDValue N0 = N->getOperand(0); |
| 1736 | SDValue N1 = N->getOperand(1); |
| 1737 | SDValue CarryIn = N->getOperand(2); |
| 1738 | |
| 1739 | // fold (sube x, y, false) -> (subc x, y) |
| 1740 | if (CarryIn.getOpcode() == ISD::CARRY_FALSE) |
| 1741 | return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1); |
| 1742 | |
| 1743 | return SDValue(); |
| 1744 | } |
| 1745 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1746 | SDValue DAGCombiner::visitMUL(SDNode *N) { |
| 1747 | SDValue N0 = N->getOperand(0); |
| 1748 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1749 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1750 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1751 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1752 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1753 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1754 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1755 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1756 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1757 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1758 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1759 | // fold (mul x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 1760 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1761 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1762 | // fold (mul c1, c2) -> c1*c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1763 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1764 | return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 1765 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 1766 | if (N0C && !N1C) |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1767 | return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1768 | // fold (mul x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1769 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1770 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1771 | // fold (mul x, -1) -> 0-x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1772 | if (N1C && N1C->isAllOnesValue()) |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1773 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1774 | DAG.getConstant(0, VT), N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1775 | // fold (mul x, (1 << c)) -> x << c |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1776 | if (N1C && N1C->getAPIntValue().isPowerOf2()) |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1777 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1778 | DAG.getConstant(N1C->getAPIntValue().logBase2(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1779 | getShiftAmountTy(N0.getValueType()))); |
Chris Lattner | 3e6099b | 2005-10-30 06:41:49 +0000 | [diff] [blame] | 1780 | // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c |
Chris Lattner | 66b8bc3 | 2009-03-09 20:22:18 +0000 | [diff] [blame] | 1781 | if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) { |
| 1782 | unsigned Log2Val = (-N1C->getAPIntValue()).logBase2(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1783 | // FIXME: If the input is something that is easily negated (e.g. a |
Chris Lattner | 3e6099b | 2005-10-30 06:41:49 +0000 | [diff] [blame] | 1784 | // single-use add), we should put the negate there. |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1785 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1786 | DAG.getConstant(0, VT), |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1787 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1788 | DAG.getConstant(Log2Val, |
| 1789 | getShiftAmountTy(N0.getValueType())))); |
Chris Lattner | 66b8bc3 | 2009-03-09 20:22:18 +0000 | [diff] [blame] | 1790 | } |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1791 | // (mul (shl X, c1), c2) -> (mul X, c2 << c1) |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1792 | if (N1C && N0.getOpcode() == ISD::SHL && |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1793 | isa<ConstantSDNode>(N0.getOperand(1))) { |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1794 | SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1795 | N1, N0.getOperand(1)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1796 | AddToWorkList(C3.getNode()); |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1797 | return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 1798 | N0.getOperand(0), C3); |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1799 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1800 | |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1801 | // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one |
| 1802 | // use. |
| 1803 | { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1804 | SDValue Sh(0,0), Y(0,0); |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1805 | // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)). |
| 1806 | if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1807 | N0.getNode()->hasOneUse()) { |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1808 | Sh = N0; Y = N1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1809 | } else if (N1.getOpcode() == ISD::SHL && |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 1810 | isa<ConstantSDNode>(N1.getOperand(1)) && |
| 1811 | N1.getNode()->hasOneUse()) { |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1812 | Sh = N1; Y = N0; |
| 1813 | } |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1814 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1815 | if (Sh.getNode()) { |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1816 | SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 1817 | Sh.getOperand(0), Y); |
| 1818 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1819 | Mul, Sh.getOperand(1)); |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1820 | } |
| 1821 | } |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1822 | |
Chris Lattner | a1deca3 | 2006-03-04 23:33:26 +0000 | [diff] [blame] | 1823 | // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1824 | if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() && |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1825 | isa<ConstantSDNode>(N0.getOperand(1))) |
| 1826 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, |
| 1827 | DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT, |
| 1828 | N0.getOperand(0), N1), |
| 1829 | DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT, |
| 1830 | N0.getOperand(1), N1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1831 | |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1832 | // reassociate mul |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 1833 | SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1834 | if (RMUL.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1835 | return RMUL; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1836 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1837 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1838 | } |
| 1839 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1840 | SDValue DAGCombiner::visitSDIV(SDNode *N) { |
| 1841 | SDValue N0 = N->getOperand(0); |
| 1842 | SDValue N1 = N->getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1843 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode()); |
| 1844 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1845 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1846 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1847 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1848 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1849 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1850 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1851 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1852 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1853 | // fold (sdiv c1, c2) -> c1/c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1854 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1855 | return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C); |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1856 | // fold (sdiv X, 1) -> X |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1857 | if (N1C && N1C->getAPIntValue() == 1LL) |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1858 | return N0; |
| 1859 | // fold (sdiv X, -1) -> 0-X |
| 1860 | if (N1C && N1C->isAllOnesValue()) |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1861 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1862 | DAG.getConstant(0, VT), N0); |
Chris Lattner | 094c8fc | 2005-10-07 06:10:46 +0000 | [diff] [blame] | 1863 | // If we know the sign bits of both operands are zero, strength reduce to a |
| 1864 | // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2 |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1865 | if (!VT.isVector()) { |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1866 | if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1867 | return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(), |
| 1868 | N0, N1); |
Chris Lattner | f32aac3 | 2008-01-27 23:32:17 +0000 | [diff] [blame] | 1869 | } |
Nate Begeman | cd6a6ed | 2006-02-17 07:26:20 +0000 | [diff] [blame] | 1870 | // fold (sdiv X, pow2) -> simple ops after legalize |
Eli Friedman | 1c663fe | 2011-12-07 03:55:52 +0000 | [diff] [blame] | 1871 | if (N1C && !N1C->isNullValue() && |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1872 | (N1C->getAPIntValue().isPowerOf2() || |
| 1873 | (-N1C->getAPIntValue()).isPowerOf2())) { |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1874 | // If dividing by powers of two is cheap, then don't perform the following |
| 1875 | // fold. |
| 1876 | if (TLI.isPow2DivCheap()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1877 | return SDValue(); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1878 | |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1879 | unsigned lg2 = N1C->getAPIntValue().countTrailingZeros(); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1880 | |
Chris Lattner | 8f4880b | 2006-02-16 08:02:36 +0000 | [diff] [blame] | 1881 | // Splat the sign bit into the register |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1882 | SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0, |
| 1883 | DAG.getConstant(VT.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1884 | getShiftAmountTy(N0.getValueType()))); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1885 | AddToWorkList(SGN.getNode()); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1886 | |
Chris Lattner | 8f4880b | 2006-02-16 08:02:36 +0000 | [diff] [blame] | 1887 | // Add (N0 < 0) ? abs2 - 1 : 0; |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1888 | SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN, |
| 1889 | DAG.getConstant(VT.getSizeInBits() - lg2, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1890 | getShiftAmountTy(SGN.getValueType()))); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1891 | SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1892 | AddToWorkList(SRL.getNode()); |
| 1893 | AddToWorkList(ADD.getNode()); // Divide by pow2 |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1894 | SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1895 | DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType()))); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1896 | |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1897 | // If we're dividing by a positive value, we're done. Otherwise, we must |
| 1898 | // negate the result. |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1899 | if (N1C->getAPIntValue().isNonNegative()) |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1900 | return SRA; |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1901 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1902 | AddToWorkList(SRA.getNode()); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1903 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1904 | DAG.getConstant(0, VT), SRA); |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1905 | } |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1906 | |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 1907 | // if integer divide is expensive and we satisfy the requirements, emit an |
| 1908 | // alternate sequence. |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1909 | if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1910 | SDValue Op = BuildSDIV(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1911 | if (Op.getNode()) return Op; |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 1912 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1913 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1914 | // undef / X -> 0 |
| 1915 | if (N0.getOpcode() == ISD::UNDEF) |
| 1916 | return DAG.getConstant(0, VT); |
| 1917 | // X / undef -> undef |
| 1918 | if (N1.getOpcode() == ISD::UNDEF) |
| 1919 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1920 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1921 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1922 | } |
| 1923 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1924 | SDValue DAGCombiner::visitUDIV(SDNode *N) { |
| 1925 | SDValue N0 = N->getOperand(0); |
| 1926 | SDValue N1 = N->getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1927 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode()); |
| 1928 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1929 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1930 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1931 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1932 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1933 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1934 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1935 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1936 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1937 | // fold (udiv c1, c2) -> c1/c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1938 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1939 | return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1940 | // fold (udiv x, (1 << c)) -> x >>u c |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1941 | if (N1C && N1C->getAPIntValue().isPowerOf2()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1942 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1943 | DAG.getConstant(N1C->getAPIntValue().logBase2(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1944 | getShiftAmountTy(N0.getValueType()))); |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1945 | // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2 |
Nate Begeman | fb5e4bd | 2006-02-05 07:20:23 +0000 | [diff] [blame] | 1946 | if (N1.getOpcode() == ISD::SHL) { |
| 1947 | if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1948 | if (SHC->getAPIntValue().isPowerOf2()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1949 | EVT ADDVT = N1.getOperand(1).getValueType(); |
Bill Wendling | 07d8514 | 2009-01-30 02:55:25 +0000 | [diff] [blame] | 1950 | SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT, |
| 1951 | N1.getOperand(1), |
| 1952 | DAG.getConstant(SHC->getAPIntValue() |
| 1953 | .logBase2(), |
| 1954 | ADDVT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1955 | AddToWorkList(Add.getNode()); |
Bill Wendling | 07d8514 | 2009-01-30 02:55:25 +0000 | [diff] [blame] | 1956 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add); |
Nate Begeman | fb5e4bd | 2006-02-05 07:20:23 +0000 | [diff] [blame] | 1957 | } |
| 1958 | } |
| 1959 | } |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 1960 | // fold (udiv x, c) -> alternate |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1961 | if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1962 | SDValue Op = BuildUDIV(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1963 | if (Op.getNode()) return Op; |
Chris Lattner | e9936d1 | 2005-10-22 18:50:15 +0000 | [diff] [blame] | 1964 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1965 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1966 | // undef / X -> 0 |
| 1967 | if (N0.getOpcode() == ISD::UNDEF) |
| 1968 | return DAG.getConstant(0, VT); |
| 1969 | // X / undef -> undef |
| 1970 | if (N1.getOpcode() == ISD::UNDEF) |
| 1971 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1972 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1973 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1974 | } |
| 1975 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1976 | SDValue DAGCombiner::visitSREM(SDNode *N) { |
| 1977 | SDValue N0 = N->getOperand(0); |
| 1978 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1979 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1980 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1981 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1982 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1983 | // fold (srem c1, c2) -> c1%c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1984 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1985 | return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C); |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 1986 | // If we know the sign bits of both operands are zero, strength reduce to a |
| 1987 | // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15 |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1988 | if (!VT.isVector()) { |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1989 | if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 1990 | return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1); |
Chris Lattner | ee339f4 | 2008-01-27 23:21:58 +0000 | [diff] [blame] | 1991 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1992 | |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 1993 | // If X/C can be simplified by the division-by-constant logic, lower |
| 1994 | // X%C to the equivalent of X-X/C*C. |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 1995 | if (N1C && !N1C->isNullValue()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 1996 | SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1997 | AddToWorkList(Div.getNode()); |
| 1998 | SDValue OptimizedDiv = combine(Div.getNode()); |
| 1999 | if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2000 | SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 2001 | OptimizedDiv, N1); |
| 2002 | SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2003 | AddToWorkList(Mul.getNode()); |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 2004 | return Sub; |
| 2005 | } |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 2006 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2007 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2008 | // undef % X -> 0 |
| 2009 | if (N0.getOpcode() == ISD::UNDEF) |
| 2010 | return DAG.getConstant(0, VT); |
| 2011 | // X % undef -> undef |
| 2012 | if (N1.getOpcode() == ISD::UNDEF) |
| 2013 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2014 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2015 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2016 | } |
| 2017 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2018 | SDValue DAGCombiner::visitUREM(SDNode *N) { |
| 2019 | SDValue N0 = N->getOperand(0); |
| 2020 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2021 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 2022 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2023 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2024 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2025 | // fold (urem c1, c2) -> c1%c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2026 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 2027 | return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C); |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 2028 | // fold (urem x, pow2) -> (and x, pow2-1) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2029 | if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2()) |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2030 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2031 | DAG.getConstant(N1C->getAPIntValue()-1,VT)); |
Nate Begeman | c031e33 | 2006-02-05 07:36:48 +0000 | [diff] [blame] | 2032 | // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1)) |
| 2033 | if (N1.getOpcode() == ISD::SHL) { |
| 2034 | if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2035 | if (SHC->getAPIntValue().isPowerOf2()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2036 | SDValue Add = |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2037 | DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2038 | DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2039 | VT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2040 | AddToWorkList(Add.getNode()); |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2041 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add); |
Nate Begeman | c031e33 | 2006-02-05 07:36:48 +0000 | [diff] [blame] | 2042 | } |
| 2043 | } |
| 2044 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2045 | |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 2046 | // If X/C can be simplified by the division-by-constant logic, lower |
| 2047 | // X%C to the equivalent of X-X/C*C. |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 2048 | if (N1C && !N1C->isNullValue()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2049 | SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1); |
Dan Gohman | 942ca7f | 2008-09-08 16:59:01 +0000 | [diff] [blame] | 2050 | AddToWorkList(Div.getNode()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2051 | SDValue OptimizedDiv = combine(Div.getNode()); |
| 2052 | if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2053 | SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 2054 | OptimizedDiv, N1); |
| 2055 | SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2056 | AddToWorkList(Mul.getNode()); |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 2057 | return Sub; |
| 2058 | } |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 2059 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2060 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2061 | // undef % X -> 0 |
| 2062 | if (N0.getOpcode() == ISD::UNDEF) |
| 2063 | return DAG.getConstant(0, VT); |
| 2064 | // X % undef -> undef |
| 2065 | if (N1.getOpcode() == ISD::UNDEF) |
| 2066 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2067 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2068 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2069 | } |
| 2070 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2071 | SDValue DAGCombiner::visitMULHS(SDNode *N) { |
| 2072 | SDValue N0 = N->getOperand(0); |
| 2073 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2074 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2075 | EVT VT = N->getValueType(0); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2076 | DebugLoc DL = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2077 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2078 | // fold (mulhs x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2079 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2080 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2081 | // fold (mulhs x, 1) -> (sra x, size(x)-1) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2082 | if (N1C && N1C->getAPIntValue() == 1) |
Bill Wendling | 326411d | 2009-01-30 03:00:18 +0000 | [diff] [blame] | 2083 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0, |
| 2084 | DAG.getConstant(N0.getValueType().getSizeInBits() - 1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2085 | getShiftAmountTy(N0.getValueType()))); |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2086 | // fold (mulhs x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 2087 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2088 | return DAG.getConstant(0, VT); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2089 | |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2090 | // If the type twice as wide is legal, transform the mulhs to a wider multiply |
| 2091 | // plus a shift. |
| 2092 | if (VT.isSimple() && !VT.isVector()) { |
| 2093 | MVT Simple = VT.getSimpleVT(); |
| 2094 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2095 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2096 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2097 | N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0); |
| 2098 | N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1); |
| 2099 | N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); |
Chris Lattner | 1a0fbe2 | 2010-12-15 05:51:39 +0000 | [diff] [blame] | 2100 | N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2101 | DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType()))); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2102 | return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); |
| 2103 | } |
| 2104 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2105 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2106 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2107 | } |
| 2108 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2109 | SDValue DAGCombiner::visitMULHU(SDNode *N) { |
| 2110 | SDValue N0 = N->getOperand(0); |
| 2111 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2112 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2113 | EVT VT = N->getValueType(0); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2114 | DebugLoc DL = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2115 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2116 | // fold (mulhu x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2117 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2118 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2119 | // fold (mulhu x, 1) -> 0 |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2120 | if (N1C && N1C->getAPIntValue() == 1) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2121 | return DAG.getConstant(0, N0.getValueType()); |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2122 | // fold (mulhu x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 2123 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2124 | return DAG.getConstant(0, VT); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2125 | |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2126 | // If the type twice as wide is legal, transform the mulhu to a wider multiply |
| 2127 | // plus a shift. |
| 2128 | if (VT.isSimple() && !VT.isVector()) { |
| 2129 | MVT Simple = VT.getSimpleVT(); |
| 2130 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2131 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2132 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2133 | N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0); |
| 2134 | N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1); |
| 2135 | N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); |
| 2136 | N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2137 | DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType()))); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2138 | return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); |
| 2139 | } |
| 2140 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2141 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2142 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2143 | } |
| 2144 | |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2145 | /// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that |
| 2146 | /// compute two values. LoOp and HiOp give the opcodes for the two computations |
| 2147 | /// that are being performed. Return true if a simplification was made. |
| 2148 | /// |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2149 | SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2150 | unsigned HiOp) { |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2151 | // If the high half is not needed, just compute the low half. |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2152 | bool HiExists = N->hasAnyUseOfValue(1); |
| 2153 | if (!HiExists && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2154 | (!LegalOperations || |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2155 | TLI.isOperationLegal(LoOp, N->getValueType(0)))) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2156 | SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0), |
| 2157 | N->op_begin(), N->getNumOperands()); |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2158 | return CombineTo(N, Res, Res); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2159 | } |
| 2160 | |
| 2161 | // If the low half is not needed, just compute the high half. |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2162 | bool LoExists = N->hasAnyUseOfValue(0); |
| 2163 | if (!LoExists && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2164 | (!LegalOperations || |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2165 | TLI.isOperationLegal(HiOp, N->getValueType(1)))) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2166 | SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1), |
| 2167 | N->op_begin(), N->getNumOperands()); |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2168 | return CombineTo(N, Res, Res); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2169 | } |
| 2170 | |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2171 | // If both halves are used, return as it is. |
| 2172 | if (LoExists && HiExists) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2173 | return SDValue(); |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2174 | |
| 2175 | // If the two computed results can be simplified separately, separate them. |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2176 | if (LoExists) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2177 | SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0), |
| 2178 | N->op_begin(), N->getNumOperands()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2179 | AddToWorkList(Lo.getNode()); |
| 2180 | SDValue LoOpt = combine(Lo.getNode()); |
| 2181 | if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2182 | (!LegalOperations || |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 2183 | TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()))) |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2184 | return CombineTo(N, LoOpt, LoOpt); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2185 | } |
| 2186 | |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2187 | if (HiExists) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2188 | SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2189 | N->op_begin(), N->getNumOperands()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2190 | AddToWorkList(Hi.getNode()); |
| 2191 | SDValue HiOpt = combine(Hi.getNode()); |
| 2192 | if (HiOpt.getNode() && HiOpt != Hi && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2193 | (!LegalOperations || |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 2194 | TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType()))) |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2195 | return CombineTo(N, HiOpt, HiOpt); |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2196 | } |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2197 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2198 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2199 | } |
| 2200 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2201 | SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) { |
| 2202 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2203 | if (Res.getNode()) return Res; |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2204 | |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2205 | EVT VT = N->getValueType(0); |
| 2206 | DebugLoc DL = N->getDebugLoc(); |
| 2207 | |
| 2208 | // If the type twice as wide is legal, transform the mulhu to a wider multiply |
| 2209 | // plus a shift. |
| 2210 | if (VT.isSimple() && !VT.isVector()) { |
| 2211 | MVT Simple = VT.getSimpleVT(); |
| 2212 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2213 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2214 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2215 | SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0)); |
| 2216 | SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1)); |
| 2217 | Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); |
| 2218 | // Compute the high part as N1. |
| 2219 | Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2220 | DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType()))); |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2221 | Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); |
| 2222 | // Compute the low part as N0. |
| 2223 | Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); |
| 2224 | return CombineTo(N, Lo, Hi); |
| 2225 | } |
| 2226 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2227 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2228 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2229 | } |
| 2230 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2231 | SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) { |
| 2232 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2233 | if (Res.getNode()) return Res; |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2234 | |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2235 | EVT VT = N->getValueType(0); |
| 2236 | DebugLoc DL = N->getDebugLoc(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2237 | |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2238 | // If the type twice as wide is legal, transform the mulhu to a wider multiply |
| 2239 | // plus a shift. |
| 2240 | if (VT.isSimple() && !VT.isVector()) { |
| 2241 | MVT Simple = VT.getSimpleVT(); |
| 2242 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2243 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2244 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2245 | SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0)); |
| 2246 | SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1)); |
| 2247 | Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); |
| 2248 | // Compute the high part as N1. |
| 2249 | Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2250 | DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType()))); |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2251 | Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); |
| 2252 | // Compute the low part as N0. |
| 2253 | Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); |
| 2254 | return CombineTo(N, Lo, Hi); |
| 2255 | } |
| 2256 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2257 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2258 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2259 | } |
| 2260 | |
Benjamin Kramer | f55d26e | 2011-05-21 18:31:55 +0000 | [diff] [blame] | 2261 | SDValue DAGCombiner::visitSMULO(SDNode *N) { |
| 2262 | // (smulo x, 2) -> (saddo x, x) |
| 2263 | if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) |
| 2264 | if (C2->getAPIntValue() == 2) |
| 2265 | return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(), |
| 2266 | N->getOperand(0), N->getOperand(0)); |
| 2267 | |
| 2268 | return SDValue(); |
| 2269 | } |
| 2270 | |
| 2271 | SDValue DAGCombiner::visitUMULO(SDNode *N) { |
| 2272 | // (umulo x, 2) -> (uaddo x, x) |
| 2273 | if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) |
| 2274 | if (C2->getAPIntValue() == 2) |
| 2275 | return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(), |
| 2276 | N->getOperand(0), N->getOperand(0)); |
| 2277 | |
| 2278 | return SDValue(); |
| 2279 | } |
| 2280 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2281 | SDValue DAGCombiner::visitSDIVREM(SDNode *N) { |
| 2282 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2283 | if (Res.getNode()) return Res; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2284 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2285 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2286 | } |
| 2287 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2288 | SDValue DAGCombiner::visitUDIVREM(SDNode *N) { |
| 2289 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2290 | if (Res.getNode()) return Res; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2291 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2292 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2295 | /// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with |
| 2296 | /// two operands of the same opcode, try to simplify it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2297 | SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) { |
| 2298 | SDValue N0 = N->getOperand(0), N1 = N->getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2299 | EVT VT = N0.getValueType(); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2300 | assert(N0.getOpcode() == N1.getOpcode() && "Bad input!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2301 | |
Dan Gohman | ff00a55 | 2010-01-14 03:08:49 +0000 | [diff] [blame] | 2302 | // Bail early if none of these transforms apply. |
| 2303 | if (N0.getNode()->getNumOperands() == 0) return SDValue(); |
| 2304 | |
Chris Lattner | 540121f | 2006-05-05 06:31:05 +0000 | [diff] [blame] | 2305 | // For each of OP in AND/OR/XOR: |
| 2306 | // fold (OP (zext x), (zext y)) -> (zext (OP x, y)) |
| 2307 | // fold (OP (sext x), (sext y)) -> (sext (OP x, y)) |
| 2308 | // fold (OP (aext x), (aext y)) -> (aext (OP x, y)) |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 2309 | // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free) |
Nate Begeman | 93e0ed3 | 2009-12-03 07:11:29 +0000 | [diff] [blame] | 2310 | // |
| 2311 | // do not sink logical op inside of a vector extend, since it may combine |
| 2312 | // into a vsetcc. |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2313 | EVT Op0VT = N0.getOperand(0).getValueType(); |
| 2314 | if ((N0.getOpcode() == ISD::ZERO_EXTEND || |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 2315 | N0.getOpcode() == ISD::SIGN_EXTEND || |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 2316 | // Avoid infinite looping with PromoteIntBinOp. |
| 2317 | (N0.getOpcode() == ISD::ANY_EXTEND && |
| 2318 | (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) || |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 2319 | (N0.getOpcode() == ISD::TRUNCATE && |
| 2320 | (!TLI.isZExtFree(VT, Op0VT) || |
| 2321 | !TLI.isTruncateFree(Op0VT, VT)) && |
| 2322 | TLI.isTypeLegal(Op0VT))) && |
Nate Begeman | 93e0ed3 | 2009-12-03 07:11:29 +0000 | [diff] [blame] | 2323 | !VT.isVector() && |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2324 | Op0VT == N1.getOperand(0).getValueType() && |
| 2325 | (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) { |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2326 | SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), |
| 2327 | N0.getOperand(0).getValueType(), |
| 2328 | N0.getOperand(0), N1.getOperand(0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2329 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2330 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2331 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2332 | |
Chris Lattner | a3dc3f6 | 2006-05-05 06:10:43 +0000 | [diff] [blame] | 2333 | // For each of OP in SHL/SRL/SRA/AND... |
| 2334 | // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z) |
| 2335 | // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z) |
| 2336 | // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z) |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2337 | if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL || |
Chris Lattner | a3dc3f6 | 2006-05-05 06:10:43 +0000 | [diff] [blame] | 2338 | N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) && |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2339 | N0.getOperand(1) == N1.getOperand(1)) { |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2340 | SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), |
| 2341 | N0.getOperand(0).getValueType(), |
| 2342 | N0.getOperand(0), N1.getOperand(0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2343 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2344 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 2345 | ORNode, N0.getOperand(1)); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2346 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2347 | |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2348 | // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B)) |
| 2349 | // Only perform this optimization after type legalization and before |
| 2350 | // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by |
| 2351 | // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and |
| 2352 | // we don't want to undo this promotion. |
| 2353 | // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper |
| 2354 | // on scalars. |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 2355 | if ((N0.getOpcode() == ISD::BITCAST || |
| 2356 | N0.getOpcode() == ISD::SCALAR_TO_VECTOR) && |
| 2357 | Level == AfterLegalizeTypes) { |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2358 | SDValue In0 = N0.getOperand(0); |
| 2359 | SDValue In1 = N1.getOperand(0); |
| 2360 | EVT In0Ty = In0.getValueType(); |
| 2361 | EVT In1Ty = In1.getValueType(); |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 2362 | DebugLoc DL = N->getDebugLoc(); |
| 2363 | // If both incoming values are integers, and the original types are the |
| 2364 | // same. |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2365 | if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) { |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 2366 | SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1); |
| 2367 | SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2368 | AddToWorkList(Op.getNode()); |
| 2369 | return BC; |
| 2370 | } |
| 2371 | } |
| 2372 | |
| 2373 | // Xor/and/or are indifferent to the swizzle operation (shuffle of one value). |
| 2374 | // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B)) |
| 2375 | // If both shuffles use the same mask, and both shuffle within a single |
| 2376 | // vector, then it is worthwhile to move the swizzle after the operation. |
| 2377 | // The type-legalizer generates this pattern when loading illegal |
| 2378 | // vector types from memory. In many cases this allows additional shuffle |
| 2379 | // optimizations. |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2380 | if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG && |
| 2381 | N0.getOperand(1).getOpcode() == ISD::UNDEF && |
| 2382 | N1.getOperand(1).getOpcode() == ISD::UNDEF) { |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2383 | ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0); |
| 2384 | ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1); |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2385 | |
| 2386 | assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() && |
| 2387 | "Inputs to shuffles are not the same type"); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2388 | |
| 2389 | unsigned NumElts = VT.getVectorNumElements(); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2390 | |
| 2391 | // Check that both shuffles use the same mask. The masks are known to be of |
| 2392 | // the same length because the result vector type is the same. |
| 2393 | bool SameMask = true; |
| 2394 | for (unsigned i = 0; i != NumElts; ++i) { |
| 2395 | int Idx0 = SVN0->getMaskElt(i); |
| 2396 | int Idx1 = SVN1->getMaskElt(i); |
| 2397 | if (Idx0 != Idx1) { |
| 2398 | SameMask = false; |
| 2399 | break; |
| 2400 | } |
| 2401 | } |
| 2402 | |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2403 | if (SameMask) { |
| 2404 | SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT, |
| 2405 | N0.getOperand(0), N1.getOperand(0)); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2406 | AddToWorkList(Op.getNode()); |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2407 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op, |
| 2408 | DAG.getUNDEF(VT), &SVN0->getMask()[0]); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2409 | } |
| 2410 | } |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2411 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2412 | return SDValue(); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2413 | } |
| 2414 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2415 | SDValue DAGCombiner::visitAND(SDNode *N) { |
| 2416 | SDValue N0 = N->getOperand(0); |
| 2417 | SDValue N1 = N->getOperand(1); |
| 2418 | SDValue LL, LR, RL, RR, CC0, CC1; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2419 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 2420 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2421 | EVT VT = N1.getValueType(); |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2422 | unsigned BitWidth = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2423 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2424 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2425 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2426 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2427 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 2428 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2429 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2430 | // fold (and x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 2431 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2432 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2433 | // fold (and c1, c2) -> c1&c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2434 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 2435 | return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 2436 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 2437 | if (N0C && !N1C) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 2438 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2439 | // fold (and x, -1) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2440 | if (N1C && N1C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2441 | return N0; |
| 2442 | // if (and x, c) is known to be zero, return 0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2443 | if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2444 | APInt::getAllOnesValue(BitWidth))) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2445 | return DAG.getConstant(0, VT); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 2446 | // reassociate and |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 2447 | SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2448 | if (RAND.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 2449 | return RAND; |
Bill Wendling | 7d9f2b9 | 2010-03-03 00:35:56 +0000 | [diff] [blame] | 2450 | // fold (and (or x, C), D) -> D if (C & D) == D |
Nate Begeman | 5dc7e86 | 2005-11-02 18:42:59 +0000 | [diff] [blame] | 2451 | if (N1C && N0.getOpcode() == ISD::OR) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2452 | if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2453 | if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2454 | return N1; |
Chris Lattner | 3603cd6 | 2006-02-02 07:17:31 +0000 | [diff] [blame] | 2455 | // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits. |
| 2456 | if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2457 | SDValue N0Op0 = N0.getOperand(0); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2458 | APInt Mask = ~N1C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 2459 | Mask = Mask.trunc(N0Op0.getValueSizeInBits()); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2460 | if (DAG.MaskedValueIsZero(N0Op0, Mask)) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2461 | SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), |
| 2462 | N0.getValueType(), N0Op0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2463 | |
Chris Lattner | 1ec05d1 | 2006-03-01 21:47:21 +0000 | [diff] [blame] | 2464 | // Replace uses of the AND with uses of the Zero extend node. |
| 2465 | CombineTo(N, Zext); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2466 | |
Chris Lattner | 3603cd6 | 2006-02-02 07:17:31 +0000 | [diff] [blame] | 2467 | // We actually want to replace all uses of the any_extend with the |
| 2468 | // zero_extend, to avoid duplicating things. This will later cause this |
| 2469 | // AND to be folded. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2470 | CombineTo(N0.getNode(), Zext); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2471 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | 3603cd6 | 2006-02-02 07:17:31 +0000 | [diff] [blame] | 2472 | } |
| 2473 | } |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2474 | // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) -> |
| 2475 | // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must |
| 2476 | // already be zero by virtue of the width of the base type of the load. |
| 2477 | // |
| 2478 | // the 'X' node here can either be nothing or an extract_vector_elt to catch |
| 2479 | // more cases. |
| 2480 | if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && |
| 2481 | N0.getOperand(0).getOpcode() == ISD::LOAD) || |
| 2482 | N0.getOpcode() == ISD::LOAD) { |
| 2483 | LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ? |
| 2484 | N0 : N0.getOperand(0) ); |
| 2485 | |
| 2486 | // Get the constant (if applicable) the zero'th operand is being ANDed with. |
| 2487 | // This can be a pure constant or a vector splat, in which case we treat the |
| 2488 | // vector as a scalar and use the splat value. |
| 2489 | APInt Constant = APInt::getNullValue(1); |
| 2490 | if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) { |
| 2491 | Constant = C->getAPIntValue(); |
| 2492 | } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) { |
| 2493 | APInt SplatValue, SplatUndef; |
| 2494 | unsigned SplatBitSize; |
| 2495 | bool HasAnyUndefs; |
| 2496 | bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef, |
| 2497 | SplatBitSize, HasAnyUndefs); |
| 2498 | if (IsSplat) { |
| 2499 | // Undef bits can contribute to a possible optimisation if set, so |
| 2500 | // set them. |
| 2501 | SplatValue |= SplatUndef; |
| 2502 | |
| 2503 | // The splat value may be something like "0x00FFFFFF", which means 0 for |
| 2504 | // the first vector value and FF for the rest, repeating. We need a mask |
| 2505 | // that will apply equally to all members of the vector, so AND all the |
| 2506 | // lanes of the constant together. |
| 2507 | EVT VT = Vector->getValueType(0); |
| 2508 | unsigned BitWidth = VT.getVectorElementType().getSizeInBits(); |
Silviu Baranga | 3d5e161 | 2012-09-05 08:57:21 +0000 | [diff] [blame] | 2509 | |
| 2510 | // If the splat value has been compressed to a bitlength lower |
| 2511 | // than the size of the vector lane, we need to re-expand it to |
| 2512 | // the lane size. |
| 2513 | if (BitWidth > SplatBitSize) |
| 2514 | for (SplatValue = SplatValue.zextOrTrunc(BitWidth); |
| 2515 | SplatBitSize < BitWidth; |
| 2516 | SplatBitSize = SplatBitSize * 2) |
| 2517 | SplatValue |= SplatValue.shl(SplatBitSize); |
| 2518 | |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2519 | Constant = APInt::getAllOnesValue(BitWidth); |
Silviu Baranga | 3d5e161 | 2012-09-05 08:57:21 +0000 | [diff] [blame] | 2520 | for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i) |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2521 | Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth); |
| 2522 | } |
| 2523 | } |
| 2524 | |
| 2525 | // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is |
| 2526 | // actually legal and isn't going to get expanded, else this is a false |
| 2527 | // optimisation. |
| 2528 | bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD, |
| 2529 | Load->getMemoryVT()); |
| 2530 | |
| 2531 | // Resize the constant to the same size as the original memory access before |
| 2532 | // extension. If it is still the AllOnesValue then this AND is completely |
| 2533 | // unneeded. |
| 2534 | Constant = |
| 2535 | Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits()); |
| 2536 | |
| 2537 | bool B; |
| 2538 | switch (Load->getExtensionType()) { |
| 2539 | default: B = false; break; |
| 2540 | case ISD::EXTLOAD: B = CanZextLoadProfitably; break; |
| 2541 | case ISD::ZEXTLOAD: |
| 2542 | case ISD::NON_EXTLOAD: B = true; break; |
| 2543 | } |
| 2544 | |
| 2545 | if (B && Constant.isAllOnesValue()) { |
| 2546 | // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to |
| 2547 | // preserve semantics once we get rid of the AND. |
| 2548 | SDValue NewLoad(Load, 0); |
| 2549 | if (Load->getExtensionType() == ISD::EXTLOAD) { |
| 2550 | NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD, |
| 2551 | Load->getValueType(0), Load->getDebugLoc(), |
| 2552 | Load->getChain(), Load->getBasePtr(), |
| 2553 | Load->getOffset(), Load->getMemoryVT(), |
| 2554 | Load->getMemOperand()); |
| 2555 | // Replace uses of the EXTLOAD with the new ZEXTLOAD. |
Hal Finkel | d65e463 | 2012-06-20 15:42:48 +0000 | [diff] [blame] | 2556 | if (Load->getNumValues() == 3) { |
| 2557 | // PRE/POST_INC loads have 3 values. |
| 2558 | SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1), |
| 2559 | NewLoad.getValue(2) }; |
| 2560 | CombineTo(Load, To, 3, true); |
| 2561 | } else { |
| 2562 | CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1)); |
| 2563 | } |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2564 | } |
| 2565 | |
| 2566 | // Fold the AND away, taking care not to fold to the old load node if we |
| 2567 | // replaced it. |
| 2568 | CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0); |
| 2569 | |
| 2570 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 2571 | } |
| 2572 | } |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2573 | // fold (and (setcc x), (setcc y)) -> (setcc (and x, y)) |
| 2574 | if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ |
| 2575 | ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); |
| 2576 | ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2577 | |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2578 | if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2579 | LL.getValueType().isInteger()) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2580 | // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2581 | if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2582 | SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(), |
| 2583 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2584 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2585 | return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2586 | } |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2587 | // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1) |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2588 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2589 | SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(), |
| 2590 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2591 | AddToWorkList(ANDNode.getNode()); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2592 | return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2593 | } |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2594 | // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1) |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2595 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2596 | SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(), |
| 2597 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2598 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2599 | return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2600 | } |
| 2601 | } |
| 2602 | // canonicalize equivalent to ll == rl |
| 2603 | if (LL == RR && LR == RL) { |
| 2604 | Op1 = ISD::getSetCCSwappedOperands(Op1); |
| 2605 | std::swap(RL, RR); |
| 2606 | } |
| 2607 | if (LL == RL && LR == RR) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2608 | bool isInteger = LL.getValueType().isInteger(); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2609 | ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger); |
Chris Lattner | 6e1c623 | 2008-10-28 07:11:07 +0000 | [diff] [blame] | 2610 | if (Result != ISD::SETCC_INVALID && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2611 | (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType()))) |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2612 | return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(), |
| 2613 | LL, LR, Result); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2614 | } |
| 2615 | } |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2616 | |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2617 | // Simplify: (and (op x...), (op y...)) -> (op (and x, y)) |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2618 | if (N0.getOpcode() == N1.getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2619 | SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2620 | if (Tmp.getNode()) return Tmp; |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2621 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2622 | |
Nate Begeman | de99629 | 2006-02-03 22:24:05 +0000 | [diff] [blame] | 2623 | // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1) |
| 2624 | // fold (and (sra)) -> (and (srl)) when possible. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2625 | if (!VT.isVector() && |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2626 | SimplifyDemandedBits(SDValue(N, 0))) |
| 2627 | return SDValue(N, 0); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2628 | |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 2629 | // fold (zext_inreg (extload x)) -> (zextload x) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2630 | if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2631 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2632 | EVT MemVT = LN0->getMemoryVT(); |
Nate Begeman | bfd65a0 | 2005-10-13 18:34:58 +0000 | [diff] [blame] | 2633 | // If we zero all the possible extended bits, then we can turn this into |
| 2634 | // a zextload if we are running before legalize or the operation is legal. |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2635 | unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits(); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2636 | if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2637 | BitWidth - MemVT.getScalarType().getSizeInBits())) && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2638 | ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2639 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2640 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT, |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2641 | LN0->getChain(), LN0->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2642 | LN0->getPointerInfo(), MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2643 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 2644 | LN0->getAlignment()); |
Chris Lattner | 5750df9 | 2006-03-01 04:03:14 +0000 | [diff] [blame] | 2645 | AddToWorkList(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2646 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2647 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 2648 | } |
| 2649 | } |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2650 | // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2651 | if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 2652 | N0.hasOneUse()) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2653 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2654 | EVT MemVT = LN0->getMemoryVT(); |
Nate Begeman | bfd65a0 | 2005-10-13 18:34:58 +0000 | [diff] [blame] | 2655 | // If we zero all the possible extended bits, then we can turn this into |
| 2656 | // a zextload if we are running before legalize or the operation is legal. |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2657 | unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits(); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2658 | if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2659 | BitWidth - MemVT.getScalarType().getSizeInBits())) && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2660 | ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2661 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2662 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT, |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2663 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2664 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 2665 | MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2666 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 2667 | LN0->getAlignment()); |
Chris Lattner | 5750df9 | 2006-03-01 04:03:14 +0000 | [diff] [blame] | 2668 | AddToWorkList(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2669 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2670 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 2671 | } |
| 2672 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2673 | |
Chris Lattner | 35a9f5a | 2006-02-28 06:49:37 +0000 | [diff] [blame] | 2674 | // fold (and (load x), 255) -> (zextload x, i8) |
| 2675 | // fold (and (extload x, i16), 255) -> (zextload x, i8) |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2676 | // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8) |
| 2677 | if (N1C && (N0.getOpcode() == ISD::LOAD || |
| 2678 | (N0.getOpcode() == ISD::ANY_EXTEND && |
| 2679 | N0.getOperand(0).getOpcode() == ISD::LOAD))) { |
| 2680 | bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND; |
| 2681 | LoadSDNode *LN0 = HasAnyExt |
| 2682 | ? cast<LoadSDNode>(N0.getOperand(0)) |
| 2683 | : cast<LoadSDNode>(N0); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2684 | if (LN0->getExtensionType() != ISD::SEXTLOAD && |
Chris Lattner | bd1fccf | 2010-01-07 21:59:23 +0000 | [diff] [blame] | 2685 | LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) { |
Duncan Sands | 8eab8a2 | 2008-06-09 11:32:28 +0000 | [diff] [blame] | 2686 | uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits(); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2687 | if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){ |
| 2688 | EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits); |
| 2689 | EVT LoadedVT = LN0->getMemoryVT(); |
Duncan Sands | 8eab8a2 | 2008-06-09 11:32:28 +0000 | [diff] [blame] | 2690 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2691 | if (ExtVT == LoadedVT && |
| 2692 | (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) { |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2693 | EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2694 | |
| 2695 | SDValue NewLoad = |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2696 | DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy, |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2697 | LN0->getChain(), LN0->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2698 | LN0->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2699 | ExtVT, LN0->isVolatile(), LN0->isNonTemporal(), |
| 2700 | LN0->getAlignment()); |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2701 | AddToWorkList(N); |
| 2702 | CombineTo(LN0, NewLoad, NewLoad.getValue(1)); |
| 2703 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 2704 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2705 | |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2706 | // Do not change the width of a volatile load. |
| 2707 | // Do not generate loads of non-round integer types since these can |
| 2708 | // be expensive (and would be wrong if the type is not byte sized). |
| 2709 | if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() && |
| 2710 | (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) { |
| 2711 | EVT PtrType = LN0->getOperand(1).getValueType(); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2712 | |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2713 | unsigned Alignment = LN0->getAlignment(); |
| 2714 | SDValue NewPtr = LN0->getBasePtr(); |
| 2715 | |
| 2716 | // For big endian targets, we need to add an offset to the pointer |
| 2717 | // to load the correct bytes. For little endian systems, we merely |
| 2718 | // need to read fewer bytes from the same pointer. |
| 2719 | if (TLI.isBigEndian()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2720 | unsigned LVTStoreBytes = LoadedVT.getStoreSize(); |
| 2721 | unsigned EVTStoreBytes = ExtVT.getStoreSize(); |
| 2722 | unsigned PtrOff = LVTStoreBytes - EVTStoreBytes; |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2723 | NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType, |
| 2724 | NewPtr, DAG.getConstant(PtrOff, PtrType)); |
| 2725 | Alignment = MinAlign(Alignment, PtrOff); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2726 | } |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2727 | |
| 2728 | AddToWorkList(NewPtr.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2729 | |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2730 | EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT; |
| 2731 | SDValue Load = |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2732 | DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy, |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2733 | LN0->getChain(), NewPtr, |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2734 | LN0->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2735 | ExtVT, LN0->isVolatile(), LN0->isNonTemporal(), |
| 2736 | Alignment); |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2737 | AddToWorkList(N); |
| 2738 | CombineTo(LN0, Load, Load.getValue(1)); |
| 2739 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2740 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2741 | } |
Chris Lattner | 15045b6 | 2006-02-28 06:35:35 +0000 | [diff] [blame] | 2742 | } |
| 2743 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2744 | |
Evan Cheng | a9e13ba | 2012-07-17 18:54:11 +0000 | [diff] [blame] | 2745 | if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL && |
| 2746 | VT.getSizeInBits() <= 64) { |
| 2747 | if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
| 2748 | APInt ADDC = ADDI->getAPIntValue(); |
| 2749 | if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) { |
| 2750 | // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal |
| 2751 | // immediate for an add, but it is legal if its top c2 bits are set, |
| 2752 | // transform the ADD so the immediate doesn't need to be materialized |
| 2753 | // in a register. |
| 2754 | if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) { |
| 2755 | APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(), |
| 2756 | SRLI->getZExtValue()); |
| 2757 | if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) { |
| 2758 | ADDC |= Mask; |
| 2759 | if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) { |
| 2760 | SDValue NewAdd = |
| 2761 | DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, |
| 2762 | N0.getOperand(0), DAG.getConstant(ADDC, VT)); |
| 2763 | CombineTo(N0.getNode(), NewAdd); |
| 2764 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 2765 | } |
| 2766 | } |
| 2767 | } |
| 2768 | } |
| 2769 | } |
| 2770 | } |
| 2771 | |
| 2772 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 2773 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2774 | } |
| 2775 | |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 2776 | /// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16 |
| 2777 | /// |
| 2778 | SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1, |
| 2779 | bool DemandHighBits) { |
| 2780 | if (!LegalOperations) |
| 2781 | return SDValue(); |
| 2782 | |
| 2783 | EVT VT = N->getValueType(0); |
| 2784 | if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16) |
| 2785 | return SDValue(); |
| 2786 | if (!TLI.isOperationLegal(ISD::BSWAP, VT)) |
| 2787 | return SDValue(); |
| 2788 | |
| 2789 | // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00) |
| 2790 | bool LookPassAnd0 = false; |
| 2791 | bool LookPassAnd1 = false; |
| 2792 | if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL) |
| 2793 | std::swap(N0, N1); |
| 2794 | if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL) |
| 2795 | std::swap(N0, N1); |
| 2796 | if (N0.getOpcode() == ISD::AND) { |
| 2797 | if (!N0.getNode()->hasOneUse()) |
| 2798 | return SDValue(); |
| 2799 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2800 | if (!N01C || N01C->getZExtValue() != 0xFF00) |
| 2801 | return SDValue(); |
| 2802 | N0 = N0.getOperand(0); |
| 2803 | LookPassAnd0 = true; |
| 2804 | } |
| 2805 | |
| 2806 | if (N1.getOpcode() == ISD::AND) { |
| 2807 | if (!N1.getNode()->hasOneUse()) |
| 2808 | return SDValue(); |
| 2809 | ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); |
| 2810 | if (!N11C || N11C->getZExtValue() != 0xFF) |
| 2811 | return SDValue(); |
| 2812 | N1 = N1.getOperand(0); |
| 2813 | LookPassAnd1 = true; |
| 2814 | } |
| 2815 | |
| 2816 | if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL) |
| 2817 | std::swap(N0, N1); |
| 2818 | if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL) |
| 2819 | return SDValue(); |
| 2820 | if (!N0.getNode()->hasOneUse() || |
| 2821 | !N1.getNode()->hasOneUse()) |
| 2822 | return SDValue(); |
| 2823 | |
| 2824 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2825 | ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); |
| 2826 | if (!N01C || !N11C) |
| 2827 | return SDValue(); |
| 2828 | if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8) |
| 2829 | return SDValue(); |
| 2830 | |
| 2831 | // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8) |
| 2832 | SDValue N00 = N0->getOperand(0); |
| 2833 | if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) { |
| 2834 | if (!N00.getNode()->hasOneUse()) |
| 2835 | return SDValue(); |
| 2836 | ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1)); |
| 2837 | if (!N001C || N001C->getZExtValue() != 0xFF) |
| 2838 | return SDValue(); |
| 2839 | N00 = N00.getOperand(0); |
| 2840 | LookPassAnd0 = true; |
| 2841 | } |
| 2842 | |
| 2843 | SDValue N10 = N1->getOperand(0); |
| 2844 | if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) { |
| 2845 | if (!N10.getNode()->hasOneUse()) |
| 2846 | return SDValue(); |
| 2847 | ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1)); |
| 2848 | if (!N101C || N101C->getZExtValue() != 0xFF00) |
| 2849 | return SDValue(); |
| 2850 | N10 = N10.getOperand(0); |
| 2851 | LookPassAnd1 = true; |
| 2852 | } |
| 2853 | |
| 2854 | if (N00 != N10) |
| 2855 | return SDValue(); |
| 2856 | |
| 2857 | // Make sure everything beyond the low halfword is zero since the SRL 16 |
| 2858 | // will clear the top bits. |
| 2859 | unsigned OpSizeInBits = VT.getSizeInBits(); |
| 2860 | if (DemandHighBits && OpSizeInBits > 16 && |
| 2861 | (!LookPassAnd0 || !LookPassAnd1) && |
| 2862 | !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16))) |
| 2863 | return SDValue(); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 2864 | |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 2865 | SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00); |
| 2866 | if (OpSizeInBits > 16) |
| 2867 | Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res, |
| 2868 | DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT))); |
| 2869 | return Res; |
| 2870 | } |
| 2871 | |
| 2872 | /// isBSwapHWordElement - Return true if the specified node is an element |
| 2873 | /// that makes up a 32-bit packed halfword byteswap. i.e. |
| 2874 | /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8) |
| 2875 | static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) { |
| 2876 | if (!N.getNode()->hasOneUse()) |
| 2877 | return false; |
| 2878 | |
| 2879 | unsigned Opc = N.getOpcode(); |
| 2880 | if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL) |
| 2881 | return false; |
| 2882 | |
| 2883 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1)); |
| 2884 | if (!N1C) |
| 2885 | return false; |
| 2886 | |
| 2887 | unsigned Num; |
| 2888 | switch (N1C->getZExtValue()) { |
| 2889 | default: |
| 2890 | return false; |
| 2891 | case 0xFF: Num = 0; break; |
| 2892 | case 0xFF00: Num = 1; break; |
| 2893 | case 0xFF0000: Num = 2; break; |
| 2894 | case 0xFF000000: Num = 3; break; |
| 2895 | } |
| 2896 | |
| 2897 | // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00). |
| 2898 | SDValue N0 = N.getOperand(0); |
| 2899 | if (Opc == ISD::AND) { |
| 2900 | if (Num == 0 || Num == 2) { |
| 2901 | // (x >> 8) & 0xff |
| 2902 | // (x >> 8) & 0xff0000 |
| 2903 | if (N0.getOpcode() != ISD::SRL) |
| 2904 | return false; |
| 2905 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2906 | if (!C || C->getZExtValue() != 8) |
| 2907 | return false; |
| 2908 | } else { |
| 2909 | // (x << 8) & 0xff00 |
| 2910 | // (x << 8) & 0xff000000 |
| 2911 | if (N0.getOpcode() != ISD::SHL) |
| 2912 | return false; |
| 2913 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2914 | if (!C || C->getZExtValue() != 8) |
| 2915 | return false; |
| 2916 | } |
| 2917 | } else if (Opc == ISD::SHL) { |
| 2918 | // (x & 0xff) << 8 |
| 2919 | // (x & 0xff0000) << 8 |
| 2920 | if (Num != 0 && Num != 2) |
| 2921 | return false; |
| 2922 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); |
| 2923 | if (!C || C->getZExtValue() != 8) |
| 2924 | return false; |
| 2925 | } else { // Opc == ISD::SRL |
| 2926 | // (x & 0xff00) >> 8 |
| 2927 | // (x & 0xff000000) >> 8 |
| 2928 | if (Num != 1 && Num != 3) |
| 2929 | return false; |
| 2930 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); |
| 2931 | if (!C || C->getZExtValue() != 8) |
| 2932 | return false; |
| 2933 | } |
| 2934 | |
| 2935 | if (Parts[Num]) |
| 2936 | return false; |
| 2937 | |
| 2938 | Parts[Num] = N0.getOperand(0).getNode(); |
| 2939 | return true; |
| 2940 | } |
| 2941 | |
| 2942 | /// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is |
| 2943 | /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8) |
| 2944 | /// => (rotl (bswap x), 16) |
| 2945 | SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) { |
| 2946 | if (!LegalOperations) |
| 2947 | return SDValue(); |
| 2948 | |
| 2949 | EVT VT = N->getValueType(0); |
| 2950 | if (VT != MVT::i32) |
| 2951 | return SDValue(); |
| 2952 | if (!TLI.isOperationLegal(ISD::BSWAP, VT)) |
| 2953 | return SDValue(); |
| 2954 | |
| 2955 | SmallVector<SDNode*,4> Parts(4, (SDNode*)0); |
| 2956 | // Look for either |
| 2957 | // (or (or (and), (and)), (or (and), (and))) |
| 2958 | // (or (or (or (and), (and)), (and)), (and)) |
| 2959 | if (N0.getOpcode() != ISD::OR) |
| 2960 | return SDValue(); |
| 2961 | SDValue N00 = N0.getOperand(0); |
| 2962 | SDValue N01 = N0.getOperand(1); |
| 2963 | |
| 2964 | if (N1.getOpcode() == ISD::OR) { |
| 2965 | // (or (or (and), (and)), (or (and), (and))) |
| 2966 | SDValue N000 = N00.getOperand(0); |
| 2967 | if (!isBSwapHWordElement(N000, Parts)) |
| 2968 | return SDValue(); |
| 2969 | |
| 2970 | SDValue N001 = N00.getOperand(1); |
| 2971 | if (!isBSwapHWordElement(N001, Parts)) |
| 2972 | return SDValue(); |
| 2973 | SDValue N010 = N01.getOperand(0); |
| 2974 | if (!isBSwapHWordElement(N010, Parts)) |
| 2975 | return SDValue(); |
| 2976 | SDValue N011 = N01.getOperand(1); |
| 2977 | if (!isBSwapHWordElement(N011, Parts)) |
| 2978 | return SDValue(); |
| 2979 | } else { |
| 2980 | // (or (or (or (and), (and)), (and)), (and)) |
| 2981 | if (!isBSwapHWordElement(N1, Parts)) |
| 2982 | return SDValue(); |
| 2983 | if (!isBSwapHWordElement(N01, Parts)) |
| 2984 | return SDValue(); |
| 2985 | if (N00.getOpcode() != ISD::OR) |
| 2986 | return SDValue(); |
| 2987 | SDValue N000 = N00.getOperand(0); |
| 2988 | if (!isBSwapHWordElement(N000, Parts)) |
| 2989 | return SDValue(); |
| 2990 | SDValue N001 = N00.getOperand(1); |
| 2991 | if (!isBSwapHWordElement(N001, Parts)) |
| 2992 | return SDValue(); |
| 2993 | } |
| 2994 | |
| 2995 | // Make sure the parts are all coming from the same node. |
| 2996 | if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3]) |
| 2997 | return SDValue(); |
| 2998 | |
| 2999 | SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, |
| 3000 | SDValue(Parts[0],0)); |
| 3001 | |
| 3002 | // Result of the bswap should be rotated by 16. If it's not legal, than |
| 3003 | // do (x << 16) | (x >> 16). |
| 3004 | SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT)); |
| 3005 | if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT)) |
| 3006 | return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt); |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 3007 | if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT)) |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 3008 | return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt); |
| 3009 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, |
| 3010 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt), |
| 3011 | DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt)); |
| 3012 | } |
| 3013 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3014 | SDValue DAGCombiner::visitOR(SDNode *N) { |
| 3015 | SDValue N0 = N->getOperand(0); |
| 3016 | SDValue N1 = N->getOperand(1); |
| 3017 | SDValue LL, LR, RL, RR, CC0, CC1; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3018 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3019 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3020 | EVT VT = N1.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3021 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3022 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3023 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3024 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3025 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 3026 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3027 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 3028 | // fold (or x, undef) -> -1 |
Bob Wilson | 8674949 | 2010-06-28 23:40:25 +0000 | [diff] [blame] | 3029 | if (!LegalOperations && |
| 3030 | (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) { |
Nate Begeman | 93e0ed3 | 2009-12-03 07:11:29 +0000 | [diff] [blame] | 3031 | EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT; |
| 3032 | return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT); |
| 3033 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3034 | // fold (or c1, c2) -> c1|c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3035 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3036 | return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3037 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 3038 | if (N0C && !N1C) |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3039 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3040 | // fold (or x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3041 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3042 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3043 | // fold (or x, -1) -> -1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3044 | if (N1C && N1C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3045 | return N1; |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3046 | // fold (or x, c) -> c iff (x & ~c) == 0 |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 3047 | if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue())) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3048 | return N1; |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 3049 | |
| 3050 | // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16) |
| 3051 | SDValue BSwap = MatchBSwapHWord(N, N0, N1); |
| 3052 | if (BSwap.getNode() != 0) |
| 3053 | return BSwap; |
| 3054 | BSwap = MatchBSwapHWordLow(N, N0, N1); |
| 3055 | if (BSwap.getNode() != 0) |
| 3056 | return BSwap; |
| 3057 | |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3058 | // reassociate or |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 3059 | SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3060 | if (ROR.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3061 | return ROR; |
| 3062 | // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2) |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3063 | // iff (c1 & c2) == 0. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3064 | if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() && |
Chris Lattner | 731d348 | 2005-10-27 05:06:38 +0000 | [diff] [blame] | 3065 | isa<ConstantSDNode>(N0.getOperand(1))) { |
Chris Lattner | 731d348 | 2005-10-27 05:06:38 +0000 | [diff] [blame] | 3066 | ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1)); |
Bill Wendling | 32f9eb2 | 2010-03-03 01:58:01 +0000 | [diff] [blame] | 3067 | if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0) |
Bill Wendling | 7d9f2b9 | 2010-03-03 00:35:56 +0000 | [diff] [blame] | 3068 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 3069 | DAG.getNode(ISD::OR, N0.getDebugLoc(), VT, |
| 3070 | N0.getOperand(0), N1), |
| 3071 | DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1)); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3072 | } |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3073 | // fold (or (setcc x), (setcc y)) -> (setcc (or x, y)) |
| 3074 | if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ |
| 3075 | ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); |
| 3076 | ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3077 | |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3078 | if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3079 | LL.getValueType().isInteger()) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3080 | // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0) |
| 3081 | // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3082 | if (cast<ConstantSDNode>(LR)->isNullValue() && |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3083 | (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3084 | SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(), |
| 3085 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3086 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3087 | return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3088 | } |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3089 | // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1) |
| 3090 | // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3091 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3092 | (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3093 | SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(), |
| 3094 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3095 | AddToWorkList(ANDNode.getNode()); |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3096 | return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3097 | } |
| 3098 | } |
| 3099 | // canonicalize equivalent to ll == rl |
| 3100 | if (LL == RR && LR == RL) { |
| 3101 | Op1 = ISD::getSetCCSwappedOperands(Op1); |
| 3102 | std::swap(RL, RR); |
| 3103 | } |
| 3104 | if (LL == RL && LR == RR) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3105 | bool isInteger = LL.getValueType().isInteger(); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3106 | ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger); |
Chris Lattner | 6e1c623 | 2008-10-28 07:11:07 +0000 | [diff] [blame] | 3107 | if (Result != ISD::SETCC_INVALID && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 3108 | (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType()))) |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3109 | return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(), |
| 3110 | LL, LR, Result); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3111 | } |
| 3112 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3113 | |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3114 | // Simplify: (or (op x...), (op y...)) -> (op (or x, y)) |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 3115 | if (N0.getOpcode() == N1.getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3116 | SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3117 | if (Tmp.getNode()) return Tmp; |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3118 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3119 | |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3120 | // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible. |
Chris Lattner | 1ec7273 | 2006-09-14 21:11:37 +0000 | [diff] [blame] | 3121 | if (N0.getOpcode() == ISD::AND && |
| 3122 | N1.getOpcode() == ISD::AND && |
| 3123 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 3124 | N1.getOperand(1).getOpcode() == ISD::Constant && |
| 3125 | // Don't increase # computations. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3126 | (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) { |
Chris Lattner | 1ec7273 | 2006-09-14 21:11:37 +0000 | [diff] [blame] | 3127 | // We can only do this xform if we know that bits from X that are set in C2 |
| 3128 | // but not in C1 are already zero. Likewise for Y. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 3129 | const APInt &LHSMask = |
| 3130 | cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 3131 | const APInt &RHSMask = |
| 3132 | cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3133 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 3134 | if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) && |
| 3135 | DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3136 | SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT, |
| 3137 | N0.getOperand(0), N1.getOperand(0)); |
| 3138 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X, |
| 3139 | DAG.getConstant(LHSMask | RHSMask, VT)); |
Chris Lattner | 1ec7273 | 2006-09-14 21:11:37 +0000 | [diff] [blame] | 3140 | } |
| 3141 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3142 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3143 | // See if this is some rotate idiom. |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3144 | if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3145 | return SDValue(Rot, 0); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 3146 | |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 3147 | // Simplify the operands using demanded-bits information. |
| 3148 | if (!VT.isVector() && |
| 3149 | SimplifyDemandedBits(SDValue(N, 0))) |
| 3150 | return SDValue(N, 0); |
| 3151 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3152 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3153 | } |
| 3154 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3155 | /// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3156 | static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) { |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3157 | if (Op.getOpcode() == ISD::AND) { |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 3158 | if (isa<ConstantSDNode>(Op.getOperand(1))) { |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3159 | Mask = Op.getOperand(1); |
| 3160 | Op = Op.getOperand(0); |
| 3161 | } else { |
| 3162 | return false; |
| 3163 | } |
| 3164 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3165 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3166 | if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) { |
| 3167 | Shift = Op; |
| 3168 | return true; |
| 3169 | } |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3170 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3171 | return false; |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3172 | } |
| 3173 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3174 | // MatchRotate - Handle an 'or' of two operands. If this is one of the many |
| 3175 | // idioms for rotate, and if the target supports rotation instructions, generate |
| 3176 | // a rot[lr]. |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3177 | SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) { |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3178 | // Must be a legal type. Expanded 'n promoted things won't work with rotates. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3179 | EVT VT = LHS.getValueType(); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3180 | if (!TLI.isTypeLegal(VT)) return 0; |
| 3181 | |
| 3182 | // The target must have at least one rotate flavor. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3183 | bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT); |
| 3184 | bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3185 | if (!HasROTL && !HasROTR) return 0; |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3186 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3187 | // Match "(X shl/srl V1) & V2" where V2 may not be present. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3188 | SDValue LHSShift; // The shift. |
| 3189 | SDValue LHSMask; // AND value if any. |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3190 | if (!MatchRotateHalf(LHS, LHSShift, LHSMask)) |
| 3191 | return 0; // Not part of a rotate. |
| 3192 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3193 | SDValue RHSShift; // The shift. |
| 3194 | SDValue RHSMask; // AND value if any. |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3195 | if (!MatchRotateHalf(RHS, RHSShift, RHSMask)) |
| 3196 | return 0; // Not part of a rotate. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3197 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3198 | if (LHSShift.getOperand(0) != RHSShift.getOperand(0)) |
| 3199 | return 0; // Not shifting the same value. |
| 3200 | |
| 3201 | if (LHSShift.getOpcode() == RHSShift.getOpcode()) |
| 3202 | return 0; // Shifts must disagree. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3203 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3204 | // Canonicalize shl to left side in a shl/srl pair. |
| 3205 | if (RHSShift.getOpcode() == ISD::SHL) { |
| 3206 | std::swap(LHS, RHS); |
| 3207 | std::swap(LHSShift, RHSShift); |
| 3208 | std::swap(LHSMask , RHSMask ); |
| 3209 | } |
| 3210 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3211 | unsigned OpSizeInBits = VT.getSizeInBits(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3212 | SDValue LHSShiftArg = LHSShift.getOperand(0); |
| 3213 | SDValue LHSShiftAmt = LHSShift.getOperand(1); |
| 3214 | SDValue RHSShiftAmt = RHSShift.getOperand(1); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3215 | |
| 3216 | // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1) |
| 3217 | // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2) |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3218 | if (LHSShiftAmt.getOpcode() == ISD::Constant && |
| 3219 | RHSShiftAmt.getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3220 | uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue(); |
| 3221 | uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue(); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3222 | if ((LShVal + RShVal) != OpSizeInBits) |
| 3223 | return 0; |
| 3224 | |
Craig Topper | 32b7343 | 2012-09-29 06:54:22 +0000 | [diff] [blame] | 3225 | SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, |
| 3226 | LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3227 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3228 | // If there is an AND of either shifted operand, apply it to the result. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3229 | if (LHSMask.getNode() || RHSMask.getNode()) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3230 | APInt Mask = APInt::getAllOnesValue(OpSizeInBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3231 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3232 | if (LHSMask.getNode()) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3233 | APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal); |
| 3234 | Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits; |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3235 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3236 | if (RHSMask.getNode()) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3237 | APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal); |
| 3238 | Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits; |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3239 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3240 | |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3241 | Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT)); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3242 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3243 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3244 | return Rot.getNode(); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3245 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3246 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3247 | // If there is a mask here, and we have a variable shift, we can't be sure |
| 3248 | // that we're masking out the right stuff. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3249 | if (LHSMask.getNode() || RHSMask.getNode()) |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3250 | return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3251 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3252 | // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y) |
| 3253 | // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y)) |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3254 | if (RHSShiftAmt.getOpcode() == ISD::SUB && |
| 3255 | LHSShiftAmt == RHSShiftAmt.getOperand(1)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3256 | if (ConstantSDNode *SUBC = |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3257 | dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3258 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Craig Topper | 32b7343 | 2012-09-29 06:54:22 +0000 | [diff] [blame] | 3259 | return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg, |
| 3260 | HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode(); |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 3261 | } |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3262 | } |
| 3263 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3264 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3265 | // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y) |
| 3266 | // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y)) |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3267 | if (LHSShiftAmt.getOpcode() == ISD::SUB && |
| 3268 | RHSShiftAmt == LHSShiftAmt.getOperand(1)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3269 | if (ConstantSDNode *SUBC = |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3270 | dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3271 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Craig Topper | 32b7343 | 2012-09-29 06:54:22 +0000 | [diff] [blame] | 3272 | return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg, |
| 3273 | HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode(); |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 3274 | } |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3275 | } |
| 3276 | } |
| 3277 | |
Dan Gohman | 74feef2 | 2008-10-17 01:23:35 +0000 | [diff] [blame] | 3278 | // Look for sign/zext/any-extended or truncate cases: |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 3279 | if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || |
| 3280 | LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || |
| 3281 | LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || |
| 3282 | LHSShiftAmt.getOpcode() == ISD::TRUNCATE) && |
| 3283 | (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || |
| 3284 | RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || |
| 3285 | RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || |
| 3286 | RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3287 | SDValue LExtOp0 = LHSShiftAmt.getOperand(0); |
| 3288 | SDValue RExtOp0 = RHSShiftAmt.getOperand(0); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3289 | if (RExtOp0.getOpcode() == ISD::SUB && |
| 3290 | RExtOp0.getOperand(1) == LExtOp0) { |
| 3291 | // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) -> |
Bill Wendling | c5cbda1 | 2008-08-31 00:37:27 +0000 | [diff] [blame] | 3292 | // (rotl x, y) |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3293 | // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) -> |
Bill Wendling | c5cbda1 | 2008-08-31 00:37:27 +0000 | [diff] [blame] | 3294 | // (rotr x, (sub 32, y)) |
Dan Gohman | 74feef2 | 2008-10-17 01:23:35 +0000 | [diff] [blame] | 3295 | if (ConstantSDNode *SUBC = |
| 3296 | dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3297 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3298 | return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, |
| 3299 | LHSShiftArg, |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 3300 | HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode(); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3301 | } |
| 3302 | } |
| 3303 | } else if (LExtOp0.getOpcode() == ISD::SUB && |
| 3304 | RExtOp0 == LExtOp0.getOperand(1)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3305 | // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) -> |
Bill Wendling | c5cbda1 | 2008-08-31 00:37:27 +0000 | [diff] [blame] | 3306 | // (rotr x, y) |
Bill Wendling | 353dea2 | 2008-08-31 01:04:56 +0000 | [diff] [blame] | 3307 | // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) -> |
Bill Wendling | c5cbda1 | 2008-08-31 00:37:27 +0000 | [diff] [blame] | 3308 | // (rotl x, (sub 32, y)) |
Dan Gohman | 74feef2 | 2008-10-17 01:23:35 +0000 | [diff] [blame] | 3309 | if (ConstantSDNode *SUBC = |
| 3310 | dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3311 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3312 | return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, |
| 3313 | LHSShiftArg, |
Bill Wendling | 353dea2 | 2008-08-31 01:04:56 +0000 | [diff] [blame] | 3314 | HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode(); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3315 | } |
| 3316 | } |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3317 | } |
| 3318 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3319 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3320 | return 0; |
| 3321 | } |
| 3322 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3323 | SDValue DAGCombiner::visitXOR(SDNode *N) { |
| 3324 | SDValue N0 = N->getOperand(0); |
| 3325 | SDValue N1 = N->getOperand(1); |
| 3326 | SDValue LHS, RHS, CC; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3327 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3328 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3329 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3330 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3331 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3332 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3333 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3334 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 3335 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3336 | |
Evan Cheng | 26471c4 | 2008-03-25 20:08:07 +0000 | [diff] [blame] | 3337 | // fold (xor undef, undef) -> 0. This is a common idiom (misuse). |
| 3338 | if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF) |
| 3339 | return DAG.getConstant(0, VT); |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 3340 | // fold (xor x, undef) -> undef |
Dan Gohman | 70fb1ae | 2007-07-10 15:19:29 +0000 | [diff] [blame] | 3341 | if (N0.getOpcode() == ISD::UNDEF) |
| 3342 | return N0; |
| 3343 | if (N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 3344 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3345 | // fold (xor c1, c2) -> c1^c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3346 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3347 | return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3348 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 3349 | if (N0C && !N1C) |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3350 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3351 | // fold (xor x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3352 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3353 | return N0; |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3354 | // reassociate xor |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 3355 | SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3356 | if (RXOR.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3357 | return RXOR; |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3358 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3359 | // fold !(x cc y) -> (x !cc y) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3360 | if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3361 | bool isInt = LHS.getValueType().isInteger(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3362 | ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(), |
| 3363 | isInt); |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3364 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 3365 | if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) { |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3366 | switch (N0.getOpcode()) { |
| 3367 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 3368 | llvm_unreachable("Unhandled SetCC Equivalent!"); |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3369 | case ISD::SETCC: |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3370 | return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC); |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3371 | case ISD::SELECT_CC: |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3372 | return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2), |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3373 | N0.getOperand(3), NotCC); |
| 3374 | } |
| 3375 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3376 | } |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3377 | |
Chris Lattner | 61c5ff4 | 2007-09-10 21:39:07 +0000 | [diff] [blame] | 3378 | // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y))) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3379 | if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND && |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 3380 | N0.getNode()->hasOneUse() && |
| 3381 | isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){ |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3382 | SDValue V = N0.getOperand(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3383 | V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V, |
Duncan Sands | 272dce0 | 2007-10-10 09:54:50 +0000 | [diff] [blame] | 3384 | DAG.getConstant(1, V.getValueType())); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3385 | AddToWorkList(V.getNode()); |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3386 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V); |
Chris Lattner | 61c5ff4 | 2007-09-10 21:39:07 +0000 | [diff] [blame] | 3387 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3388 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3389 | // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3390 | if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 && |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3391 | (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3392 | SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3393 | if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) { |
| 3394 | unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3395 | LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS |
| 3396 | RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3397 | AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode()); |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3398 | return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3399 | } |
| 3400 | } |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3401 | // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3402 | if (N1C && N1C->isAllOnesValue() && |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3403 | (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3404 | SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3405 | if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) { |
| 3406 | unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3407 | LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS |
| 3408 | RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3409 | AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode()); |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3410 | return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3411 | } |
| 3412 | } |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3413 | // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2)) |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3414 | if (N1C && N0.getOpcode() == ISD::XOR) { |
| 3415 | ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0)); |
| 3416 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 3417 | if (N00C) |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3418 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1), |
| 3419 | DAG.getConstant(N1C->getAPIntValue() ^ |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3420 | N00C->getAPIntValue(), VT)); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3421 | if (N01C) |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3422 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3423 | DAG.getConstant(N1C->getAPIntValue() ^ |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3424 | N01C->getAPIntValue(), VT)); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3425 | } |
| 3426 | // fold (xor x, x) -> 0 |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 3427 | if (N0 == N1) |
| 3428 | return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3429 | |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 3430 | // Simplify: xor (op x...), (op y...) -> (op (xor x, y)) |
| 3431 | if (N0.getOpcode() == N1.getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3432 | SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3433 | if (Tmp.getNode()) return Tmp; |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3434 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3435 | |
Chris Lattner | 3e104b1 | 2006-04-08 04:15:24 +0000 | [diff] [blame] | 3436 | // Simplify the expression using non-local knowledge. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3437 | if (!VT.isVector() && |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3438 | SimplifyDemandedBits(SDValue(N, 0))) |
| 3439 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3440 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3441 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3442 | } |
| 3443 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3444 | /// visitShiftByConstant - Handle transforms common to the three shifts, when |
| 3445 | /// the shift amount is a constant. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3446 | SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3447 | SDNode *LHS = N->getOperand(0).getNode(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3448 | if (!LHS->hasOneUse()) return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3449 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3450 | // We want to pull some binops through shifts, so that we have (and (shift)) |
| 3451 | // instead of (shift (and)), likewise for add, or, xor, etc. This sort of |
| 3452 | // thing happens with address calculations, so it's important to canonicalize |
| 3453 | // it. |
| 3454 | bool HighBitSet = false; // Can we transform this if the high bit is set? |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3455 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3456 | switch (LHS->getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3457 | default: return SDValue(); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3458 | case ISD::OR: |
| 3459 | case ISD::XOR: |
| 3460 | HighBitSet = false; // We can only transform sra if the high bit is clear. |
| 3461 | break; |
| 3462 | case ISD::AND: |
| 3463 | HighBitSet = true; // We can only transform sra if the high bit is set. |
| 3464 | break; |
| 3465 | case ISD::ADD: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3466 | if (N->getOpcode() != ISD::SHL) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3467 | return SDValue(); // only shl(add) not sr[al](add). |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3468 | HighBitSet = false; // We can only transform sra if the high bit is clear. |
| 3469 | break; |
| 3470 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3471 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3472 | // We require the RHS of the binop to be a constant as well. |
| 3473 | ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3474 | if (!BinOpCst) return SDValue(); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3475 | |
| 3476 | // FIXME: disable this unless the input to the binop is a shift by a constant. |
| 3477 | // If it is not a shift, it pessimizes some common cases like: |
Chris Lattner | d3fd6d2 | 2007-12-06 07:47:55 +0000 | [diff] [blame] | 3478 | // |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3479 | // void foo(int *X, int i) { X[i & 1235] = 1; } |
| 3480 | // int bar(int *X, int i) { return X[i & 255]; } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3481 | SDNode *BinOpLHSVal = LHS->getOperand(0).getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3482 | if ((BinOpLHSVal->getOpcode() != ISD::SHL && |
Chris Lattner | d3fd6d2 | 2007-12-06 07:47:55 +0000 | [diff] [blame] | 3483 | BinOpLHSVal->getOpcode() != ISD::SRA && |
| 3484 | BinOpLHSVal->getOpcode() != ISD::SRL) || |
| 3485 | !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1))) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3486 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3487 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3488 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3489 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3490 | // If this is a signed shift right, and the high bit is modified by the |
| 3491 | // logical operation, do not perform the transformation. The highBitSet |
| 3492 | // boolean indicates the value of the high bit of the constant which would |
| 3493 | // cause it to be modified for this operation. |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3494 | if (N->getOpcode() == ISD::SRA) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3495 | bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative(); |
| 3496 | if (BinOpRHSSignSet != HighBitSet) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3497 | return SDValue(); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3498 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3499 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3500 | // Fold the constants, shifting the binop RHS by the shift amount. |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3501 | SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(), |
| 3502 | N->getValueType(0), |
| 3503 | LHS->getOperand(1), N->getOperand(1)); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3504 | |
| 3505 | // Create the new shift. |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 3506 | SDValue NewShift = DAG.getNode(N->getOpcode(), |
| 3507 | LHS->getOperand(0).getDebugLoc(), |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3508 | VT, LHS->getOperand(0), N->getOperand(1)); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3509 | |
| 3510 | // Create the new binop. |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3511 | return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3512 | } |
| 3513 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3514 | SDValue DAGCombiner::visitSHL(SDNode *N) { |
| 3515 | SDValue N0 = N->getOperand(0); |
| 3516 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3517 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3518 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3519 | EVT VT = N0.getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3520 | unsigned OpSizeInBits = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3521 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3522 | // fold (shl c1, c2) -> c1<<c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3523 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3524 | return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3525 | // fold (shl 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3526 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3527 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3528 | // fold (shl x, c >= size(x)) -> undef |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3529 | if (N1C && N1C->getZExtValue() >= OpSizeInBits) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3530 | return DAG.getUNDEF(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3531 | // fold (shl x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3532 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3533 | return N0; |
Chad Rosier | 92bcd96 | 2011-06-14 22:29:10 +0000 | [diff] [blame] | 3534 | // fold (shl undef, x) -> 0 |
| 3535 | if (N0.getOpcode() == ISD::UNDEF) |
| 3536 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3537 | // if (shl x, c) is known to be zero, return 0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3538 | if (DAG.MaskedValueIsZero(SDValue(N, 0), |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3539 | APInt::getAllOnesValue(OpSizeInBits))) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3540 | return DAG.getConstant(0, VT); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3541 | // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))). |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3542 | if (N1.getOpcode() == ISD::TRUNCATE && |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3543 | N1.getOperand(0).getOpcode() == ISD::AND && |
| 3544 | N1.hasOneUse() && N1.getOperand(0).hasOneUse()) { |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3545 | SDValue N101 = N1.getOperand(0).getOperand(1); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3546 | if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3547 | EVT TruncVT = N1.getValueType(); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3548 | SDValue N100 = N1.getOperand(0).getOperand(0); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3549 | APInt TruncC = N101C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 3550 | TruncC = TruncC.trunc(TruncVT.getSizeInBits()); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3551 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0, |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 3552 | DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT, |
| 3553 | DAG.getNode(ISD::TRUNCATE, |
| 3554 | N->getDebugLoc(), |
| 3555 | TruncVT, N100), |
Dan Gohman | ce9bc12 | 2009-01-27 20:39:34 +0000 | [diff] [blame] | 3556 | DAG.getConstant(TruncC, TruncVT))); |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3557 | } |
| 3558 | } |
| 3559 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3560 | if (N1C && SimplifyDemandedBits(SDValue(N, 0))) |
| 3561 | return SDValue(N, 0); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3562 | |
| 3563 | // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2)) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3564 | if (N1C && N0.getOpcode() == ISD::SHL && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3565 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3566 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue(); |
| 3567 | uint64_t c2 = N1C->getZExtValue(); |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3568 | if (c1 + c2 >= OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3569 | return DAG.getConstant(0, VT); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3570 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3571 | DAG.getConstant(c1 + c2, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3572 | } |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3573 | |
| 3574 | // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2))) |
| 3575 | // For this to be valid, the second form must not preserve any of the bits |
| 3576 | // that are shifted out by the inner shift in the first form. This means |
| 3577 | // the outer shift size must be >= the number of bits added by the ext. |
| 3578 | // As a corollary, we don't care what kind of ext it is. |
| 3579 | if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND || |
| 3580 | N0.getOpcode() == ISD::ANY_EXTEND || |
| 3581 | N0.getOpcode() == ISD::SIGN_EXTEND) && |
| 3582 | N0.getOperand(0).getOpcode() == ISD::SHL && |
| 3583 | isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) { |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3584 | uint64_t c1 = |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3585 | cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue(); |
| 3586 | uint64_t c2 = N1C->getZExtValue(); |
| 3587 | EVT InnerShiftVT = N0.getOperand(0).getValueType(); |
| 3588 | uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits(); |
| 3589 | if (c2 >= OpSizeInBits - InnerShiftSize) { |
| 3590 | if (c1 + c2 >= OpSizeInBits) |
| 3591 | return DAG.getConstant(0, VT); |
| 3592 | return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT, |
| 3593 | DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT, |
| 3594 | N0.getOperand(0)->getOperand(0)), |
| 3595 | DAG.getConstant(c1 + c2, N1.getValueType())); |
| 3596 | } |
| 3597 | } |
| 3598 | |
Eli Friedman | 2a6d9eb | 2011-06-09 22:14:44 +0000 | [diff] [blame] | 3599 | // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or |
| 3600 | // (and (srl x, (sub c1, c2), MASK) |
Chandler Carruth | 62dfc51 | 2012-01-05 11:05:55 +0000 | [diff] [blame] | 3601 | // Only fold this if the inner shift has no other uses -- if it does, folding |
| 3602 | // this will increase the total number of instructions. |
| 3603 | if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3604 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3605 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue(); |
Evan Cheng | d101a72 | 2009-07-21 05:40:15 +0000 | [diff] [blame] | 3606 | if (c1 < VT.getSizeInBits()) { |
| 3607 | uint64_t c2 = N1C->getZExtValue(); |
Eli Friedman | 2a6d9eb | 2011-06-09 22:14:44 +0000 | [diff] [blame] | 3608 | APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(), |
| 3609 | VT.getSizeInBits() - c1); |
| 3610 | SDValue Shift; |
| 3611 | if (c2 > c1) { |
| 3612 | Mask = Mask.shl(c2-c1); |
| 3613 | Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3614 | DAG.getConstant(c2-c1, N1.getValueType())); |
| 3615 | } else { |
| 3616 | Mask = Mask.lshr(c1-c2); |
| 3617 | Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3618 | DAG.getConstant(c1-c2, N1.getValueType())); |
| 3619 | } |
| 3620 | return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift, |
| 3621 | DAG.getConstant(Mask, VT)); |
Evan Cheng | d101a72 | 2009-07-21 05:40:15 +0000 | [diff] [blame] | 3622 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3623 | } |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3624 | // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1)) |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 3625 | if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) { |
| 3626 | SDValue HiBitsMask = |
| 3627 | DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(), |
| 3628 | VT.getSizeInBits() - |
| 3629 | N1C->getZExtValue()), |
| 3630 | VT); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3631 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0), |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 3632 | HiBitsMask); |
| 3633 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3634 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3635 | if (N1C) { |
| 3636 | SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue()); |
| 3637 | if (NewSHL.getNode()) |
| 3638 | return NewSHL; |
| 3639 | } |
| 3640 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3641 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3642 | } |
| 3643 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3644 | SDValue DAGCombiner::visitSRA(SDNode *N) { |
| 3645 | SDValue N0 = N->getOperand(0); |
| 3646 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3647 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3648 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3649 | EVT VT = N0.getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3650 | unsigned OpSizeInBits = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3651 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3652 | // fold (sra c1, c2) -> (sra c1, c2) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3653 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3654 | return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3655 | // fold (sra 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3656 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3657 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3658 | // fold (sra -1, x) -> -1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3659 | if (N0C && N0C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3660 | return N0; |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3661 | // fold (sra x, (setge c, size(x))) -> undef |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3662 | if (N1C && N1C->getZExtValue() >= OpSizeInBits) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3663 | return DAG.getUNDEF(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3664 | // fold (sra x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3665 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3666 | return N0; |
Nate Begeman | fb7217b | 2006-02-17 19:54:08 +0000 | [diff] [blame] | 3667 | // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports |
| 3668 | // sext_inreg. |
| 3669 | if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) { |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3670 | unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 3671 | EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits); |
| 3672 | if (VT.isVector()) |
| 3673 | ExtVT = EVT::getVectorVT(*DAG.getContext(), |
| 3674 | ExtVT, VT.getVectorNumElements()); |
| 3675 | if ((!LegalOperations || |
| 3676 | TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT))) |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3677 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 3678 | N0.getOperand(0), DAG.getValueType(ExtVT)); |
Nate Begeman | fb7217b | 2006-02-17 19:54:08 +0000 | [diff] [blame] | 3679 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3680 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3681 | // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2)) |
Chris Lattner | 71d9ebc | 2006-02-28 06:23:04 +0000 | [diff] [blame] | 3682 | if (N1C && N0.getOpcode() == ISD::SRA) { |
| 3683 | if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3684 | unsigned Sum = N1C->getZExtValue() + C1->getZExtValue(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3685 | if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1; |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3686 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0), |
Chris Lattner | 71d9ebc | 2006-02-28 06:23:04 +0000 | [diff] [blame] | 3687 | DAG.getConstant(Sum, N1C->getValueType(0))); |
| 3688 | } |
| 3689 | } |
Christopher Lamb | 15cbde3 | 2008-03-19 08:30:06 +0000 | [diff] [blame] | 3690 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3691 | // fold (sra (shl X, m), (sub result_size, n)) |
| 3692 | // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3693 | // result_size - n != m. |
| 3694 | // If truncate is free for the target sext(shl) is likely to result in better |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3695 | // code. |
Christopher Lamb | 15cbde3 | 2008-03-19 08:30:06 +0000 | [diff] [blame] | 3696 | if (N0.getOpcode() == ISD::SHL) { |
| 3697 | // Get the two constanst of the shifts, CN0 = m, CN = n. |
| 3698 | const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 3699 | if (N01C && N1C) { |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3700 | // Determine what the truncate's result bitsize and type would be. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3701 | EVT TruncVT = |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 3702 | EVT::getIntegerVT(*DAG.getContext(), |
| 3703 | OpSizeInBits - N1C->getZExtValue()); |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3704 | // Determine the residual right-shift amount. |
Torok Edwin | 6bb4958 | 2009-05-23 17:29:48 +0000 | [diff] [blame] | 3705 | signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue(); |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3706 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3707 | // If the shift is not a no-op (in which case this should be just a sign |
| 3708 | // extend already), the truncated to type is legal, sign_extend is legal |
Dan Gohman | f451cb8 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 3709 | // on that type, and the truncate to that type is both legal and free, |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3710 | // perform the transform. |
Torok Edwin | 6bb4958 | 2009-05-23 17:29:48 +0000 | [diff] [blame] | 3711 | if ((ShiftAmt > 0) && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3712 | TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) && |
| 3713 | TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) && |
Evan Cheng | 260e07e | 2008-03-20 02:18:41 +0000 | [diff] [blame] | 3714 | TLI.isTruncateFree(VT, TruncVT)) { |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3715 | |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3716 | SDValue Amt = DAG.getConstant(ShiftAmt, |
| 3717 | getShiftAmountTy(N0.getOperand(0).getValueType())); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3718 | SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, |
| 3719 | N0.getOperand(0), Amt); |
| 3720 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT, |
| 3721 | Shift); |
| 3722 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), |
| 3723 | N->getValueType(0), Trunc); |
Christopher Lamb | 15cbde3 | 2008-03-19 08:30:06 +0000 | [diff] [blame] | 3724 | } |
| 3725 | } |
| 3726 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3727 | |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3728 | // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))). |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3729 | if (N1.getOpcode() == ISD::TRUNCATE && |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3730 | N1.getOperand(0).getOpcode() == ISD::AND && |
| 3731 | N1.hasOneUse() && N1.getOperand(0).hasOneUse()) { |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3732 | SDValue N101 = N1.getOperand(0).getOperand(1); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3733 | if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3734 | EVT TruncVT = N1.getValueType(); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3735 | SDValue N100 = N1.getOperand(0).getOperand(0); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3736 | APInt TruncC = N101C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 3737 | TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits()); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3738 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3739 | DAG.getNode(ISD::AND, N->getDebugLoc(), |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3740 | TruncVT, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3741 | DAG.getNode(ISD::TRUNCATE, |
| 3742 | N->getDebugLoc(), |
| 3743 | TruncVT, N100), |
Dan Gohman | ce9bc12 | 2009-01-27 20:39:34 +0000 | [diff] [blame] | 3744 | DAG.getConstant(TruncC, TruncVT))); |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3745 | } |
| 3746 | } |
| 3747 | |
Benjamin Kramer | 9b108a3 | 2011-01-30 16:38:43 +0000 | [diff] [blame] | 3748 | // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2)) |
| 3749 | // if c1 is equal to the number of bits the trunc removes |
| 3750 | if (N0.getOpcode() == ISD::TRUNCATE && |
| 3751 | (N0.getOperand(0).getOpcode() == ISD::SRL || |
| 3752 | N0.getOperand(0).getOpcode() == ISD::SRA) && |
| 3753 | N0.getOperand(0).hasOneUse() && |
| 3754 | N0.getOperand(0).getOperand(1).hasOneUse() && |
| 3755 | N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) { |
| 3756 | EVT LargeVT = N0.getOperand(0).getValueType(); |
| 3757 | ConstantSDNode *LargeShiftAmt = |
| 3758 | cast<ConstantSDNode>(N0.getOperand(0).getOperand(1)); |
| 3759 | |
| 3760 | if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits == |
| 3761 | LargeShiftAmt->getZExtValue()) { |
| 3762 | SDValue Amt = |
| 3763 | DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3764 | getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType())); |
Benjamin Kramer | 9b108a3 | 2011-01-30 16:38:43 +0000 | [diff] [blame] | 3765 | SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT, |
| 3766 | N0.getOperand(0).getOperand(0), Amt); |
| 3767 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA); |
| 3768 | } |
| 3769 | } |
| 3770 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3771 | // Simplify, based on bits shifted out of the LHS. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3772 | if (N1C && SimplifyDemandedBits(SDValue(N, 0))) |
| 3773 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3774 | |
| 3775 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3776 | // If the sign bit is known to be zero, switch this to a SRL. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 3777 | if (DAG.SignBitIsZero(N0)) |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3778 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3779 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3780 | if (N1C) { |
| 3781 | SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue()); |
| 3782 | if (NewSRA.getNode()) |
| 3783 | return NewSRA; |
| 3784 | } |
| 3785 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3786 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3787 | } |
| 3788 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3789 | SDValue DAGCombiner::visitSRL(SDNode *N) { |
| 3790 | SDValue N0 = N->getOperand(0); |
| 3791 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3792 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3793 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3794 | EVT VT = N0.getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3795 | unsigned OpSizeInBits = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3796 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3797 | // fold (srl c1, c2) -> c1 >>u c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3798 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3799 | return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3800 | // fold (srl 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3801 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3802 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3803 | // fold (srl x, c >= size(x)) -> undef |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3804 | if (N1C && N1C->getZExtValue() >= OpSizeInBits) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3805 | return DAG.getUNDEF(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3806 | // fold (srl x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3807 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3808 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3809 | // if (srl x, c) is known to be zero, return 0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3810 | if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 3811 | APInt::getAllOnesValue(OpSizeInBits))) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3812 | return DAG.getConstant(0, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3813 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3814 | // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2)) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3815 | if (N1C && N0.getOpcode() == ISD::SRL && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3816 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3817 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue(); |
| 3818 | uint64_t c2 = N1C->getZExtValue(); |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3819 | if (c1 + c2 >= OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3820 | return DAG.getConstant(0, VT); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3821 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3822 | DAG.getConstant(c1 + c2, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3823 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3824 | |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3825 | // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2))) |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3826 | if (N1C && N0.getOpcode() == ISD::TRUNCATE && |
| 3827 | N0.getOperand(0).getOpcode() == ISD::SRL && |
Dale Johannesen | 025cc6e | 2010-12-20 20:10:50 +0000 | [diff] [blame] | 3828 | isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) { |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3829 | uint64_t c1 = |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3830 | cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue(); |
| 3831 | uint64_t c2 = N1C->getZExtValue(); |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3832 | EVT InnerShiftVT = N0.getOperand(0).getValueType(); |
| 3833 | EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType(); |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3834 | uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits(); |
Dale Johannesen | 025cc6e | 2010-12-20 20:10:50 +0000 | [diff] [blame] | 3835 | // This is only valid if the OpSizeInBits + c1 = size of inner shift. |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3836 | if (c1 + OpSizeInBits == InnerShiftSize) { |
| 3837 | if (c1 + c2 >= InnerShiftSize) |
| 3838 | return DAG.getConstant(0, VT); |
| 3839 | return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3840 | DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT, |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3841 | N0.getOperand(0)->getOperand(0), |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3842 | DAG.getConstant(c1 + c2, ShiftCountVT))); |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3843 | } |
| 3844 | } |
| 3845 | |
Chris Lattner | efcddc3 | 2010-04-15 05:28:43 +0000 | [diff] [blame] | 3846 | // fold (srl (shl x, c), c) -> (and x, cst2) |
| 3847 | if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 && |
| 3848 | N0.getValueSizeInBits() <= 64) { |
| 3849 | uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits(); |
| 3850 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3851 | DAG.getConstant(~0ULL >> ShAmt, VT)); |
| 3852 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3853 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3854 | |
Chris Lattner | 06afe07 | 2006-05-05 22:53:17 +0000 | [diff] [blame] | 3855 | // fold (srl (anyextend x), c) -> (anyextend (srl x, c)) |
| 3856 | if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { |
| 3857 | // Shifting in all undef bits? |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3858 | EVT SmallVT = N0.getOperand(0).getValueType(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3859 | if (N1C->getZExtValue() >= SmallVT.getSizeInBits()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3860 | return DAG.getUNDEF(VT); |
Chris Lattner | 06afe07 | 2006-05-05 22:53:17 +0000 | [diff] [blame] | 3861 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3862 | if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) { |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 3863 | uint64_t ShiftAmt = N1C->getZExtValue(); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3864 | SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT, |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 3865 | N0.getOperand(0), |
| 3866 | DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT))); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3867 | AddToWorkList(SmallShift.getNode()); |
| 3868 | return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift); |
| 3869 | } |
Chris Lattner | 06afe07 | 2006-05-05 22:53:17 +0000 | [diff] [blame] | 3870 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3871 | |
Chris Lattner | 3657ffe | 2006-10-12 20:23:19 +0000 | [diff] [blame] | 3872 | // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign |
| 3873 | // bit, which is unmodified by sra. |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3874 | if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) { |
Chris Lattner | 3657ffe | 2006-10-12 20:23:19 +0000 | [diff] [blame] | 3875 | if (N0.getOpcode() == ISD::SRA) |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3876 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1); |
Chris Lattner | 3657ffe | 2006-10-12 20:23:19 +0000 | [diff] [blame] | 3877 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3878 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3879 | // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit). |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3880 | if (N1C && N0.getOpcode() == ISD::CTLZ && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3881 | N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) { |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 3882 | APInt KnownZero, KnownOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 3883 | DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3884 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3885 | // If any of the input bits are KnownOne, then the input couldn't be all |
| 3886 | // zeros, thus the result of the srl will always be zero. |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 3887 | if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3888 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3889 | // If all of the bits input the to ctlz node are known to be zero, then |
| 3890 | // the result of the ctlz is "32" and the result of the shift is one. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 3891 | APInt UnknownBits = ~KnownZero; |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3892 | if (UnknownBits == 0) return DAG.getConstant(1, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3893 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3894 | // Otherwise, check to see if there is exactly one bit input to the ctlz. |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3895 | if ((UnknownBits & (UnknownBits - 1)) == 0) { |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3896 | // Okay, we know that only that the single bit specified by UnknownBits |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3897 | // could be set on input to the CTLZ node. If this bit is set, the SRL |
| 3898 | // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair |
| 3899 | // to an SRL/XOR pair, which is likely to simplify more. |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 3900 | unsigned ShAmt = UnknownBits.countTrailingZeros(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3901 | SDValue Op = N0.getOperand(0); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3902 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3903 | if (ShAmt) { |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3904 | Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3905 | DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType()))); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3906 | AddToWorkList(Op.getNode()); |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3907 | } |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3908 | |
| 3909 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, |
| 3910 | Op, DAG.getConstant(1, VT)); |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3911 | } |
| 3912 | } |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3913 | |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3914 | // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))). |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3915 | if (N1.getOpcode() == ISD::TRUNCATE && |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3916 | N1.getOperand(0).getOpcode() == ISD::AND && |
| 3917 | N1.hasOneUse() && N1.getOperand(0).hasOneUse()) { |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3918 | SDValue N101 = N1.getOperand(0).getOperand(1); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3919 | if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3920 | EVT TruncVT = N1.getValueType(); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3921 | SDValue N100 = N1.getOperand(0).getOperand(0); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3922 | APInt TruncC = N101C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 3923 | TruncC = TruncC.trunc(TruncVT.getSizeInBits()); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3924 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3925 | DAG.getNode(ISD::AND, N->getDebugLoc(), |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3926 | TruncVT, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3927 | DAG.getNode(ISD::TRUNCATE, |
| 3928 | N->getDebugLoc(), |
| 3929 | TruncVT, N100), |
Dan Gohman | ce9bc12 | 2009-01-27 20:39:34 +0000 | [diff] [blame] | 3930 | DAG.getConstant(TruncC, TruncVT))); |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3931 | } |
| 3932 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3933 | |
Chris Lattner | 61a4c07 | 2007-04-18 03:06:49 +0000 | [diff] [blame] | 3934 | // fold operands of srl based on knowledge that the low bits are not |
| 3935 | // demanded. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3936 | if (N1C && SimplifyDemandedBits(SDValue(N, 0))) |
| 3937 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3938 | |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3939 | if (N1C) { |
| 3940 | SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue()); |
| 3941 | if (NewSRL.getNode()) |
| 3942 | return NewSRL; |
| 3943 | } |
| 3944 | |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 3945 | // Attempt to convert a srl of a load into a narrower zero-extending load. |
| 3946 | SDValue NarrowLoad = ReduceLoadWidth(N); |
| 3947 | if (NarrowLoad.getNode()) |
| 3948 | return NarrowLoad; |
| 3949 | |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3950 | // Here is a common situation. We want to optimize: |
| 3951 | // |
| 3952 | // %a = ... |
| 3953 | // %b = and i32 %a, 2 |
| 3954 | // %c = srl i32 %b, 1 |
| 3955 | // brcond i32 %c ... |
| 3956 | // |
| 3957 | // into |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3958 | // |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3959 | // %a = ... |
| 3960 | // %b = and %a, 2 |
| 3961 | // %c = setcc eq %b, 0 |
| 3962 | // brcond %c ... |
| 3963 | // |
| 3964 | // However when after the source operand of SRL is optimized into AND, the SRL |
| 3965 | // itself may not be optimized further. Look for it and add the BRCOND into |
| 3966 | // the worklist. |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 3967 | if (N->hasOneUse()) { |
| 3968 | SDNode *Use = *N->use_begin(); |
| 3969 | if (Use->getOpcode() == ISD::BRCOND) |
| 3970 | AddToWorkList(Use); |
| 3971 | else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) { |
| 3972 | // Also look pass the truncate. |
| 3973 | Use = *Use->use_begin(); |
| 3974 | if (Use->getOpcode() == ISD::BRCOND) |
| 3975 | AddToWorkList(Use); |
| 3976 | } |
| 3977 | } |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3978 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3979 | return SDValue(); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 3980 | } |
| 3981 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3982 | SDValue DAGCombiner::visitCTLZ(SDNode *N) { |
| 3983 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3984 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3985 | |
| 3986 | // fold (ctlz c1) -> c2 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 3987 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 3988 | return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3989 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3990 | } |
| 3991 | |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 3992 | SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) { |
| 3993 | SDValue N0 = N->getOperand(0); |
| 3994 | EVT VT = N->getValueType(0); |
| 3995 | |
| 3996 | // fold (ctlz_zero_undef c1) -> c2 |
| 3997 | if (isa<ConstantSDNode>(N0)) |
| 3998 | return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0); |
| 3999 | return SDValue(); |
| 4000 | } |
| 4001 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4002 | SDValue DAGCombiner::visitCTTZ(SDNode *N) { |
| 4003 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4004 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4005 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4006 | // fold (cttz c1) -> c2 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4007 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4008 | return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4009 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4010 | } |
| 4011 | |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 4012 | SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) { |
| 4013 | SDValue N0 = N->getOperand(0); |
| 4014 | EVT VT = N->getValueType(0); |
| 4015 | |
| 4016 | // fold (cttz_zero_undef c1) -> c2 |
| 4017 | if (isa<ConstantSDNode>(N0)) |
| 4018 | return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0); |
| 4019 | return SDValue(); |
| 4020 | } |
| 4021 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4022 | SDValue DAGCombiner::visitCTPOP(SDNode *N) { |
| 4023 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4024 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4025 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4026 | // fold (ctpop c1) -> c2 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4027 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4028 | return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4029 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4030 | } |
| 4031 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4032 | SDValue DAGCombiner::visitSELECT(SDNode *N) { |
| 4033 | SDValue N0 = N->getOperand(0); |
| 4034 | SDValue N1 = N->getOperand(1); |
| 4035 | SDValue N2 = N->getOperand(2); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4036 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 4037 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 4038 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4039 | EVT VT = N->getValueType(0); |
| 4040 | EVT VT0 = N0.getValueType(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4041 | |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4042 | // fold (select C, X, X) -> X |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4043 | if (N1 == N2) |
| 4044 | return N1; |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4045 | // fold (select true, X, Y) -> X |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4046 | if (N0C && !N0C->isNullValue()) |
| 4047 | return N1; |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4048 | // fold (select false, X, Y) -> Y |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4049 | if (N0C && N0C->isNullValue()) |
| 4050 | return N2; |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4051 | // fold (select C, 1, X) -> (or C, X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4052 | if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4053 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2); |
| 4054 | // fold (select C, 0, 1) -> (xor C, 1) |
Bob Wilson | 67ba223 | 2009-01-22 22:05:48 +0000 | [diff] [blame] | 4055 | if (VT.isInteger() && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4056 | (VT0 == MVT::i1 || |
Bob Wilson | 67ba223 | 2009-01-22 22:05:48 +0000 | [diff] [blame] | 4057 | (VT0.isInteger() && |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 4058 | TLI.getBooleanContents(false) == |
| 4059 | TargetLowering::ZeroOrOneBooleanContent)) && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4060 | N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) { |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4061 | SDValue XORNode; |
Evan Cheng | 571c478 | 2007-08-18 05:57:05 +0000 | [diff] [blame] | 4062 | if (VT == VT0) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4063 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0, |
| 4064 | N0, DAG.getConstant(1, VT0)); |
| 4065 | XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0, |
| 4066 | N0, DAG.getConstant(1, VT0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4067 | AddToWorkList(XORNode.getNode()); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4068 | if (VT.bitsGT(VT0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4069 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode); |
| 4070 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode); |
Evan Cheng | 571c478 | 2007-08-18 05:57:05 +0000 | [diff] [blame] | 4071 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4072 | // fold (select C, 0, X) -> (and (not C), X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4073 | if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) { |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 4074 | SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT); |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 4075 | AddToWorkList(NOTNode.getNode()); |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 4076 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4077 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4078 | // fold (select C, X, 1) -> (or (not C), X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4079 | if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) { |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4080 | SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT); |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 4081 | AddToWorkList(NOTNode.getNode()); |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 4082 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4083 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4084 | // fold (select C, X, 0) -> (and C, X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4085 | if (VT == MVT::i1 && N2C && N2C->isNullValue()) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4086 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1); |
| 4087 | // fold (select X, X, Y) -> (or X, Y) |
| 4088 | // fold (select X, 1, Y) -> (or X, Y) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4089 | if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1))) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4090 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2); |
| 4091 | // fold (select X, Y, X) -> (and X, Y) |
| 4092 | // fold (select X, Y, 0) -> (and X, Y) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4093 | if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0))) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4094 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4095 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 4096 | // If we can fold this based on the true/false value, do so. |
| 4097 | if (SimplifySelectOps(N, N1, N2)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4098 | return SDValue(N, 0); // Don't revisit N. |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4099 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4100 | // fold selects based on a setcc into other things, such as min/max/abs |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 4101 | if (N0.getOpcode() == ISD::SETCC) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4102 | // FIXME: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4103 | // Check against MVT::Other for SELECT_CC, which is a workaround for targets |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4104 | // having to say they don't support SELECT_CC on every type the DAG knows |
| 4105 | // about, since there is no way to mark an opcode illegal at all value types |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4106 | if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) && |
Dan Gohman | 4ea4804 | 2009-08-02 16:19:38 +0000 | [diff] [blame] | 4107 | TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4108 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, |
| 4109 | N0.getOperand(0), N0.getOperand(1), |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4110 | N1, N2, N0.getOperand(2)); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 4111 | return SimplifySelect(N->getDebugLoc(), N0, N1, N2); |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 4112 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4113 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4114 | return SDValue(); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4115 | } |
| 4116 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4117 | SDValue DAGCombiner::visitSELECT_CC(SDNode *N) { |
| 4118 | SDValue N0 = N->getOperand(0); |
| 4119 | SDValue N1 = N->getOperand(1); |
| 4120 | SDValue N2 = N->getOperand(2); |
| 4121 | SDValue N3 = N->getOperand(3); |
| 4122 | SDValue N4 = N->getOperand(4); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4123 | ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4124 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4125 | // fold select_cc lhs, rhs, x, x, cc -> x |
| 4126 | if (N2 == N3) |
| 4127 | return N2; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4128 | |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4129 | // Determine if the condition we're dealing with is constant |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 4130 | SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 4131 | N0, N1, CC, N->getDebugLoc(), false); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4132 | if (SCC.getNode()) AddToWorkList(SCC.getNode()); |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4133 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4134 | if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4135 | if (!SCCC->isNullValue()) |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4136 | return N2; // cond always true -> true val |
| 4137 | else |
| 4138 | return N3; // cond always false -> false val |
| 4139 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4140 | |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4141 | // Fold to a simpler select_cc |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4142 | if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4143 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(), |
| 4144 | SCC.getOperand(0), SCC.getOperand(1), N2, N3, |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4145 | SCC.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4146 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 4147 | // If we can fold this based on the true/false value, do so. |
| 4148 | if (SimplifySelectOps(N, N2, N3)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4149 | return SDValue(N, 0); // Don't revisit N. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4150 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4151 | // fold select_cc into other things, such as min/max/abs |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4152 | return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4153 | } |
| 4154 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4155 | SDValue DAGCombiner::visitSETCC(SDNode *N) { |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4156 | return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 4157 | cast<CondCodeSDNode>(N->getOperand(2))->get(), |
| 4158 | N->getDebugLoc()); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4159 | } |
| 4160 | |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4161 | // ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this: |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4162 | // "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))" |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4163 | // transformation. Returns true if extension are possible and the above |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4164 | // mentioned transformation is profitable. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4165 | static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0, |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4166 | unsigned ExtOpc, |
| 4167 | SmallVector<SDNode*, 4> &ExtendNodes, |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 4168 | const TargetLowering &TLI) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4169 | bool HasCopyToRegUses = false; |
| 4170 | bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType()); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 4171 | for (SDNode::use_iterator UI = N0.getNode()->use_begin(), |
| 4172 | UE = N0.getNode()->use_end(); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4173 | UI != UE; ++UI) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 4174 | SDNode *User = *UI; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4175 | if (User == N) |
| 4176 | continue; |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4177 | if (UI.getUse().getResNo() != N0.getResNo()) |
| 4178 | continue; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4179 | // FIXME: Only extend SETCC N, N and SETCC N, c for now. |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4180 | if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4181 | ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get(); |
| 4182 | if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC)) |
| 4183 | // Sign bits will be lost after a zext. |
| 4184 | return false; |
| 4185 | bool Add = false; |
| 4186 | for (unsigned i = 0; i != 2; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4187 | SDValue UseOp = User->getOperand(i); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4188 | if (UseOp == N0) |
| 4189 | continue; |
| 4190 | if (!isa<ConstantSDNode>(UseOp)) |
| 4191 | return false; |
| 4192 | Add = true; |
| 4193 | } |
| 4194 | if (Add) |
| 4195 | ExtendNodes.push_back(User); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4196 | continue; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4197 | } |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4198 | // If truncates aren't free and there are users we can't |
| 4199 | // extend, it isn't worthwhile. |
| 4200 | if (!isTruncFree) |
| 4201 | return false; |
| 4202 | // Remember if this value is live-out. |
| 4203 | if (User->getOpcode() == ISD::CopyToReg) |
| 4204 | HasCopyToRegUses = true; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4205 | } |
| 4206 | |
| 4207 | if (HasCopyToRegUses) { |
| 4208 | bool BothLiveOut = false; |
| 4209 | for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); |
| 4210 | UI != UE; ++UI) { |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4211 | SDUse &Use = UI.getUse(); |
| 4212 | if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) { |
| 4213 | BothLiveOut = true; |
| 4214 | break; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4215 | } |
| 4216 | } |
| 4217 | if (BothLiveOut) |
| 4218 | // Both unextended and extended values are live out. There had better be |
Bob Wilson | bebfbc5 | 2010-11-28 06:51:19 +0000 | [diff] [blame] | 4219 | // a good reason for the transformation. |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4220 | return ExtendNodes.size(); |
| 4221 | } |
| 4222 | return true; |
| 4223 | } |
| 4224 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4225 | void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs, |
| 4226 | SDValue Trunc, SDValue ExtLoad, DebugLoc DL, |
| 4227 | ISD::NodeType ExtType) { |
| 4228 | // Extend SetCC uses if necessary. |
| 4229 | for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) { |
| 4230 | SDNode *SetCC = SetCCs[i]; |
| 4231 | SmallVector<SDValue, 4> Ops; |
| 4232 | |
| 4233 | for (unsigned j = 0; j != 2; ++j) { |
| 4234 | SDValue SOp = SetCC->getOperand(j); |
| 4235 | if (SOp == Trunc) |
| 4236 | Ops.push_back(ExtLoad); |
| 4237 | else |
| 4238 | Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp)); |
| 4239 | } |
| 4240 | |
| 4241 | Ops.push_back(SetCC->getOperand(2)); |
| 4242 | CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0), |
| 4243 | &Ops[0], Ops.size())); |
| 4244 | } |
| 4245 | } |
| 4246 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4247 | SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) { |
| 4248 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4249 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4250 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4251 | // fold (sext c1) -> c1 |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 4252 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4253 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4254 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4255 | // fold (sext (sext x)) -> (sext x) |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4256 | // fold (sext (aext x)) -> (sext x) |
| 4257 | if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4258 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, |
| 4259 | N0.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4260 | |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4261 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Dan Gohman | 1fdfa6a | 2008-05-20 20:56:33 +0000 | [diff] [blame] | 4262 | // fold (sext (truncate (load x))) -> (sext (smaller load x)) |
| 4263 | // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n))) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4264 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4265 | if (NarrowLoad.getNode()) { |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4266 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4267 | if (NarrowLoad.getNode() != N0.getNode()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4268 | CombineTo(N0.getNode(), NarrowLoad); |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4269 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4270 | AddToWorkList(oye); |
| 4271 | } |
Dan Gohman | c7b3444 | 2009-04-27 02:00:55 +0000 | [diff] [blame] | 4272 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 0b063de | 2007-03-23 02:16:52 +0000 | [diff] [blame] | 4273 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4274 | |
Dan Gohman | 1fdfa6a | 2008-05-20 20:56:33 +0000 | [diff] [blame] | 4275 | // See if the value being truncated is already sign extended. If so, just |
| 4276 | // eliminate the trunc/sext pair. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4277 | SDValue Op = N0.getOperand(0); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4278 | unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits(); |
| 4279 | unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits(); |
| 4280 | unsigned DestBits = VT.getScalarType().getSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 4281 | unsigned NumSignBits = DAG.ComputeNumSignBits(Op); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4282 | |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4283 | if (OpBits == DestBits) { |
| 4284 | // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign |
| 4285 | // bits, it is already ready. |
| 4286 | if (NumSignBits > DestBits-MidBits) |
| 4287 | return Op; |
| 4288 | } else if (OpBits < DestBits) { |
| 4289 | // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign |
| 4290 | // bits, just sext from i32. |
| 4291 | if (NumSignBits > OpBits-MidBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4292 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op); |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4293 | } else { |
| 4294 | // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign |
| 4295 | // bits, just truncate to i32. |
| 4296 | if (NumSignBits > OpBits-MidBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4297 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4298 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4299 | |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4300 | // fold (sext (truncate x)) -> (sextinreg x). |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4301 | if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, |
| 4302 | N0.getValueType())) { |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4303 | if (OpBits < DestBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4304 | Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4305 | else if (OpBits > DestBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4306 | Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op); |
| 4307 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op, |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4308 | DAG.getValueType(N0.getValueType())); |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4309 | } |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4310 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4311 | |
Evan Cheng | 110dec2 | 2005-12-14 02:19:23 +0000 | [diff] [blame] | 4312 | // fold (sext (load x)) -> (sext (truncate (sextload x))) |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4313 | // None of the supported targets knows how to perform load and sign extend |
Nadav Rotem | fcd9619 | 2011-02-27 07:40:43 +0000 | [diff] [blame] | 4314 | // on vectors in one instruction. We only perform this transformation on |
| 4315 | // scalars. |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4316 | if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4317 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 4318 | TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4319 | bool DoXform = true; |
| 4320 | SmallVector<SDNode*, 4> SetCCs; |
| 4321 | if (!N0.hasOneUse()) |
| 4322 | DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI); |
| 4323 | if (DoXform) { |
| 4324 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4325 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4326 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4327 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4328 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4329 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4330 | LN0->getAlignment()); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4331 | CombineTo(N, ExtLoad); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4332 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4333 | N0.getValueType(), ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4334 | CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4335 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4336 | ISD::SIGN_EXTEND); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4337 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4338 | } |
Nate Begeman | 3df4d52 | 2005-10-12 20:40:40 +0000 | [diff] [blame] | 4339 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4340 | |
| 4341 | // fold (sext (sextload x)) -> (sext (truncate (sextload x))) |
| 4342 | // fold (sext ( extload x)) -> (sext (truncate (sextload x))) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4343 | if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && |
| 4344 | ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4345 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4346 | EVT MemVT = LN0->getMemoryVT(); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4347 | if ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4348 | TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4349 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4350 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4351 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 4352 | MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4353 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4354 | LN0->getAlignment()); |
Jim Laskey | f6c4ccf | 2006-12-15 21:38:30 +0000 | [diff] [blame] | 4355 | CombineTo(N, ExtLoad); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 4356 | CombineTo(N0.getNode(), |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4357 | DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4358 | N0.getValueType(), ExtLoad), |
Jim Laskey | f6c4ccf | 2006-12-15 21:38:30 +0000 | [diff] [blame] | 4359 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4360 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Jim Laskey | f6c4ccf | 2006-12-15 21:38:30 +0000 | [diff] [blame] | 4361 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4362 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4363 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4364 | // fold (sext (and/or/xor (load x), cst)) -> |
| 4365 | // (and/or/xor (sextload x), (sext cst)) |
| 4366 | if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || |
| 4367 | N0.getOpcode() == ISD::XOR) && |
| 4368 | isa<LoadSDNode>(N0.getOperand(0)) && |
| 4369 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4370 | TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) && |
| 4371 | (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { |
| 4372 | LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); |
| 4373 | if (LN0->getExtensionType() != ISD::ZEXTLOAD) { |
| 4374 | bool DoXform = true; |
| 4375 | SmallVector<SDNode*, 4> SetCCs; |
| 4376 | if (!N0.hasOneUse()) |
| 4377 | DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND, |
| 4378 | SetCCs, TLI); |
| 4379 | if (DoXform) { |
| 4380 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT, |
| 4381 | LN0->getChain(), LN0->getBasePtr(), |
| 4382 | LN0->getPointerInfo(), |
| 4383 | LN0->getMemoryVT(), |
| 4384 | LN0->isVolatile(), |
| 4385 | LN0->isNonTemporal(), |
| 4386 | LN0->getAlignment()); |
| 4387 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 4388 | Mask = Mask.sext(VT.getSizeInBits()); |
| 4389 | SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 4390 | ExtLoad, DAG.getConstant(Mask, VT)); |
| 4391 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, |
| 4392 | N0.getOperand(0).getDebugLoc(), |
| 4393 | N0.getOperand(0).getValueType(), ExtLoad); |
| 4394 | CombineTo(N, And); |
| 4395 | CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1)); |
| 4396 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4397 | ISD::SIGN_EXTEND); |
| 4398 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4399 | } |
| 4400 | } |
| 4401 | } |
| 4402 | |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4403 | if (N0.getOpcode() == ISD::SETCC) { |
Chris Lattner | 2b7a271 | 2009-07-08 00:31:33 +0000 | [diff] [blame] | 4404 | // sext(setcc) -> sext_in_reg(vsetcc) for vectors. |
Dan Gohman | 3ce89f4 | 2010-04-30 17:19:19 +0000 | [diff] [blame] | 4405 | // Only do this before legalize for now. |
| 4406 | if (VT.isVector() && !LegalOperations) { |
| 4407 | EVT N0VT = N0.getOperand(0).getValueType(); |
Nadav Rotem | 2e50619 | 2012-04-11 08:26:11 +0000 | [diff] [blame] | 4408 | // On some architectures (such as SSE/NEON/etc) the SETCC result type is |
| 4409 | // of the same size as the compared operands. Only optimize sext(setcc()) |
| 4410 | // if this is the case. |
| 4411 | EVT SVT = TLI.getSetCCResultType(N0VT); |
| 4412 | |
| 4413 | // We know that the # elements of the results is the same as the |
| 4414 | // # elements of the compare (and the # elements of the compare result |
| 4415 | // for that matter). Check to see that they are the same size. If so, |
| 4416 | // we know that the element size of the sext'd result matches the |
| 4417 | // element size of the compare operands. |
| 4418 | if (VT.getSizeInBits() == SVT.getSizeInBits()) |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4419 | return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0), |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4420 | N0.getOperand(1), |
| 4421 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
Dan Gohman | 3ce89f4 | 2010-04-30 17:19:19 +0000 | [diff] [blame] | 4422 | // If the desired elements are smaller or larger than the source |
| 4423 | // elements we can use a matching integer vector type and then |
| 4424 | // truncate/sign extend |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 4425 | EVT MatchingElementType = |
| 4426 | EVT::getIntegerVT(*DAG.getContext(), |
| 4427 | N0VT.getScalarType().getSizeInBits()); |
| 4428 | EVT MatchingVectorType = |
| 4429 | EVT::getVectorVT(*DAG.getContext(), MatchingElementType, |
| 4430 | N0VT.getVectorNumElements()); |
Nadav Rotem | 2e50619 | 2012-04-11 08:26:11 +0000 | [diff] [blame] | 4431 | |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 4432 | if (SVT == MatchingVectorType) { |
| 4433 | SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, |
| 4434 | N0.getOperand(0), N0.getOperand(1), |
| 4435 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
| 4436 | return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT); |
Dan Gohman | 3ce89f4 | 2010-04-30 17:19:19 +0000 | [diff] [blame] | 4437 | } |
Chris Lattner | 2b7a271 | 2009-07-08 00:31:33 +0000 | [diff] [blame] | 4438 | } |
Dan Gohman | 3ce89f4 | 2010-04-30 17:19:19 +0000 | [diff] [blame] | 4439 | |
Chris Lattner | 2b7a271 | 2009-07-08 00:31:33 +0000 | [diff] [blame] | 4440 | // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc) |
Dan Gohman | a7bcef1 | 2010-04-24 01:17:30 +0000 | [diff] [blame] | 4441 | unsigned ElementWidth = VT.getScalarType().getSizeInBits(); |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 4442 | SDValue NegOne = |
Dan Gohman | a7bcef1 | 2010-04-24 01:17:30 +0000 | [diff] [blame] | 4443 | DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4444 | SDValue SCC = |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4445 | SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1), |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 4446 | NegOne, DAG.getConstant(0, VT), |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 4447 | cast<CondCodeSDNode>(N0.getOperand(2))->get(), true); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4448 | if (SCC.getNode()) return SCC; |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 4449 | if (!LegalOperations || |
| 4450 | TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT))) |
| 4451 | return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT, |
| 4452 | DAG.getSetCC(N->getDebugLoc(), |
| 4453 | TLI.getSetCCResultType(VT), |
| 4454 | N0.getOperand(0), N0.getOperand(1), |
| 4455 | cast<CondCodeSDNode>(N0.getOperand(2))->get()), |
| 4456 | NegOne, DAG.getConstant(0, VT)); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4457 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4458 | |
Dan Gohman | 8f0ad58 | 2008-04-28 16:58:24 +0000 | [diff] [blame] | 4459 | // fold (sext x) -> (zext x) if the sign bit is known zero. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4460 | if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) && |
Dan Gohman | 187db7b | 2008-04-28 18:47:17 +0000 | [diff] [blame] | 4461 | DAG.SignBitIsZero(N0)) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4462 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4463 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 4464 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4465 | } |
| 4466 | |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4467 | // isTruncateOf - If N is a truncate of some other value, return true, record |
| 4468 | // the value being truncated in Op and which of Op's bits are zero in KnownZero. |
| 4469 | // This function computes KnownZero to avoid a duplicated call to |
| 4470 | // ComputeMaskedBits in the caller. |
| 4471 | static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op, |
| 4472 | APInt &KnownZero) { |
| 4473 | APInt KnownOne; |
| 4474 | if (N->getOpcode() == ISD::TRUNCATE) { |
| 4475 | Op = N->getOperand(0); |
| 4476 | DAG.ComputeMaskedBits(Op, KnownZero, KnownOne); |
| 4477 | return true; |
| 4478 | } |
| 4479 | |
| 4480 | if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 || |
| 4481 | cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE) |
| 4482 | return false; |
| 4483 | |
| 4484 | SDValue Op0 = N->getOperand(0); |
| 4485 | SDValue Op1 = N->getOperand(1); |
| 4486 | assert(Op0.getValueType() == Op1.getValueType()); |
| 4487 | |
| 4488 | ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0); |
| 4489 | ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1); |
Rafael Espindola | fdb230a | 2012-04-10 00:16:22 +0000 | [diff] [blame] | 4490 | if (COp0 && COp0->isNullValue()) |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4491 | Op = Op1; |
Rafael Espindola | fdb230a | 2012-04-10 00:16:22 +0000 | [diff] [blame] | 4492 | else if (COp1 && COp1->isNullValue()) |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4493 | Op = Op0; |
| 4494 | else |
| 4495 | return false; |
| 4496 | |
| 4497 | DAG.ComputeMaskedBits(Op, KnownZero, KnownOne); |
| 4498 | |
| 4499 | if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue()) |
| 4500 | return false; |
| 4501 | |
| 4502 | return true; |
| 4503 | } |
| 4504 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4505 | SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) { |
| 4506 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4507 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4508 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4509 | // fold (zext c1) -> c1 |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 4510 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4511 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4512 | // fold (zext (zext x)) -> (zext x) |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4513 | // fold (zext (aext x)) -> (zext x) |
| 4514 | if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4515 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, |
| 4516 | N0.getOperand(0)); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4517 | |
Chandler Carruth | f103b3d | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 4518 | // fold (zext (truncate x)) -> (zext x) or |
| 4519 | // (zext (truncate x)) -> (truncate x) |
| 4520 | // This is valid when the truncated bits of x are already zero. |
| 4521 | // FIXME: We should extend this to work for vectors too. |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4522 | SDValue Op; |
| 4523 | APInt KnownZero; |
| 4524 | if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) { |
| 4525 | APInt TruncatedBits = |
| 4526 | (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ? |
| 4527 | APInt(Op.getValueSizeInBits(), 0) : |
| 4528 | APInt::getBitsSet(Op.getValueSizeInBits(), |
| 4529 | N0.getValueSizeInBits(), |
| 4530 | std::min(Op.getValueSizeInBits(), |
| 4531 | VT.getSizeInBits())); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 4532 | if (TruncatedBits == (KnownZero & TruncatedBits)) { |
Chandler Carruth | f103b3d | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 4533 | if (VT.bitsGT(Op.getValueType())) |
| 4534 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op); |
| 4535 | if (VT.bitsLT(Op.getValueType())) |
| 4536 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op); |
| 4537 | |
| 4538 | return Op; |
| 4539 | } |
| 4540 | } |
| 4541 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4542 | // fold (zext (truncate (load x))) -> (zext (smaller load x)) |
| 4543 | // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n))) |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 4544 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4545 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4546 | if (NarrowLoad.getNode()) { |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4547 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4548 | if (NarrowLoad.getNode() != N0.getNode()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4549 | CombineTo(N0.getNode(), NarrowLoad); |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4550 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4551 | AddToWorkList(oye); |
| 4552 | } |
Eli Friedman | e545d38 | 2011-04-16 23:25:34 +0000 | [diff] [blame] | 4553 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 0b063de | 2007-03-23 02:16:52 +0000 | [diff] [blame] | 4554 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4555 | } |
| 4556 | |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4557 | // fold (zext (truncate x)) -> (and x, mask) |
| 4558 | if (N0.getOpcode() == ISD::TRUNCATE && |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4559 | (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) { |
Dan Gohman | 394d629 | 2010-11-03 01:47:46 +0000 | [diff] [blame] | 4560 | |
| 4561 | // fold (zext (truncate (load x))) -> (zext (smaller load x)) |
| 4562 | // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n))) |
| 4563 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4564 | if (NarrowLoad.getNode()) { |
| 4565 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4566 | if (NarrowLoad.getNode() != N0.getNode()) { |
| 4567 | CombineTo(N0.getNode(), NarrowLoad); |
| 4568 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4569 | AddToWorkList(oye); |
| 4570 | } |
| 4571 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4572 | } |
| 4573 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4574 | SDValue Op = N0.getOperand(0); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4575 | if (Op.getValueType().bitsLT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4576 | Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op); |
Elena Demikhovsky | 1da5867 | 2012-04-22 09:39:03 +0000 | [diff] [blame] | 4577 | AddToWorkList(Op.getNode()); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4578 | } else if (Op.getValueType().bitsGT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4579 | Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op); |
Elena Demikhovsky | 1da5867 | 2012-04-22 09:39:03 +0000 | [diff] [blame] | 4580 | AddToWorkList(Op.getNode()); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4581 | } |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 4582 | return DAG.getZeroExtendInReg(Op, N->getDebugLoc(), |
| 4583 | N0.getValueType().getScalarType()); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4584 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4585 | |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4586 | // Fold (zext (and (trunc x), cst)) -> (and x, cst), |
| 4587 | // if either of the casts is not free. |
Chris Lattner | 111c228 | 2006-09-21 06:14:31 +0000 | [diff] [blame] | 4588 | if (N0.getOpcode() == ISD::AND && |
| 4589 | N0.getOperand(0).getOpcode() == ISD::TRUNCATE && |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4590 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4591 | (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), |
| 4592 | N0.getValueType()) || |
| 4593 | !TLI.isZExtFree(N0.getValueType(), VT))) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4594 | SDValue X = N0.getOperand(0).getOperand(0); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4595 | if (X.getValueType().bitsLT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4596 | X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4597 | } else if (X.getValueType().bitsGT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4598 | X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X); |
Chris Lattner | 111c228 | 2006-09-21 06:14:31 +0000 | [diff] [blame] | 4599 | } |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 4600 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 4601 | Mask = Mask.zext(VT.getSizeInBits()); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4602 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 4603 | X, DAG.getConstant(Mask, VT)); |
Chris Lattner | 111c228 | 2006-09-21 06:14:31 +0000 | [diff] [blame] | 4604 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4605 | |
Evan Cheng | 110dec2 | 2005-12-14 02:19:23 +0000 | [diff] [blame] | 4606 | // fold (zext (load x)) -> (zext (truncate (zextload x))) |
Nadav Rotem | ed9b934 | 2011-02-20 12:37:50 +0000 | [diff] [blame] | 4607 | // None of the supported targets knows how to perform load and vector_zext |
Nadav Rotem | fcd9619 | 2011-02-27 07:40:43 +0000 | [diff] [blame] | 4608 | // on vectors in one instruction. We only perform this transformation on |
| 4609 | // scalars. |
Nadav Rotem | ed9b934 | 2011-02-20 12:37:50 +0000 | [diff] [blame] | 4610 | if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4611 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 4612 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4613 | bool DoXform = true; |
| 4614 | SmallVector<SDNode*, 4> SetCCs; |
| 4615 | if (!N0.hasOneUse()) |
| 4616 | DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI); |
| 4617 | if (DoXform) { |
| 4618 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4619 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4620 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4621 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4622 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4623 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4624 | LN0->getAlignment()); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4625 | CombineTo(N, ExtLoad); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4626 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4627 | N0.getValueType(), ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4628 | CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4629 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4630 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4631 | ISD::ZERO_EXTEND); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4632 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4633 | } |
Evan Cheng | 110dec2 | 2005-12-14 02:19:23 +0000 | [diff] [blame] | 4634 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4635 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4636 | // fold (zext (and/or/xor (load x), cst)) -> |
| 4637 | // (and/or/xor (zextload x), (zext cst)) |
| 4638 | if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || |
| 4639 | N0.getOpcode() == ISD::XOR) && |
| 4640 | isa<LoadSDNode>(N0.getOperand(0)) && |
| 4641 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4642 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) && |
| 4643 | (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { |
| 4644 | LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); |
| 4645 | if (LN0->getExtensionType() != ISD::SEXTLOAD) { |
| 4646 | bool DoXform = true; |
| 4647 | SmallVector<SDNode*, 4> SetCCs; |
| 4648 | if (!N0.hasOneUse()) |
| 4649 | DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND, |
| 4650 | SetCCs, TLI); |
| 4651 | if (DoXform) { |
| 4652 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT, |
| 4653 | LN0->getChain(), LN0->getBasePtr(), |
| 4654 | LN0->getPointerInfo(), |
| 4655 | LN0->getMemoryVT(), |
| 4656 | LN0->isVolatile(), |
| 4657 | LN0->isNonTemporal(), |
| 4658 | LN0->getAlignment()); |
| 4659 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 4660 | Mask = Mask.zext(VT.getSizeInBits()); |
| 4661 | SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 4662 | ExtLoad, DAG.getConstant(Mask, VT)); |
| 4663 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, |
| 4664 | N0.getOperand(0).getDebugLoc(), |
| 4665 | N0.getOperand(0).getValueType(), ExtLoad); |
| 4666 | CombineTo(N, And); |
| 4667 | CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1)); |
| 4668 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4669 | ISD::ZERO_EXTEND); |
| 4670 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4671 | } |
| 4672 | } |
| 4673 | } |
| 4674 | |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4675 | // fold (zext (zextload x)) -> (zext (truncate (zextload x))) |
| 4676 | // fold (zext ( extload x)) -> (zext (truncate (zextload x))) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4677 | if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && |
| 4678 | ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4679 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4680 | EVT MemVT = LN0->getMemoryVT(); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4681 | if ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4682 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4683 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4684 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4685 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 4686 | MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4687 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4688 | LN0->getAlignment()); |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4689 | CombineTo(N, ExtLoad); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 4690 | CombineTo(N0.getNode(), |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4691 | DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(), |
| 4692 | ExtLoad), |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4693 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4694 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4695 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4696 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4697 | |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4698 | if (N0.getOpcode() == ISD::SETCC) { |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4699 | if (!LegalOperations && VT.isVector()) { |
| 4700 | // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors. |
| 4701 | // Only do this before legalize for now. |
| 4702 | EVT N0VT = N0.getOperand(0).getValueType(); |
| 4703 | EVT EltVT = VT.getVectorElementType(); |
| 4704 | SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(), |
| 4705 | DAG.getConstant(1, EltVT)); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 4706 | if (VT.getSizeInBits() == N0VT.getSizeInBits()) |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4707 | // We know that the # elements of the results is the same as the |
| 4708 | // # elements of the compare (and the # elements of the compare result |
| 4709 | // for that matter). Check to see that they are the same size. If so, |
| 4710 | // we know that the element size of the sext'd result matches the |
| 4711 | // element size of the compare operands. |
| 4712 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4713 | DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0), |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4714 | N0.getOperand(1), |
| 4715 | cast<CondCodeSDNode>(N0.getOperand(2))->get()), |
| 4716 | DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT, |
| 4717 | &OneOps[0], OneOps.size())); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 4718 | |
| 4719 | // If the desired elements are smaller or larger than the source |
| 4720 | // elements we can use a matching integer vector type and then |
| 4721 | // truncate/sign extend |
| 4722 | EVT MatchingElementType = |
| 4723 | EVT::getIntegerVT(*DAG.getContext(), |
| 4724 | N0VT.getScalarType().getSizeInBits()); |
| 4725 | EVT MatchingVectorType = |
| 4726 | EVT::getVectorVT(*DAG.getContext(), MatchingElementType, |
| 4727 | N0VT.getVectorNumElements()); |
| 4728 | SDValue VsetCC = |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4729 | DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0), |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 4730 | N0.getOperand(1), |
| 4731 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
| 4732 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 4733 | DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT), |
| 4734 | DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT, |
| 4735 | &OneOps[0], OneOps.size())); |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4736 | } |
| 4737 | |
| 4738 | // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4739 | SDValue SCC = |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4740 | SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1), |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4741 | DAG.getConstant(1, VT), DAG.getConstant(0, VT), |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 4742 | cast<CondCodeSDNode>(N0.getOperand(2))->get(), true); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4743 | if (SCC.getNode()) return SCC; |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4744 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4745 | |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4746 | // (zext (shl (zext x), cst)) -> (shl (zext x), cst) |
Evan Cheng | 99b653c | 2009-12-15 00:41:36 +0000 | [diff] [blame] | 4747 | if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) && |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4748 | isa<ConstantSDNode>(N0.getOperand(1)) && |
Evan Cheng | 99b653c | 2009-12-15 00:41:36 +0000 | [diff] [blame] | 4749 | N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND && |
| 4750 | N0.hasOneUse()) { |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4751 | SDValue ShAmt = N0.getOperand(1); |
| 4752 | unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue(); |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4753 | if (N0.getOpcode() == ISD::SHL) { |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4754 | SDValue InnerZExt = N0.getOperand(0); |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4755 | // If the original shl may be shifting out bits, do not perform this |
| 4756 | // transformation. |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4757 | unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() - |
| 4758 | InnerZExt.getOperand(0).getValueType().getSizeInBits(); |
| 4759 | if (ShAmtVal > KnownZeroBits) |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4760 | return SDValue(); |
| 4761 | } |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4762 | |
| 4763 | DebugLoc DL = N->getDebugLoc(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 4764 | |
| 4765 | // Ensure that the shift amount is wide enough for the shifted value. |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4766 | if (VT.getSizeInBits() >= 256) |
| 4767 | ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 4768 | |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4769 | return DAG.getNode(N0.getOpcode(), DL, VT, |
| 4770 | DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)), |
| 4771 | ShAmt); |
Evan Cheng | 99b653c | 2009-12-15 00:41:36 +0000 | [diff] [blame] | 4772 | } |
| 4773 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 4774 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4775 | } |
| 4776 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4777 | SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) { |
| 4778 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4779 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4780 | |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4781 | // fold (aext c1) -> c1 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4782 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 4783 | return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4784 | // fold (aext (aext x)) -> (aext x) |
| 4785 | // fold (aext (zext x)) -> (zext x) |
| 4786 | // fold (aext (sext x)) -> (sext x) |
| 4787 | if (N0.getOpcode() == ISD::ANY_EXTEND || |
| 4788 | N0.getOpcode() == ISD::ZERO_EXTEND || |
| 4789 | N0.getOpcode() == ISD::SIGN_EXTEND) |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4790 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4791 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4792 | // fold (aext (truncate (load x))) -> (aext (smaller load x)) |
| 4793 | // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n))) |
| 4794 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4795 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4796 | if (NarrowLoad.getNode()) { |
Dale Johannesen | 86234c3 | 2010-05-25 18:47:23 +0000 | [diff] [blame] | 4797 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4798 | if (NarrowLoad.getNode() != N0.getNode()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4799 | CombineTo(N0.getNode(), NarrowLoad); |
Dale Johannesen | 86234c3 | 2010-05-25 18:47:23 +0000 | [diff] [blame] | 4800 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4801 | AddToWorkList(oye); |
| 4802 | } |
Eli Friedman | e545d38 | 2011-04-16 23:25:34 +0000 | [diff] [blame] | 4803 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 0b063de | 2007-03-23 02:16:52 +0000 | [diff] [blame] | 4804 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4805 | } |
| 4806 | |
Chris Lattner | 8475058 | 2006-09-20 06:29:17 +0000 | [diff] [blame] | 4807 | // fold (aext (truncate x)) |
| 4808 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4809 | SDValue TruncOp = N0.getOperand(0); |
Chris Lattner | 8475058 | 2006-09-20 06:29:17 +0000 | [diff] [blame] | 4810 | if (TruncOp.getValueType() == VT) |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 4811 | return TruncOp; // x iff x size == zext size. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4812 | if (TruncOp.getValueType().bitsGT(VT)) |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4813 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp); |
| 4814 | return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp); |
Chris Lattner | 8475058 | 2006-09-20 06:29:17 +0000 | [diff] [blame] | 4815 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4816 | |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4817 | // Fold (aext (and (trunc x), cst)) -> (and x, cst) |
| 4818 | // if the trunc is not free. |
Chris Lattner | 0e4b922 | 2006-09-21 06:40:43 +0000 | [diff] [blame] | 4819 | if (N0.getOpcode() == ISD::AND && |
| 4820 | N0.getOperand(0).getOpcode() == ISD::TRUNCATE && |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4821 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4822 | !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), |
| 4823 | N0.getValueType())) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4824 | SDValue X = N0.getOperand(0).getOperand(0); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4825 | if (X.getValueType().bitsLT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4826 | X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4827 | } else if (X.getValueType().bitsGT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4828 | X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X); |
Chris Lattner | 0e4b922 | 2006-09-21 06:40:43 +0000 | [diff] [blame] | 4829 | } |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 4830 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 4831 | Mask = Mask.zext(VT.getSizeInBits()); |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4832 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 4833 | X, DAG.getConstant(Mask, VT)); |
Chris Lattner | 0e4b922 | 2006-09-21 06:40:43 +0000 | [diff] [blame] | 4834 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4835 | |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4836 | // fold (aext (load x)) -> (aext (truncate (extload x))) |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4837 | // None of the supported targets knows how to perform load and any_ext |
Nadav Rotem | fcd9619 | 2011-02-27 07:40:43 +0000 | [diff] [blame] | 4838 | // on vectors in one instruction. We only perform this transformation on |
| 4839 | // scalars. |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4840 | if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4841 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 4842 | TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) { |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4843 | bool DoXform = true; |
| 4844 | SmallVector<SDNode*, 4> SetCCs; |
| 4845 | if (!N0.hasOneUse()) |
| 4846 | DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI); |
| 4847 | if (DoXform) { |
| 4848 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4849 | SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT, |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4850 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4851 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4852 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4853 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4854 | LN0->getAlignment()); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4855 | CombineTo(N, ExtLoad); |
| 4856 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4857 | N0.getValueType(), ExtLoad); |
| 4858 | CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4859 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4860 | ISD::ANY_EXTEND); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4861 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4862 | } |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4863 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4864 | |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4865 | // fold (aext (zextload x)) -> (aext (truncate (zextload x))) |
| 4866 | // fold (aext (sextload x)) -> (aext (truncate (sextload x))) |
| 4867 | // fold (aext ( extload x)) -> (aext (truncate (extload x))) |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 4868 | if (N0.getOpcode() == ISD::LOAD && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4869 | !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4870 | N0.hasOneUse()) { |
| 4871 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4872 | EVT MemVT = LN0->getMemoryVT(); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4873 | SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(), |
| 4874 | VT, LN0->getChain(), LN0->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4875 | LN0->getPointerInfo(), MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4876 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4877 | LN0->getAlignment()); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4878 | CombineTo(N, ExtLoad); |
Evan Cheng | 4529966 | 2008-08-29 23:20:46 +0000 | [diff] [blame] | 4879 | CombineTo(N0.getNode(), |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4880 | DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4881 | N0.getValueType(), ExtLoad), |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4882 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4883 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4884 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4885 | |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4886 | if (N0.getOpcode() == ISD::SETCC) { |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4887 | // aext(setcc) -> sext_in_reg(vsetcc) for vectors. |
| 4888 | // Only do this before legalize for now. |
| 4889 | if (VT.isVector() && !LegalOperations) { |
| 4890 | EVT N0VT = N0.getOperand(0).getValueType(); |
| 4891 | // We know that the # elements of the results is the same as the |
| 4892 | // # elements of the compare (and the # elements of the compare result |
| 4893 | // for that matter). Check to see that they are the same size. If so, |
| 4894 | // we know that the element size of the sext'd result matches the |
| 4895 | // element size of the compare operands. |
| 4896 | if (VT.getSizeInBits() == N0VT.getSizeInBits()) |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4897 | return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0), |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4898 | N0.getOperand(1), |
| 4899 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4900 | // If the desired elements are smaller or larger than the source |
| 4901 | // elements we can use a matching integer vector type and then |
| 4902 | // truncate/sign extend |
| 4903 | else { |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4904 | EVT MatchingElementType = |
| 4905 | EVT::getIntegerVT(*DAG.getContext(), |
| 4906 | N0VT.getScalarType().getSizeInBits()); |
| 4907 | EVT MatchingVectorType = |
| 4908 | EVT::getVectorVT(*DAG.getContext(), MatchingElementType, |
| 4909 | N0VT.getVectorNumElements()); |
| 4910 | SDValue VsetCC = |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4911 | DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0), |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4912 | N0.getOperand(1), |
| 4913 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
| 4914 | return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT); |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4915 | } |
| 4916 | } |
| 4917 | |
| 4918 | // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4919 | SDValue SCC = |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4920 | SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1), |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 4921 | DAG.getConstant(1, VT), DAG.getConstant(0, VT), |
Chris Lattner | c24bbad | 2007-04-11 16:51:53 +0000 | [diff] [blame] | 4922 | cast<CondCodeSDNode>(N0.getOperand(2))->get(), true); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4923 | if (SCC.getNode()) |
Chris Lattner | c56a81d | 2007-04-11 06:43:25 +0000 | [diff] [blame] | 4924 | return SCC; |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4925 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4926 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 4927 | return SDValue(); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4928 | } |
| 4929 | |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4930 | /// GetDemandedBits - See if the specified operand can be simplified with the |
| 4931 | /// knowledge that only the bits specified by Mask are used. If so, return the |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4932 | /// simpler operand, otherwise return a null SDValue. |
| 4933 | SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) { |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4934 | switch (V.getOpcode()) { |
| 4935 | default: break; |
Lang Hames | 5207bf2 | 2011-11-08 18:56:23 +0000 | [diff] [blame] | 4936 | case ISD::Constant: { |
| 4937 | const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode()); |
| 4938 | assert(CV != 0 && "Const value should be ConstSDNode."); |
| 4939 | const APInt &CVal = CV->getAPIntValue(); |
| 4940 | APInt NewVal = CVal & Mask; |
| 4941 | if (NewVal != CVal) { |
| 4942 | return DAG.getConstant(NewVal, V.getValueType()); |
| 4943 | } |
| 4944 | break; |
| 4945 | } |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4946 | case ISD::OR: |
| 4947 | case ISD::XOR: |
| 4948 | // If the LHS or RHS don't contribute bits to the or, drop them. |
| 4949 | if (DAG.MaskedValueIsZero(V.getOperand(0), Mask)) |
| 4950 | return V.getOperand(1); |
| 4951 | if (DAG.MaskedValueIsZero(V.getOperand(1), Mask)) |
| 4952 | return V.getOperand(0); |
| 4953 | break; |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4954 | case ISD::SRL: |
| 4955 | // Only look at single-use SRLs. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4956 | if (!V.getNode()->hasOneUse()) |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4957 | break; |
| 4958 | if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) { |
| 4959 | // See if we can recursively simplify the LHS. |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 4960 | unsigned Amt = RHSC->getZExtValue(); |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 4961 | |
Dan Gohman | cc91d63 | 2009-01-03 19:22:06 +0000 | [diff] [blame] | 4962 | // Watch out for shift count overflow though. |
| 4963 | if (Amt >= Mask.getBitWidth()) break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 4964 | APInt NewMask = Mask << Amt; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4965 | SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask); |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 4966 | if (SimplifyLHS.getNode()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4967 | return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(), |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4968 | SimplifyLHS, V.getOperand(1)); |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4969 | } |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4970 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4971 | return SDValue(); |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4972 | } |
| 4973 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4974 | /// ReduceLoadWidth - If the result of a wider load is shifted to right of N |
| 4975 | /// bits and then truncated to a narrower type and where N is a multiple |
| 4976 | /// of number of bits of the narrower type, transform it to a narrower load |
| 4977 | /// from address + N / num of bits of new type. If the result is to be |
| 4978 | /// extended, also fold the extension to form a extending load. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4979 | SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) { |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4980 | unsigned Opc = N->getOpcode(); |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4981 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4982 | ISD::LoadExtType ExtType = ISD::NON_EXTLOAD; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4983 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4984 | EVT VT = N->getValueType(0); |
| 4985 | EVT ExtVT = VT; |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4986 | |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 4987 | // This transformation isn't valid for vector loads. |
| 4988 | if (VT.isVector()) |
| 4989 | return SDValue(); |
| 4990 | |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4991 | // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then |
Evan Cheng | e177e30 | 2007-03-23 22:13:36 +0000 | [diff] [blame] | 4992 | // extended to VT. |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4993 | if (Opc == ISD::SIGN_EXTEND_INREG) { |
| 4994 | ExtType = ISD::SEXTLOAD; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4995 | ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT(); |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4996 | } else if (Opc == ISD::SRL) { |
Chris Lattner | 90b0364 | 2010-12-21 18:05:22 +0000 | [diff] [blame] | 4997 | // Another special-case: SRL is basically zero-extending a narrower value. |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4998 | ExtType = ISD::ZEXTLOAD; |
| 4999 | N0 = SDValue(N, 0); |
| 5000 | ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 5001 | if (!N01) return SDValue(); |
| 5002 | ExtVT = EVT::getIntegerVT(*DAG.getContext(), |
| 5003 | VT.getSizeInBits() - N01->getZExtValue()); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5004 | } |
Richard Osborne | 4e3740e | 2011-01-31 17:41:44 +0000 | [diff] [blame] | 5005 | if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT)) |
| 5006 | return SDValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5007 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5008 | unsigned EVTBits = ExtVT.getSizeInBits(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5009 | |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5010 | // Do not generate loads of non-round integer types since these can |
| 5011 | // be expensive (and would be wrong if the type is not byte sized). |
| 5012 | if (!ExtVT.isRound()) |
| 5013 | return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5014 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5015 | unsigned ShAmt = 0; |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5016 | if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5017 | if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5018 | ShAmt = N01->getZExtValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5019 | // Is the shift amount a multiple of size of VT? |
| 5020 | if ((ShAmt & (EVTBits-1)) == 0) { |
| 5021 | N0 = N0.getOperand(0); |
Eli Friedman | d68eea2 | 2009-08-19 08:46:10 +0000 | [diff] [blame] | 5022 | // Is the load width a multiple of size of VT? |
| 5023 | if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5024 | return SDValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5025 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5026 | |
Chris Lattner | cbf68df | 2010-12-22 08:02:57 +0000 | [diff] [blame] | 5027 | // At this point, we must have a load or else we can't do the transform. |
| 5028 | if (!isa<LoadSDNode>(N0)) return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5029 | |
Chris Lattner | 2831a19 | 2010-10-01 05:36:09 +0000 | [diff] [blame] | 5030 | // If the shift amount is larger than the input type then we're not |
| 5031 | // accessing any of the loaded bytes. If the load was a zextload/extload |
| 5032 | // then the result of the shift+trunc is zero/undef (handled elsewhere). |
| 5033 | // If the load was a sextload then the result is a splat of the sign bit |
| 5034 | // of the extended byte. This is not worth optimizing for. |
Chris Lattner | cbf68df | 2010-12-22 08:02:57 +0000 | [diff] [blame] | 5035 | if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits()) |
Chris Lattner | 2831a19 | 2010-10-01 05:36:09 +0000 | [diff] [blame] | 5036 | return SDValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5037 | } |
| 5038 | } |
| 5039 | |
Dan Gohman | 394d629 | 2010-11-03 01:47:46 +0000 | [diff] [blame] | 5040 | // If the load is shifted left (and the result isn't shifted back right), |
| 5041 | // we can fold the truncate through the shift. |
| 5042 | unsigned ShLeftAmt = 0; |
| 5043 | if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() && |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5044 | ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) { |
Dan Gohman | 394d629 | 2010-11-03 01:47:46 +0000 | [diff] [blame] | 5045 | if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
| 5046 | ShLeftAmt = N01->getZExtValue(); |
| 5047 | N0 = N0.getOperand(0); |
| 5048 | } |
| 5049 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5050 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5051 | // If we haven't found a load, we can't narrow it. Don't transform one with |
| 5052 | // multiple uses, this would require adding a new load. |
| 5053 | if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() || |
| 5054 | // Don't change the width of a volatile load. |
| 5055 | cast<LoadSDNode>(N0)->isVolatile()) |
| 5056 | return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5057 | |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5058 | // Verify that we are actually reducing a load width here. |
| 5059 | if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits) |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5060 | return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5061 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5062 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
| 5063 | EVT PtrType = N0.getOperand(1).getValueType(); |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5064 | |
Evan Cheng | 16436df | 2012-06-26 01:19:33 +0000 | [diff] [blame] | 5065 | if (PtrType == MVT::Untyped || PtrType.isExtended()) |
| 5066 | // It's not possible to generate a constant of extended or untyped type. |
| 5067 | return SDValue(); |
| 5068 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5069 | // For big endian targets, we need to adjust the offset to the pointer to |
| 5070 | // load the correct bytes. |
| 5071 | if (TLI.isBigEndian()) { |
| 5072 | unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits(); |
| 5073 | unsigned EVTStoreBits = ExtVT.getStoreSizeInBits(); |
| 5074 | ShAmt = LVTStoreBits - EVTStoreBits - ShAmt; |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5075 | } |
| 5076 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5077 | uint64_t PtrOff = ShAmt / 8; |
| 5078 | unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff); |
| 5079 | SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), |
| 5080 | PtrType, LN0->getBasePtr(), |
| 5081 | DAG.getConstant(PtrOff, PtrType)); |
| 5082 | AddToWorkList(NewPtr.getNode()); |
| 5083 | |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5084 | SDValue Load; |
| 5085 | if (ExtType == ISD::NON_EXTLOAD) |
| 5086 | Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr, |
| 5087 | LN0->getPointerInfo().getWithOffset(PtrOff), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5088 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 5089 | LN0->isInvariant(), NewAlign); |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5090 | else |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 5091 | Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr, |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5092 | LN0->getPointerInfo().getWithOffset(PtrOff), |
| 5093 | ExtVT, LN0->isVolatile(), LN0->isNonTemporal(), |
| 5094 | NewAlign); |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5095 | |
| 5096 | // Replace the old load's chain with the new load's chain. |
| 5097 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5098 | DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1)); |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5099 | |
| 5100 | // Shift the result left, if we've swallowed a left shift. |
| 5101 | SDValue Result = Load; |
| 5102 | if (ShLeftAmt != 0) { |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5103 | EVT ShImmTy = getShiftAmountTy(Result.getValueType()); |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5104 | if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt)) |
| 5105 | ShImmTy = VT; |
| 5106 | Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, |
| 5107 | Result, DAG.getConstant(ShLeftAmt, ShImmTy)); |
| 5108 | } |
| 5109 | |
| 5110 | // Return the new loaded value. |
| 5111 | return Result; |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5112 | } |
| 5113 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5114 | SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) { |
| 5115 | SDValue N0 = N->getOperand(0); |
| 5116 | SDValue N1 = N->getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5117 | EVT VT = N->getValueType(0); |
| 5118 | EVT EVT = cast<VTSDNode>(N1)->getVT(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5119 | unsigned VTBits = VT.getScalarType().getSizeInBits(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 5120 | unsigned EVTBits = EVT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5121 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5122 | // fold (sext_in_reg c1) -> c1 |
Chris Lattner | eaeda56 | 2006-05-08 20:59:41 +0000 | [diff] [blame] | 5123 | if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF) |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5124 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5125 | |
Chris Lattner | 541a24f | 2006-05-06 22:43:44 +0000 | [diff] [blame] | 5126 | // If the input is already sign extended, just drop the extension. |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5127 | if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1) |
Chris Lattner | ee4ea92 | 2006-05-06 09:30:03 +0000 | [diff] [blame] | 5128 | return N0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5129 | |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 5130 | // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2 |
| 5131 | if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5132 | EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) { |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5133 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, |
| 5134 | N0.getOperand(0), N1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 5135 | } |
Chris Lattner | 4b37e87 | 2006-05-08 21:18:59 +0000 | [diff] [blame] | 5136 | |
Dan Gohman | 75dcf08 | 2008-07-31 00:50:31 +0000 | [diff] [blame] | 5137 | // fold (sext_in_reg (sext x)) -> (sext x) |
| 5138 | // fold (sext_in_reg (aext x)) -> (sext x) |
| 5139 | // if x is small enough. |
| 5140 | if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) { |
| 5141 | SDValue N00 = N0.getOperand(0); |
Evan Cheng | 003d7c4 | 2010-04-16 22:26:19 +0000 | [diff] [blame] | 5142 | if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits && |
| 5143 | (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT))) |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5144 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1); |
Dan Gohman | 75dcf08 | 2008-07-31 00:50:31 +0000 | [diff] [blame] | 5145 | } |
| 5146 | |
Chris Lattner | 95a5e05 | 2007-04-17 19:03:21 +0000 | [diff] [blame] | 5147 | // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 5148 | if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits))) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 5149 | return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5150 | |
Chris Lattner | 95a5e05 | 2007-04-17 19:03:21 +0000 | [diff] [blame] | 5151 | // fold operands of sext_in_reg based on knowledge that the top bits are not |
| 5152 | // demanded. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5153 | if (SimplifyDemandedBits(SDValue(N, 0))) |
| 5154 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5155 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5156 | // fold (sext_in_reg (load x)) -> (smaller sextload x) |
| 5157 | // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5158 | SDValue NarrowLoad = ReduceLoadWidth(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5159 | if (NarrowLoad.getNode()) |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5160 | return NarrowLoad; |
| 5161 | |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5162 | // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24) |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5163 | // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible. |
Chris Lattner | 4b37e87 | 2006-05-08 21:18:59 +0000 | [diff] [blame] | 5164 | // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above. |
| 5165 | if (N0.getOpcode() == ISD::SRL) { |
| 5166 | if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1))) |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5167 | if (ShAmt->getZExtValue()+EVTBits <= VTBits) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5168 | // We can turn this into an SRA iff the input to the SRL is already sign |
Chris Lattner | 4b37e87 | 2006-05-08 21:18:59 +0000 | [diff] [blame] | 5169 | // extended enough. |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 5170 | unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0)); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5171 | if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits) |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5172 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, |
| 5173 | N0.getOperand(0), N0.getOperand(1)); |
Chris Lattner | 4b37e87 | 2006-05-08 21:18:59 +0000 | [diff] [blame] | 5174 | } |
| 5175 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5176 | |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 5177 | // fold (sext_inreg (extload x)) -> (sextload x) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5178 | if (ISD::isEXTLoad(N0.getNode()) && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5179 | ISD::isUNINDEXEDLoad(N0.getNode()) && |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 5180 | EVT == cast<LoadSDNode>(N0)->getMemoryVT() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5181 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 5182 | TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5183 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 5184 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5185 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 5186 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 5187 | EVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 5188 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 5189 | LN0->getAlignment()); |
Chris Lattner | d477184 | 2005-12-14 19:25:30 +0000 | [diff] [blame] | 5190 | CombineTo(N, ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5191 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5192 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 5193 | } |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5194 | // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5195 | if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 5196 | N0.hasOneUse() && |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 5197 | EVT == cast<LoadSDNode>(N0)->getMemoryVT() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5198 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 5199 | TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5200 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 5201 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5202 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 5203 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 5204 | EVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 5205 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 5206 | LN0->getAlignment()); |
Chris Lattner | d477184 | 2005-12-14 19:25:30 +0000 | [diff] [blame] | 5207 | CombineTo(N, ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5208 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5209 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 5210 | } |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 5211 | |
| 5212 | // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16)) |
| 5213 | if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) { |
| 5214 | SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0), |
| 5215 | N0.getOperand(1), false); |
| 5216 | if (BSwap.getNode() != 0) |
| 5217 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, |
| 5218 | BSwap, N1); |
| 5219 | } |
| 5220 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5221 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5222 | } |
| 5223 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5224 | SDValue DAGCombiner::visitTRUNCATE(SDNode *N) { |
| 5225 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5226 | EVT VT = N->getValueType(0); |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5227 | bool isLE = TLI.isLittleEndian(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5228 | |
| 5229 | // noop truncate |
| 5230 | if (N0.getValueType() == N->getValueType(0)) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 5231 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5232 | // fold (truncate c1) -> c1 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 5233 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5234 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5235 | // fold (truncate (truncate x)) -> (truncate x) |
| 5236 | if (N0.getOpcode() == ISD::TRUNCATE) |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5237 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5238 | // fold (truncate (ext x)) -> (ext x) or (truncate x) or x |
Chris Lattner | 7f893c0 | 2010-04-07 18:13:33 +0000 | [diff] [blame] | 5239 | if (N0.getOpcode() == ISD::ZERO_EXTEND || |
| 5240 | N0.getOpcode() == ISD::SIGN_EXTEND || |
Chris Lattner | b72773b | 2006-05-05 22:56:26 +0000 | [diff] [blame] | 5241 | N0.getOpcode() == ISD::ANY_EXTEND) { |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5242 | if (N0.getOperand(0).getValueType().bitsLT(VT)) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5243 | // if the source is smaller than the dest, we still need an extend |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5244 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 5245 | N0.getOperand(0)); |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 5246 | if (N0.getOperand(0).getValueType().bitsGT(VT)) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5247 | // if the source is larger than the dest, than we just need the truncate |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5248 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0)); |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 5249 | // if the source and dest are the same type, we can drop both the extend |
| 5250 | // and the truncate. |
| 5251 | return N0.getOperand(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5252 | } |
Evan Cheng | 007b69e | 2007-03-21 20:14:05 +0000 | [diff] [blame] | 5253 | |
Nadav Rotem | cc870a8 | 2012-02-05 11:39:23 +0000 | [diff] [blame] | 5254 | // Fold extract-and-trunc into a narrow extract. For example: |
| 5255 | // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1) |
| 5256 | // i32 y = TRUNCATE(i64 x) |
| 5257 | // -- becomes -- |
| 5258 | // v16i8 b = BITCAST (v2i64 val) |
| 5259 | // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8) |
| 5260 | // |
| 5261 | // Note: We only run this optimization after type legalization (which often |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5262 | // creates this pattern) and before operation legalization after which |
| 5263 | // we need to be more careful about the vector instructions that we generate. |
| 5264 | if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && |
| 5265 | LegalTypes && !LegalOperations && N0->hasOneUse()) { |
| 5266 | |
| 5267 | EVT VecTy = N0.getOperand(0).getValueType(); |
| 5268 | EVT ExTy = N0.getValueType(); |
| 5269 | EVT TrTy = N->getValueType(0); |
| 5270 | |
| 5271 | unsigned NumElem = VecTy.getVectorNumElements(); |
| 5272 | unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits(); |
| 5273 | |
| 5274 | EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem); |
| 5275 | assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size"); |
| 5276 | |
| 5277 | SDValue EltNo = N0->getOperand(1); |
| 5278 | if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) { |
| 5279 | int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 5280 | EVT IndexTy = N0->getOperand(1).getValueType(); |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5281 | int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); |
| 5282 | |
| 5283 | SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), |
| 5284 | NVT, N0.getOperand(0)); |
| 5285 | |
| 5286 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, |
| 5287 | N->getDebugLoc(), TrTy, V, |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 5288 | DAG.getConstant(Index, IndexTy)); |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5289 | } |
| 5290 | } |
| 5291 | |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 5292 | // See if we can simplify the input to this truncate through knowledge that |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 5293 | // only the low bits are being used. |
| 5294 | // For example "trunc (or (shl x, 8), y)" // -> trunc y |
Nadav Rotem | fcd9619 | 2011-02-27 07:40:43 +0000 | [diff] [blame] | 5295 | // Currently we only perform this optimization on scalars because vectors |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 5296 | // may have different active low bits. |
| 5297 | if (!VT.isVector()) { |
| 5298 | SDValue Shorter = |
| 5299 | GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(), |
| 5300 | VT.getSizeInBits())); |
| 5301 | if (Shorter.getNode()) |
| 5302 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter); |
| 5303 | } |
Nate Begeman | 3df4d52 | 2005-10-12 20:40:40 +0000 | [diff] [blame] | 5304 | // fold (truncate (load x)) -> (smaller load x) |
Evan Cheng | 007b69e | 2007-03-21 20:14:05 +0000 | [diff] [blame] | 5305 | // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits)) |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 5306 | if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) { |
| 5307 | SDValue Reduced = ReduceLoadWidth(N); |
| 5308 | if (Reduced.getNode()) |
| 5309 | return Reduced; |
| 5310 | } |
Michael Liao | 07edaf3 | 2012-10-17 23:45:54 +0000 | [diff] [blame] | 5311 | // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)), |
| 5312 | // where ... are all 'undef'. |
| 5313 | if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) { |
| 5314 | SmallVector<EVT, 8> VTs; |
| 5315 | SDValue V; |
| 5316 | unsigned Idx = 0; |
| 5317 | unsigned NumDefs = 0; |
| 5318 | |
| 5319 | for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) { |
| 5320 | SDValue X = N0.getOperand(i); |
| 5321 | if (X.getOpcode() != ISD::UNDEF) { |
| 5322 | V = X; |
| 5323 | Idx = i; |
| 5324 | NumDefs++; |
| 5325 | } |
| 5326 | // Stop if more than one members are non-undef. |
| 5327 | if (NumDefs > 1) |
| 5328 | break; |
| 5329 | VTs.push_back(EVT::getVectorVT(*DAG.getContext(), |
| 5330 | VT.getVectorElementType(), |
| 5331 | X.getValueType().getVectorNumElements())); |
| 5332 | } |
| 5333 | |
| 5334 | if (NumDefs == 0) |
| 5335 | return DAG.getUNDEF(VT); |
| 5336 | |
| 5337 | if (NumDefs == 1) { |
| 5338 | assert(V.getNode() && "The single defined operand is empty!"); |
| 5339 | SmallVector<SDValue, 8> Opnds; |
| 5340 | for (unsigned i = 0, e = VTs.size(); i != e; ++i) { |
| 5341 | if (i != Idx) { |
| 5342 | Opnds.push_back(DAG.getUNDEF(VTs[i])); |
| 5343 | continue; |
| 5344 | } |
| 5345 | SDValue NV = DAG.getNode(ISD::TRUNCATE, V.getDebugLoc(), VTs[i], V); |
| 5346 | AddToWorkList(NV.getNode()); |
| 5347 | Opnds.push_back(NV); |
| 5348 | } |
| 5349 | return DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT, |
| 5350 | &Opnds[0], Opnds.size()); |
| 5351 | } |
| 5352 | } |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 5353 | |
| 5354 | // Simplify the operands using demanded-bits information. |
| 5355 | if (!VT.isVector() && |
| 5356 | SimplifyDemandedBits(SDValue(N, 0))) |
| 5357 | return SDValue(N, 0); |
| 5358 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 5359 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5360 | } |
| 5361 | |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5362 | static SDNode *getBuildPairElt(SDNode *N, unsigned i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5363 | SDValue Elt = N->getOperand(i); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5364 | if (Elt.getOpcode() != ISD::MERGE_VALUES) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5365 | return Elt.getNode(); |
| 5366 | return Elt.getOperand(Elt.getResNo()).getNode(); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5367 | } |
| 5368 | |
| 5369 | /// CombineConsecutiveLoads - build_pair (load, load) -> load |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5370 | /// if load locations are consecutive. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5371 | SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) { |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5372 | assert(N->getOpcode() == ISD::BUILD_PAIR); |
| 5373 | |
Nate Begeman | abc0199 | 2009-06-05 21:37:30 +0000 | [diff] [blame] | 5374 | LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0)); |
| 5375 | LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1)); |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 5376 | if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() || |
| 5377 | LD1->getPointerInfo().getAddrSpace() != |
| 5378 | LD2->getPointerInfo().getAddrSpace()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5379 | return SDValue(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5380 | EVT LD1VT = LD1->getValueType(0); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5381 | |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5382 | if (ISD::isNON_EXTLoad(LD2) && |
| 5383 | LD2->hasOneUse() && |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5384 | // If both are volatile this would reduce the number of volatile loads. |
| 5385 | // If one is volatile it might be ok, but play conservative and bail out. |
Nate Begeman | abc0199 | 2009-06-05 21:37:30 +0000 | [diff] [blame] | 5386 | !LD1->isVolatile() && |
| 5387 | !LD2->isVolatile() && |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 5388 | DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) { |
Nate Begeman | abc0199 | 2009-06-05 21:37:30 +0000 | [diff] [blame] | 5389 | unsigned Align = LD1->getAlignment(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 5390 | unsigned NewAlign = TLI.getDataLayout()-> |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5391 | getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext())); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5392 | |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5393 | if (NewAlign <= Align && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5394 | (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) |
Nate Begeman | abc0199 | 2009-06-05 21:37:30 +0000 | [diff] [blame] | 5395 | return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 5396 | LD1->getBasePtr(), LD1->getPointerInfo(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5397 | false, false, false, Align); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5398 | } |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5399 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5400 | return SDValue(); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5401 | } |
| 5402 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5403 | SDValue DAGCombiner::visitBITCAST(SDNode *N) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5404 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5405 | EVT VT = N->getValueType(0); |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5406 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5407 | // If the input is a BUILD_VECTOR with all constant elements, fold this now. |
| 5408 | // Only do this before legalize, since afterward the target may be depending |
| 5409 | // on the bitconvert. |
| 5410 | // First check to see if this is all constant. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5411 | if (!LegalTypes && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5412 | N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5413 | VT.isVector()) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5414 | bool isSimple = true; |
| 5415 | for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) |
| 5416 | if (N0.getOperand(i).getOpcode() != ISD::UNDEF && |
| 5417 | N0.getOperand(i).getOpcode() != ISD::Constant && |
| 5418 | N0.getOperand(i).getOpcode() != ISD::ConstantFP) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5419 | isSimple = false; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5420 | break; |
| 5421 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5422 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5423 | EVT DestEltVT = N->getValueType(0).getVectorElementType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5424 | assert(!DestEltVT.isVector() && |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5425 | "Element type of vector ValueType must not be vector!"); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5426 | if (isSimple) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5427 | return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5428 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5429 | |
Dan Gohman | 3dd168d | 2008-09-05 01:58:21 +0000 | [diff] [blame] | 5430 | // If the input is a constant, let getNode fold it. |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5431 | if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5432 | SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0); |
Dan Gohman | a407ca1 | 2009-08-10 23:15:10 +0000 | [diff] [blame] | 5433 | if (Res.getNode() != N) { |
| 5434 | if (!LegalOperations || |
| 5435 | TLI.isOperationLegal(Res.getNode()->getOpcode(), VT)) |
| 5436 | return Res; |
| 5437 | |
| 5438 | // Folding it resulted in an illegal node, and it's too late to |
| 5439 | // do that. Clean up the old node and forego the transformation. |
| 5440 | // Ideally this won't happen very often, because instcombine |
| 5441 | // and the earlier dagcombine runs (where illegal nodes are |
| 5442 | // permitted) should have folded most of them already. |
| 5443 | DAG.DeleteNode(Res.getNode()); |
| 5444 | } |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5445 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5446 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5447 | // (conv (conv x, t1), t2) -> (conv x, t2) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5448 | if (N0.getOpcode() == ISD::BITCAST) |
| 5449 | return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5450 | N0.getOperand(0)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5451 | |
Chris Lattner | 5710410 | 2005-12-23 05:44:41 +0000 | [diff] [blame] | 5452 | // fold (conv (load x)) -> (load (conv*)x) |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 5453 | // If the resultant load doesn't need a higher alignment than the original! |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5454 | if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5455 | // Do not change the width of a volatile load. |
| 5456 | !cast<LoadSDNode>(N0)->isVolatile() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5457 | (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5458 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 5459 | unsigned Align = TLI.getDataLayout()-> |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5460 | getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext())); |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5461 | unsigned OrigAlign = LN0->getAlignment(); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5462 | |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5463 | if (Align <= OrigAlign) { |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5464 | SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 5465 | LN0->getBasePtr(), LN0->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 5466 | LN0->isVolatile(), LN0->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5467 | LN0->isInvariant(), OrigAlign); |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5468 | AddToWorkList(N); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 5469 | CombineTo(N0.getNode(), |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5470 | DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5471 | N0.getValueType(), Load), |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5472 | Load.getValue(1)); |
| 5473 | return Load; |
| 5474 | } |
Chris Lattner | 5710410 | 2005-12-23 05:44:41 +0000 | [diff] [blame] | 5475 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5476 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5477 | // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit) |
| 5478 | // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit)) |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5479 | // This often reduces constant pool loads. |
Owen Anderson | 29f60f3 | 2012-04-02 22:10:29 +0000 | [diff] [blame] | 5480 | if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) || |
| 5481 | (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) && |
Nadav Rotem | 91a7e01 | 2012-09-13 14:54:28 +0000 | [diff] [blame] | 5482 | N0.getNode()->hasOneUse() && VT.isInteger() && |
| 5483 | !VT.isVector() && !N0.getValueType().isVector()) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5484 | SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5485 | N0.getOperand(0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5486 | AddToWorkList(NewConv.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5487 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5488 | APInt SignBit = APInt::getSignBit(VT.getSizeInBits()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5489 | if (N0.getOpcode() == ISD::FNEG) |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5490 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, |
| 5491 | NewConv, DAG.getConstant(SignBit, VT)); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5492 | assert(N0.getOpcode() == ISD::FABS); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5493 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 5494 | NewConv, DAG.getConstant(~SignBit, VT)); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5495 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5496 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5497 | // fold (bitconvert (fcopysign cst, x)) -> |
| 5498 | // (or (and (bitconvert x), sign), (and cst, (not sign))) |
| 5499 | // Note that we don't handle (copysign x, cst) because this can always be |
| 5500 | // folded to an fneg or fabs. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5501 | if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() && |
Chris Lattner | f32aac3 | 2008-01-27 23:32:17 +0000 | [diff] [blame] | 5502 | isa<ConstantFPSDNode>(N0.getOperand(0)) && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5503 | VT.isInteger() && !VT.isVector()) { |
| 5504 | unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits(); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5505 | EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth); |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 5506 | if (isTypeLegal(IntXVT)) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5507 | SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5508 | IntXVT, N0.getOperand(1)); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5509 | AddToWorkList(X.getNode()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5510 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5511 | // If X has a different width than the result/lhs, sext it or truncate it. |
| 5512 | unsigned VTWidth = VT.getSizeInBits(); |
| 5513 | if (OrigXWidth < VTWidth) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5514 | X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5515 | AddToWorkList(X.getNode()); |
| 5516 | } else if (OrigXWidth > VTWidth) { |
| 5517 | // To get the sign bit in the right place, we have to shift it right |
| 5518 | // before truncating. |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5519 | X = DAG.getNode(ISD::SRL, X.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5520 | X.getValueType(), X, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5521 | DAG.getConstant(OrigXWidth-VTWidth, X.getValueType())); |
| 5522 | AddToWorkList(X.getNode()); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5523 | X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5524 | AddToWorkList(X.getNode()); |
| 5525 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5526 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5527 | APInt SignBit = APInt::getSignBit(VT.getSizeInBits()); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5528 | X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5529 | X, DAG.getConstant(SignBit, VT)); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5530 | AddToWorkList(X.getNode()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5531 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5532 | SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5533 | VT, N0.getOperand(0)); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5534 | Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5535 | Cst, DAG.getConstant(~SignBit, VT)); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5536 | AddToWorkList(Cst.getNode()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5537 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5538 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5539 | } |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5540 | } |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5541 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5542 | // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive. |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5543 | if (N0.getOpcode() == ISD::BUILD_PAIR) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5544 | SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT); |
| 5545 | if (CombineLD.getNode()) |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5546 | return CombineLD; |
| 5547 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5548 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5549 | return SDValue(); |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5550 | } |
| 5551 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5552 | SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5553 | EVT VT = N->getValueType(0); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5554 | return CombineConsecutiveLoads(N, VT); |
| 5555 | } |
| 5556 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5557 | /// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5558 | /// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5559 | /// destination element value type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5560 | SDValue DAGCombiner:: |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5561 | ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5562 | EVT SrcEltVT = BV->getValueType(0).getVectorElementType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5563 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5564 | // If this is already the right type, we're done. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5565 | if (SrcEltVT == DstEltVT) return SDValue(BV, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5566 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5567 | unsigned SrcBitSize = SrcEltVT.getSizeInBits(); |
| 5568 | unsigned DstBitSize = DstEltVT.getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5569 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5570 | // If this is a conversion of N elements of one type to N elements of another |
| 5571 | // type, convert each element. This handles FP<->INT cases. |
| 5572 | if (SrcBitSize == DstBitSize) { |
Nate Begeman | e0efc21 | 2010-07-27 18:02:18 +0000 | [diff] [blame] | 5573 | EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, |
| 5574 | BV->getValueType(0).getVectorNumElements()); |
| 5575 | |
| 5576 | // Due to the FP element handling below calling this routine recursively, |
| 5577 | // we can end up with a scalar-to-vector node here. |
| 5578 | if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5579 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT, |
| 5580 | DAG.getNode(ISD::BITCAST, BV->getDebugLoc(), |
Nate Begeman | e0efc21 | 2010-07-27 18:02:18 +0000 | [diff] [blame] | 5581 | DstEltVT, BV->getOperand(0))); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5582 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5583 | SmallVector<SDValue, 8> Ops; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5584 | for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) { |
Bob Wilson | b1303d0 | 2009-04-13 22:05:19 +0000 | [diff] [blame] | 5585 | SDValue Op = BV->getOperand(i); |
| 5586 | // If the vector element type is not legal, the BUILD_VECTOR operands |
| 5587 | // are promoted and implicitly truncated. Make that explicit here. |
Bob Wilson | c885165 | 2009-04-20 17:27:09 +0000 | [diff] [blame] | 5588 | if (Op.getValueType() != SrcEltVT) |
| 5589 | Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5590 | Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(), |
Bob Wilson | b1303d0 | 2009-04-13 22:05:19 +0000 | [diff] [blame] | 5591 | DstEltVT, Op)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5592 | AddToWorkList(Ops.back().getNode()); |
Chris Lattner | 3e104b1 | 2006-04-08 04:15:24 +0000 | [diff] [blame] | 5593 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 5594 | return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT, |
| 5595 | &Ops[0], Ops.size()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5596 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5597 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5598 | // Otherwise, we're growing or shrinking the elements. To avoid having to |
| 5599 | // handle annoying details of growing/shrinking FP values, we convert them to |
| 5600 | // int first. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5601 | if (SrcEltVT.isFloatingPoint()) { |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5602 | // Convert the input float vector to a int vector where the elements are the |
| 5603 | // same sizes. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5604 | assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!"); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5605 | EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5606 | BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode(); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5607 | SrcEltVT = IntVT; |
| 5608 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5609 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5610 | // Now we know the input is an integer vector. If the output is a FP type, |
| 5611 | // convert to integer first, then to FP of the right size. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5612 | if (DstEltVT.isFloatingPoint()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5613 | assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!"); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5614 | EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5615 | SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5616 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5617 | // Next, convert to FP elements of the same size. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5618 | return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5619 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5620 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5621 | // Okay, we know the src/dst types are both integers of differing types. |
| 5622 | // Handling growing first. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5623 | assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5624 | if (SrcBitSize < DstBitSize) { |
| 5625 | unsigned NumInputsPerOutput = DstBitSize/SrcBitSize; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5626 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5627 | SmallVector<SDValue, 8> Ops; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5628 | for (unsigned i = 0, e = BV->getNumOperands(); i != e; |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5629 | i += NumInputsPerOutput) { |
| 5630 | bool isLE = TLI.isLittleEndian(); |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 5631 | APInt NewBits = APInt(DstBitSize, 0); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5632 | bool EltIsUndef = true; |
| 5633 | for (unsigned j = 0; j != NumInputsPerOutput; ++j) { |
| 5634 | // Shift the previously computed bits over. |
| 5635 | NewBits <<= SrcBitSize; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5636 | SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5637 | if (Op.getOpcode() == ISD::UNDEF) continue; |
| 5638 | EltIsUndef = false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5639 | |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5640 | NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue(). |
Dan Gohman | 58c2587 | 2010-04-12 02:24:01 +0000 | [diff] [blame] | 5641 | zextOrTrunc(SrcBitSize).zext(DstBitSize); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5642 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5643 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5644 | if (EltIsUndef) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 5645 | Ops.push_back(DAG.getUNDEF(DstEltVT)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5646 | else |
| 5647 | Ops.push_back(DAG.getConstant(NewBits, DstEltVT)); |
| 5648 | } |
| 5649 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5650 | EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size()); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 5651 | return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT, |
| 5652 | &Ops[0], Ops.size()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5653 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5654 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5655 | // Finally, this must be the case where we are shrinking elements: each input |
| 5656 | // turns into multiple outputs. |
Evan Cheng | efec751 | 2008-02-18 23:04:32 +0000 | [diff] [blame] | 5657 | bool isS2V = ISD::isScalarToVector(BV); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5658 | unsigned NumOutputsPerInput = SrcBitSize/DstBitSize; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5659 | EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, |
| 5660 | NumOutputsPerInput*BV->getNumOperands()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5661 | SmallVector<SDValue, 8> Ops; |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5662 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5663 | for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) { |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5664 | if (BV->getOperand(i).getOpcode() == ISD::UNDEF) { |
| 5665 | for (unsigned j = 0; j != NumOutputsPerInput; ++j) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 5666 | Ops.push_back(DAG.getUNDEF(DstEltVT)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5667 | continue; |
| 5668 | } |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5669 | |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5670 | APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> |
| 5671 | getAPIntValue().zextOrTrunc(SrcBitSize); |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5672 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5673 | for (unsigned j = 0; j != NumOutputsPerInput; ++j) { |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5674 | APInt ThisVal = OpVal.trunc(DstBitSize); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5675 | Ops.push_back(DAG.getConstant(ThisVal, DstEltVT)); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5676 | if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal) |
Evan Cheng | efec751 | 2008-02-18 23:04:32 +0000 | [diff] [blame] | 5677 | // Simply turn this into a SCALAR_TO_VECTOR of the new type. |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5678 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT, |
| 5679 | Ops[0]); |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 5680 | OpVal = OpVal.lshr(DstBitSize); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5681 | } |
| 5682 | |
| 5683 | // For big endian targets, swap the order of the pieces of each element. |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 5684 | if (TLI.isBigEndian()) |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5685 | std::reverse(Ops.end()-NumOutputsPerInput, Ops.end()); |
| 5686 | } |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5687 | |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 5688 | return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT, |
| 5689 | &Ops[0], Ops.size()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5690 | } |
| 5691 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5692 | SDValue DAGCombiner::visitFADD(SDNode *N) { |
| 5693 | SDValue N0 = N->getOperand(0); |
| 5694 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5695 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 5696 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5697 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5698 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5699 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5700 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5701 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5702 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 5703 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5704 | |
Lang Hames | 0180694 | 2012-06-14 20:37:15 +0000 | [diff] [blame] | 5705 | // fold (fadd c1, c2) -> c1 + c2 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5706 | if (N0CFP && N1CFP && VT != MVT::ppcf128) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5707 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1); |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5708 | // canonicalize constant to RHS |
| 5709 | if (N0CFP && !N1CFP) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5710 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0); |
| 5711 | // fold (fadd A, 0) -> A |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5712 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 5713 | N1CFP->getValueAPF().isZero()) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 5714 | return N0; |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5715 | // fold (fadd A, (fneg B)) -> (fsub A, B) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5716 | if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 5717 | isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5718 | return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5719 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5720 | // fold (fadd (fneg A), B) -> (fsub B, A) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5721 | if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 5722 | isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5723 | return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5724 | GetNegatedExpression(N0, DAG, LegalOperations)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5725 | |
Chris Lattner | ddae4bd | 2007-01-08 23:04:05 +0000 | [diff] [blame] | 5726 | // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2)) |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5727 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 5728 | N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() && |
| 5729 | isa<ConstantFPSDNode>(N0.getOperand(1))) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5730 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0), |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 5731 | DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5732 | N0.getOperand(1), N1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5733 | |
Owen Anderson | 43da6c7 | 2012-08-30 23:35:16 +0000 | [diff] [blame] | 5734 | // In unsafe math mode, we can fold chains of FADD's of the same value |
| 5735 | // into multiplications. This transform is not safe in general because |
| 5736 | // we are reducing the number of rounding steps. |
| 5737 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5738 | TLI.isOperationLegalOrCustom(ISD::FMUL, VT) && |
| 5739 | !N0CFP && !N1CFP) { |
| 5740 | if (N0.getOpcode() == ISD::FMUL) { |
| 5741 | ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0)); |
| 5742 | ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1)); |
| 5743 | |
| 5744 | // (fadd (fmul c, x), x) -> (fmul c+1, x) |
| 5745 | if (CFP00 && !CFP01 && N0.getOperand(1) == N1) { |
| 5746 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5747 | SDValue(CFP00, 0), |
| 5748 | DAG.getConstantFP(1.0, VT)); |
| 5749 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5750 | N1, NewCFP); |
| 5751 | } |
| 5752 | |
| 5753 | // (fadd (fmul x, c), x) -> (fmul c+1, x) |
| 5754 | if (CFP01 && !CFP00 && N0.getOperand(0) == N1) { |
| 5755 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5756 | SDValue(CFP01, 0), |
| 5757 | DAG.getConstantFP(1.0, VT)); |
| 5758 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5759 | N1, NewCFP); |
| 5760 | } |
| 5761 | |
| 5762 | // (fadd (fadd x, x), x) -> (fmul 3.0, x) |
| 5763 | if (!CFP00 && !CFP01 && N0.getOperand(0) == N0.getOperand(1) && |
| 5764 | N0.getOperand(0) == N1) { |
| 5765 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5766 | N1, DAG.getConstantFP(3.0, VT)); |
| 5767 | } |
| 5768 | |
| 5769 | // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x) |
| 5770 | if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD && |
| 5771 | N1.getOperand(0) == N1.getOperand(1) && |
| 5772 | N0.getOperand(1) == N1.getOperand(0)) { |
| 5773 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5774 | SDValue(CFP00, 0), |
| 5775 | DAG.getConstantFP(2.0, VT)); |
| 5776 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5777 | N0.getOperand(1), NewCFP); |
| 5778 | } |
| 5779 | |
| 5780 | // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x) |
| 5781 | if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD && |
| 5782 | N1.getOperand(0) == N1.getOperand(1) && |
| 5783 | N0.getOperand(0) == N1.getOperand(0)) { |
| 5784 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5785 | SDValue(CFP01, 0), |
| 5786 | DAG.getConstantFP(2.0, VT)); |
| 5787 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5788 | N0.getOperand(0), NewCFP); |
| 5789 | } |
| 5790 | } |
| 5791 | |
| 5792 | if (N1.getOpcode() == ISD::FMUL) { |
| 5793 | ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0)); |
| 5794 | ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1)); |
| 5795 | |
| 5796 | // (fadd x, (fmul c, x)) -> (fmul c+1, x) |
| 5797 | if (CFP10 && !CFP11 && N1.getOperand(1) == N0) { |
| 5798 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5799 | SDValue(CFP10, 0), |
| 5800 | DAG.getConstantFP(1.0, VT)); |
| 5801 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5802 | N0, NewCFP); |
| 5803 | } |
| 5804 | |
| 5805 | // (fadd x, (fmul x, c)) -> (fmul c+1, x) |
| 5806 | if (CFP11 && !CFP10 && N1.getOperand(0) == N0) { |
| 5807 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5808 | SDValue(CFP11, 0), |
| 5809 | DAG.getConstantFP(1.0, VT)); |
| 5810 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5811 | N0, NewCFP); |
| 5812 | } |
| 5813 | |
| 5814 | // (fadd x, (fadd x, x)) -> (fmul 3.0, x) |
| 5815 | if (!CFP10 && !CFP11 && N1.getOperand(0) == N1.getOperand(1) && |
| 5816 | N1.getOperand(0) == N0) { |
| 5817 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5818 | N0, DAG.getConstantFP(3.0, VT)); |
| 5819 | } |
| 5820 | |
| 5821 | // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x) |
| 5822 | if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD && |
| 5823 | N1.getOperand(0) == N1.getOperand(1) && |
| 5824 | N0.getOperand(1) == N1.getOperand(0)) { |
| 5825 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5826 | SDValue(CFP10, 0), |
| 5827 | DAG.getConstantFP(2.0, VT)); |
| 5828 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5829 | N0.getOperand(1), NewCFP); |
| 5830 | } |
| 5831 | |
| 5832 | // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x) |
| 5833 | if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD && |
| 5834 | N1.getOperand(0) == N1.getOperand(1) && |
| 5835 | N0.getOperand(0) == N1.getOperand(0)) { |
| 5836 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5837 | SDValue(CFP11, 0), |
| 5838 | DAG.getConstantFP(2.0, VT)); |
| 5839 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5840 | N0.getOperand(0), NewCFP); |
| 5841 | } |
| 5842 | } |
| 5843 | |
| 5844 | // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x) |
| 5845 | if (N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD && |
| 5846 | N0.getOperand(0) == N0.getOperand(1) && |
| 5847 | N1.getOperand(0) == N1.getOperand(1) && |
| 5848 | N0.getOperand(0) == N1.getOperand(0)) { |
| 5849 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5850 | N0.getOperand(0), |
| 5851 | DAG.getConstantFP(4.0, VT)); |
| 5852 | } |
| 5853 | } |
| 5854 | |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5855 | // FADD -> FMA combines: |
Lang Hames | e023141 | 2012-06-22 01:09:09 +0000 | [diff] [blame] | 5856 | if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast || |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5857 | DAG.getTarget().Options.UnsafeFPMath) && |
| 5858 | DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) && |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5859 | TLI.isOperationLegalOrCustom(ISD::FMA, VT)) { |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5860 | |
| 5861 | // fold (fadd (fmul x, y), z) -> (fma x, y, z) |
| 5862 | if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) { |
| 5863 | return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, |
| 5864 | N0.getOperand(0), N0.getOperand(1), N1); |
| 5865 | } |
Owen Anderson | 43da6c7 | 2012-08-30 23:35:16 +0000 | [diff] [blame] | 5866 | |
Michael Liao | b79bff5 | 2012-09-01 04:09:16 +0000 | [diff] [blame] | 5867 | // fold (fadd x, (fmul y, z)) -> (fma y, z, x) |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5868 | // Note: Commutes FADD operands. |
| 5869 | if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) { |
| 5870 | return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, |
| 5871 | N1.getOperand(0), N1.getOperand(1), N0); |
| 5872 | } |
| 5873 | } |
| 5874 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5875 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 5876 | } |
| 5877 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5878 | SDValue DAGCombiner::visitFSUB(SDNode *N) { |
| 5879 | SDValue N0 = N->getOperand(0); |
| 5880 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5881 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 5882 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5883 | EVT VT = N->getValueType(0); |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5884 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5885 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5886 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5887 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5888 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5889 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 5890 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5891 | |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5892 | // fold (fsub c1, c2) -> c1-c2 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5893 | if (N0CFP && N1CFP && VT != MVT::ppcf128) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 5894 | return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1); |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5895 | // fold (fsub A, 0) -> A |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5896 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5897 | N1CFP && N1CFP->getValueAPF().isZero()) |
Dan Gohman | a90c8e6 | 2009-01-23 19:10:37 +0000 | [diff] [blame] | 5898 | return N0; |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5899 | // fold (fsub 0, B) -> -B |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5900 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5901 | N0CFP && N0CFP->getValueAPF().isZero()) { |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5902 | if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5903 | return GetNegatedExpression(N1, DAG, LegalOperations); |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 5904 | if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5905 | return DAG.getNode(ISD::FNEG, dl, VT, N1); |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 5906 | } |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5907 | // fold (fsub A, (fneg B)) -> (fadd A, B) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5908 | if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options)) |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5909 | return DAG.getNode(ISD::FADD, dl, VT, N0, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5910 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5911 | |
Bill Wendling | 5a89434 | 2012-03-15 05:12:00 +0000 | [diff] [blame] | 5912 | // If 'unsafe math' is enabled, fold |
Owen Anderson | 713e953 | 2012-05-07 20:51:25 +0000 | [diff] [blame] | 5913 | // (fsub x, x) -> 0.0 & |
Bill Wendling | 5a89434 | 2012-03-15 05:12:00 +0000 | [diff] [blame] | 5914 | // (fsub x, (fadd x, y)) -> (fneg y) & |
| 5915 | // (fsub x, (fadd y, x)) -> (fneg y) |
| 5916 | if (DAG.getTarget().Options.UnsafeFPMath) { |
Owen Anderson | 713e953 | 2012-05-07 20:51:25 +0000 | [diff] [blame] | 5917 | if (N0 == N1) |
| 5918 | return DAG.getConstantFP(0.0f, VT); |
| 5919 | |
Bill Wendling | 5a89434 | 2012-03-15 05:12:00 +0000 | [diff] [blame] | 5920 | if (N1.getOpcode() == ISD::FADD) { |
| 5921 | SDValue N10 = N1->getOperand(0); |
| 5922 | SDValue N11 = N1->getOperand(1); |
| 5923 | |
| 5924 | if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI, |
| 5925 | &DAG.getTarget().Options)) |
| 5926 | return GetNegatedExpression(N11, DAG, LegalOperations); |
| 5927 | else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI, |
| 5928 | &DAG.getTarget().Options)) |
| 5929 | return GetNegatedExpression(N10, DAG, LegalOperations); |
| 5930 | } |
| 5931 | } |
| 5932 | |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5933 | // FSUB -> FMA combines: |
Lang Hames | e023141 | 2012-06-22 01:09:09 +0000 | [diff] [blame] | 5934 | if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast || |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5935 | DAG.getTarget().Options.UnsafeFPMath) && |
| 5936 | DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) && |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5937 | TLI.isOperationLegalOrCustom(ISD::FMA, VT)) { |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5938 | |
| 5939 | // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z)) |
| 5940 | if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) { |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5941 | return DAG.getNode(ISD::FMA, dl, VT, |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5942 | N0.getOperand(0), N0.getOperand(1), |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5943 | DAG.getNode(ISD::FNEG, dl, VT, N1)); |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5944 | } |
| 5945 | |
| 5946 | // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x) |
| 5947 | // Note: Commutes FSUB operands. |
| 5948 | if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) { |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5949 | return DAG.getNode(ISD::FMA, dl, VT, |
| 5950 | DAG.getNode(ISD::FNEG, dl, VT, |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5951 | N1.getOperand(0)), |
| 5952 | N1.getOperand(1), N0); |
| 5953 | } |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5954 | |
| 5955 | // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z)) |
| 5956 | if (N0.getOpcode() == ISD::FNEG && |
| 5957 | N0.getOperand(0).getOpcode() == ISD::FMUL && |
| 5958 | N0->hasOneUse() && N0.getOperand(0).hasOneUse()) { |
| 5959 | SDValue N00 = N0.getOperand(0).getOperand(0); |
| 5960 | SDValue N01 = N0.getOperand(0).getOperand(1); |
| 5961 | return DAG.getNode(ISD::FMA, dl, VT, |
| 5962 | DAG.getNode(ISD::FNEG, dl, VT, N00), N01, |
| 5963 | DAG.getNode(ISD::FNEG, dl, VT, N1)); |
| 5964 | } |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5965 | } |
| 5966 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5967 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 5968 | } |
| 5969 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5970 | SDValue DAGCombiner::visitFMUL(SDNode *N) { |
| 5971 | SDValue N0 = N->getOperand(0); |
| 5972 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 5973 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 5974 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5975 | EVT VT = N->getValueType(0); |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5976 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 5977 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5978 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5979 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5980 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5981 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 5982 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5983 | |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 5984 | // fold (fmul c1, c2) -> c1*c2 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5985 | if (N0CFP && N1CFP && VT != MVT::ppcf128) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 5986 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1); |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 5987 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5988 | if (N0CFP && !N1CFP) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 5989 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0); |
| 5990 | // fold (fmul A, 0) -> 0 |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5991 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5992 | N1CFP && N1CFP->getValueAPF().isZero()) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 5993 | return N1; |
Dan Gohman | 77b81fe | 2009-06-04 17:12:12 +0000 | [diff] [blame] | 5994 | // fold (fmul A, 0) -> 0, vector edition. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5995 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5996 | ISD::isBuildVectorAllZeros(N1.getNode())) |
Dan Gohman | 77b81fe | 2009-06-04 17:12:12 +0000 | [diff] [blame] | 5997 | return N1; |
Owen Anderson | 363e4b9 | 2012-05-02 21:32:35 +0000 | [diff] [blame] | 5998 | // fold (fmul A, 1.0) -> A |
| 5999 | if (N1CFP && N1CFP->isExactlyValue(1.0)) |
| 6000 | return N0; |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 6001 | // fold (fmul X, 2.0) -> (fadd X, X) |
| 6002 | if (N1CFP && N1CFP->isExactlyValue(+2.0)) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6003 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0); |
Dan Gohman | eb1fedc | 2009-08-10 16:50:32 +0000 | [diff] [blame] | 6004 | // fold (fmul X, -1.0) -> (fneg X) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6005 | if (N1CFP && N1CFP->isExactlyValue(-1.0)) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6006 | if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6007 | return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6008 | |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6009 | // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6010 | if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6011 | &DAG.getTarget().Options)) { |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6012 | if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6013 | &DAG.getTarget().Options)) { |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6014 | // Both can be negated for free, check to see if at least one is cheaper |
| 6015 | // negated. |
| 6016 | if (LHSNeg == 2 || RHSNeg == 2) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6017 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6018 | GetNegatedExpression(N0, DAG, LegalOperations), |
| 6019 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6020 | } |
| 6021 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6022 | |
Chris Lattner | ddae4bd | 2007-01-08 23:04:05 +0000 | [diff] [blame] | 6023 | // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2)) |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6024 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 6025 | N1CFP && N0.getOpcode() == ISD::FMUL && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6026 | N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1))) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6027 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6028 | DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
Dale Johannesen | de06470 | 2009-02-06 21:50:26 +0000 | [diff] [blame] | 6029 | N0.getOperand(1), N1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6030 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6031 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6032 | } |
| 6033 | |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 6034 | SDValue DAGCombiner::visitFMA(SDNode *N) { |
| 6035 | SDValue N0 = N->getOperand(0); |
| 6036 | SDValue N1 = N->getOperand(1); |
| 6037 | SDValue N2 = N->getOperand(2); |
| 6038 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6039 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
| 6040 | EVT VT = N->getValueType(0); |
Owen Anderson | 58d5729 | 2012-09-01 06:04:27 +0000 | [diff] [blame] | 6041 | DebugLoc dl = N->getDebugLoc(); |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 6042 | |
| 6043 | if (N0CFP && N0CFP->isExactlyValue(1.0)) |
| 6044 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2); |
| 6045 | if (N1CFP && N1CFP->isExactlyValue(1.0)) |
| 6046 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2); |
| 6047 | |
Owen Anderson | 85ef6f4 | 2012-05-30 18:50:39 +0000 | [diff] [blame] | 6048 | // Canonicalize (fma c, x, y) -> (fma x, c, y) |
Owen Anderson | f917d20 | 2012-05-30 18:54:50 +0000 | [diff] [blame] | 6049 | if (N0CFP && !N1CFP) |
Owen Anderson | 85ef6f4 | 2012-05-30 18:50:39 +0000 | [diff] [blame] | 6050 | return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2); |
| 6051 | |
Owen Anderson | 58d5729 | 2012-09-01 06:04:27 +0000 | [diff] [blame] | 6052 | // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2) |
| 6053 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 6054 | N2.getOpcode() == ISD::FMUL && |
| 6055 | N0 == N2.getOperand(0) && |
| 6056 | N2.getOperand(1).getOpcode() == ISD::ConstantFP) { |
| 6057 | return DAG.getNode(ISD::FMUL, dl, VT, N0, |
| 6058 | DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1))); |
| 6059 | } |
| 6060 | |
| 6061 | |
| 6062 | // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y) |
| 6063 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 6064 | N0.getOpcode() == ISD::FMUL && N1CFP && |
| 6065 | N0.getOperand(1).getOpcode() == ISD::ConstantFP) { |
| 6066 | return DAG.getNode(ISD::FMA, dl, VT, |
| 6067 | N0.getOperand(0), |
| 6068 | DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)), |
| 6069 | N2); |
| 6070 | } |
| 6071 | |
| 6072 | // (fma x, 1, y) -> (fadd x, y) |
| 6073 | // (fma x, -1, y) -> (fadd (fneg x), y) |
| 6074 | if (N1CFP) { |
| 6075 | if (N1CFP->isExactlyValue(1.0)) |
| 6076 | return DAG.getNode(ISD::FADD, dl, VT, N0, N2); |
| 6077 | |
| 6078 | if (N1CFP->isExactlyValue(-1.0) && |
| 6079 | (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) { |
| 6080 | SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0); |
| 6081 | AddToWorkList(RHSNeg.getNode()); |
| 6082 | return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg); |
| 6083 | } |
| 6084 | } |
| 6085 | |
| 6086 | // (fma x, c, x) -> (fmul x, (c+1)) |
| 6087 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) { |
| 6088 | return DAG.getNode(ISD::FMUL, dl, VT, |
| 6089 | N0, |
| 6090 | DAG.getNode(ISD::FADD, dl, VT, |
| 6091 | N1, DAG.getConstantFP(1.0, VT))); |
| 6092 | } |
| 6093 | |
| 6094 | // (fma x, c, (fneg x)) -> (fmul x, (c-1)) |
| 6095 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 6096 | N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) { |
| 6097 | return DAG.getNode(ISD::FMUL, dl, VT, |
| 6098 | N0, |
| 6099 | DAG.getNode(ISD::FADD, dl, VT, |
| 6100 | N1, DAG.getConstantFP(-1.0, VT))); |
| 6101 | } |
| 6102 | |
| 6103 | |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 6104 | return SDValue(); |
| 6105 | } |
| 6106 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6107 | SDValue DAGCombiner::visitFDIV(SDNode *N) { |
| 6108 | SDValue N0 = N->getOperand(0); |
| 6109 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6110 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6111 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6112 | EVT VT = N->getValueType(0); |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6113 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6114 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6115 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6116 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6117 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6118 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 6119 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6120 | |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6121 | // fold (fdiv c1, c2) -> c1/c2 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6122 | if (N0CFP && N1CFP && VT != MVT::ppcf128) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6123 | return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6124 | |
Duncan Sands | 3ef3fcf | 2012-04-08 18:08:12 +0000 | [diff] [blame] | 6125 | // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable. |
| 6126 | if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) { |
Duncan Sands | 961d666 | 2012-04-07 20:04:00 +0000 | [diff] [blame] | 6127 | // Compute the reciprocal 1.0 / c2. |
| 6128 | APFloat N1APF = N1CFP->getValueAPF(); |
| 6129 | APFloat Recip(N1APF.getSemantics(), 1); // 1.0 |
| 6130 | APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven); |
Duncan Sands | 507bb7a | 2012-04-10 20:35:27 +0000 | [diff] [blame] | 6131 | // Only do the transform if the reciprocal is a legal fp immediate that |
| 6132 | // isn't too nasty (eg NaN, denormal, ...). |
| 6133 | if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty |
Anton Korobeynikov | 999821c | 2012-04-10 13:22:49 +0000 | [diff] [blame] | 6134 | (!LegalOperations || |
| 6135 | // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM |
| 6136 | // backend)... we should handle this gracefully after Legalize. |
| 6137 | // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) || |
| 6138 | TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) || |
| 6139 | TLI.isFPImmLegal(Recip, VT))) |
Duncan Sands | 961d666 | 2012-04-07 20:04:00 +0000 | [diff] [blame] | 6140 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, |
| 6141 | DAG.getConstantFP(Recip, VT)); |
| 6142 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6143 | |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6144 | // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6145 | if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6146 | &DAG.getTarget().Options)) { |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6147 | if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6148 | &DAG.getTarget().Options)) { |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6149 | // Both can be negated for free, check to see if at least one is cheaper |
| 6150 | // negated. |
| 6151 | if (LHSNeg == 2 || RHSNeg == 2) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6152 | return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6153 | GetNegatedExpression(N0, DAG, LegalOperations), |
| 6154 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6155 | } |
| 6156 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6157 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6158 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6159 | } |
| 6160 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6161 | SDValue DAGCombiner::visitFREM(SDNode *N) { |
| 6162 | SDValue N0 = N->getOperand(0); |
| 6163 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6164 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6165 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6166 | EVT VT = N->getValueType(0); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6167 | |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6168 | // fold (frem c1, c2) -> fmod(c1,c2) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6169 | if (N0CFP && N1CFP && VT != MVT::ppcf128) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6170 | return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6171 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6172 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6173 | } |
| 6174 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6175 | SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) { |
| 6176 | SDValue N0 = N->getOperand(0); |
| 6177 | SDValue N1 = N->getOperand(1); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6178 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6179 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6180 | EVT VT = N->getValueType(0); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6181 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6182 | if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 6183 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6184 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6185 | if (N1CFP) { |
Dale Johannesen | e6c1742 | 2007-08-26 01:18:27 +0000 | [diff] [blame] | 6186 | const APFloat& V = N1CFP->getValueAPF(); |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 6187 | // copysign(x, c1) -> fabs(x) iff ispos(c1) |
| 6188 | // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6189 | if (!V.isNegative()) { |
| 6190 | if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6191 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0); |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6192 | } else { |
| 6193 | if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6194 | return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 6195 | DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0)); |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6196 | } |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6197 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6198 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6199 | // copysign(fabs(x), y) -> copysign(x, y) |
| 6200 | // copysign(fneg(x), y) -> copysign(x, y) |
| 6201 | // copysign(copysign(x,z), y) -> copysign(x, y) |
| 6202 | if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG || |
| 6203 | N0.getOpcode() == ISD::FCOPYSIGN) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6204 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6205 | N0.getOperand(0), N1); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6206 | |
| 6207 | // copysign(x, abs(y)) -> abs(x) |
| 6208 | if (N1.getOpcode() == ISD::FABS) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6209 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6210 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6211 | // copysign(x, copysign(y,z)) -> copysign(x, z) |
| 6212 | if (N1.getOpcode() == ISD::FCOPYSIGN) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6213 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6214 | N0, N1.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6215 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6216 | // copysign(x, fp_extend(y)) -> copysign(x, y) |
| 6217 | // copysign(x, fp_round(y)) -> copysign(x, y) |
| 6218 | if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6219 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6220 | N0, N1.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6221 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6222 | return SDValue(); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6223 | } |
| 6224 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6225 | SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) { |
| 6226 | SDValue N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6227 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6228 | EVT VT = N->getValueType(0); |
| 6229 | EVT OpVT = N0.getValueType(); |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6230 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6231 | // fold (sint_to_fp c1) -> c1fp |
Stuart Hastings | 7e33418 | 2011-03-02 19:36:30 +0000 | [diff] [blame] | 6232 | if (N0C && OpVT != MVT::ppcf128 && |
| 6233 | // ...but only if the target supports immediate floating-point values |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6234 | (!LegalOperations || |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 6235 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6236 | return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6237 | |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6238 | // If the input is a legal type, and SINT_TO_FP is not legal on this target, |
| 6239 | // but UINT_TO_FP is legal on this target, try to convert. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 6240 | if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) && |
| 6241 | TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6242 | // If the sign bit is known to be zero, we can change this to UINT_TO_FP. |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6243 | if (DAG.SignBitIsZero(N0)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6244 | return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0); |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6245 | } |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6246 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6247 | // The next optimizations are desireable only if SELECT_CC can be lowered. |
| 6248 | // Check against MVT::Other for SELECT_CC, which is a workaround for targets |
| 6249 | // having to say they don't support SELECT_CC on every type the DAG knows |
| 6250 | // about, since there is no way to mark an opcode illegal at all value types |
| 6251 | // (See also visitSELECT) |
| 6252 | if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) { |
| 6253 | // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc) |
| 6254 | if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 && |
| 6255 | !VT.isVector() && |
| 6256 | (!LegalOperations || |
| 6257 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { |
| 6258 | SDValue Ops[] = |
| 6259 | { N0.getOperand(0), N0.getOperand(1), |
| 6260 | DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT), |
| 6261 | N0.getOperand(2) }; |
| 6262 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5); |
| 6263 | } |
Owen Anderson | d9bf71f | 2012-07-09 20:31:12 +0000 | [diff] [blame] | 6264 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6265 | // fold (sint_to_fp (zext (setcc x, y, cc))) -> |
| 6266 | // (select_cc x, y, 1.0, 0.0,, cc) |
| 6267 | if (N0.getOpcode() == ISD::ZERO_EXTEND && |
| 6268 | N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() && |
| 6269 | (!LegalOperations || |
| 6270 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { |
| 6271 | SDValue Ops[] = |
| 6272 | { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1), |
| 6273 | DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT), |
| 6274 | N0.getOperand(0).getOperand(2) }; |
| 6275 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5); |
| 6276 | } |
Owen Anderson | d9bf71f | 2012-07-09 20:31:12 +0000 | [diff] [blame] | 6277 | } |
| 6278 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6279 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6280 | } |
| 6281 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6282 | SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) { |
| 6283 | SDValue N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6284 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6285 | EVT VT = N->getValueType(0); |
| 6286 | EVT OpVT = N0.getValueType(); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6287 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6288 | // fold (uint_to_fp c1) -> c1fp |
Stuart Hastings | 7e33418 | 2011-03-02 19:36:30 +0000 | [diff] [blame] | 6289 | if (N0C && OpVT != MVT::ppcf128 && |
| 6290 | // ...but only if the target supports immediate floating-point values |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6291 | (!LegalOperations || |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 6292 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6293 | return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6294 | |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6295 | // If the input is a legal type, and UINT_TO_FP is not legal on this target, |
| 6296 | // but SINT_TO_FP is legal on this target, try to convert. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 6297 | if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) && |
| 6298 | TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6299 | // If the sign bit is known to be zero, we can change this to SINT_TO_FP. |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6300 | if (DAG.SignBitIsZero(N0)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6301 | return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0); |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6302 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6303 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6304 | // The next optimizations are desireable only if SELECT_CC can be lowered. |
| 6305 | // Check against MVT::Other for SELECT_CC, which is a workaround for targets |
| 6306 | // having to say they don't support SELECT_CC on every type the DAG knows |
| 6307 | // about, since there is no way to mark an opcode illegal at all value types |
| 6308 | // (See also visitSELECT) |
| 6309 | if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) { |
| 6310 | // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc) |
Owen Anderson | d9bf71f | 2012-07-09 20:31:12 +0000 | [diff] [blame] | 6311 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6312 | if (N0.getOpcode() == ISD::SETCC && !VT.isVector() && |
| 6313 | (!LegalOperations || |
| 6314 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { |
| 6315 | SDValue Ops[] = |
| 6316 | { N0.getOperand(0), N0.getOperand(1), |
| 6317 | DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT), |
| 6318 | N0.getOperand(2) }; |
| 6319 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5); |
| 6320 | } |
| 6321 | } |
Owen Anderson | d9bf71f | 2012-07-09 20:31:12 +0000 | [diff] [blame] | 6322 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6323 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6324 | } |
| 6325 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6326 | SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) { |
| 6327 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6328 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6329 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6330 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6331 | // fold (fp_to_sint c1fp) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6332 | if (N0CFP) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6333 | return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0); |
| 6334 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6335 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6336 | } |
| 6337 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6338 | SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) { |
| 6339 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6340 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6341 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6342 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6343 | // fold (fp_to_uint c1fp) -> c1 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6344 | if (N0CFP && VT != MVT::ppcf128) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6345 | return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0); |
| 6346 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6347 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6348 | } |
| 6349 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6350 | SDValue DAGCombiner::visitFP_ROUND(SDNode *N) { |
| 6351 | SDValue N0 = N->getOperand(0); |
| 6352 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6353 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6354 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6355 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6356 | // fold (fp_round c1fp) -> c1fp |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6357 | if (N0CFP && N0.getValueType() != MVT::ppcf128) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6358 | return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6359 | |
Chris Lattner | 79dbea5 | 2006-03-13 06:26:26 +0000 | [diff] [blame] | 6360 | // fold (fp_round (fp_extend x)) -> x |
| 6361 | if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType()) |
| 6362 | return N0.getOperand(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6363 | |
Chris Lattner | 0aa5e6f | 2008-01-24 06:45:35 +0000 | [diff] [blame] | 6364 | // fold (fp_round (fp_round x)) -> (fp_round x) |
| 6365 | if (N0.getOpcode() == ISD::FP_ROUND) { |
| 6366 | // This is a value preserving truncation if both round's are. |
| 6367 | bool IsTrunc = N->getConstantOperandVal(1) == 1 && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6368 | N0.getNode()->getConstantOperandVal(1) == 1; |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6369 | return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0), |
Chris Lattner | 0aa5e6f | 2008-01-24 06:45:35 +0000 | [diff] [blame] | 6370 | DAG.getIntPtrConstant(IsTrunc)); |
| 6371 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6372 | |
Chris Lattner | 79dbea5 | 2006-03-13 06:26:26 +0000 | [diff] [blame] | 6373 | // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6374 | if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) { |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6375 | SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT, |
| 6376 | N0.getOperand(0), N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6377 | AddToWorkList(Tmp.getNode()); |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6378 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6379 | Tmp, N0.getOperand(1)); |
Chris Lattner | 79dbea5 | 2006-03-13 06:26:26 +0000 | [diff] [blame] | 6380 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6381 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6382 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6383 | } |
| 6384 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6385 | SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) { |
| 6386 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6387 | EVT VT = N->getValueType(0); |
| 6388 | EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6389 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6390 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6391 | // fold (fp_round_inreg c1fp) -> c1fp |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 6392 | if (N0CFP && isTypeLegal(EVT)) { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 6393 | SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT); |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6394 | return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6395 | } |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6396 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6397 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6398 | } |
| 6399 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6400 | SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) { |
| 6401 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6402 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6403 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6404 | |
Chris Lattner | 5938bef | 2007-12-29 06:55:23 +0000 | [diff] [blame] | 6405 | // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6406 | if (N->hasOneUse() && |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 6407 | N->use_begin()->getOpcode() == ISD::FP_ROUND) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6408 | return SDValue(); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6409 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6410 | // fold (fp_extend c1fp) -> c1fp |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6411 | if (N0CFP && VT != MVT::ppcf128) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6412 | return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6413 | |
| 6414 | // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the |
| 6415 | // value of X. |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 6416 | if (N0.getOpcode() == ISD::FP_ROUND |
| 6417 | && N0.getNode()->getConstantOperandVal(1) == 1) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6418 | SDValue In = N0.getOperand(0); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6419 | if (In.getValueType() == VT) return In; |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6420 | if (VT.bitsLT(In.getValueType())) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6421 | return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, |
| 6422 | In, N0.getOperand(1)); |
| 6423 | return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6424 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6425 | |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6426 | // fold (fpext (load x)) -> (fpext (fptrunc (extload x))) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6427 | if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6428 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 6429 | TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6430 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 6431 | SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6432 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 6433 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6434 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 6435 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 6436 | LN0->getAlignment()); |
Chris Lattner | e564dbb | 2006-05-05 21:34:35 +0000 | [diff] [blame] | 6437 | CombineTo(N, ExtLoad); |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6438 | CombineTo(N0.getNode(), |
| 6439 | DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), |
| 6440 | N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)), |
Chris Lattner | e564dbb | 2006-05-05 21:34:35 +0000 | [diff] [blame] | 6441 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6442 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | e564dbb | 2006-05-05 21:34:35 +0000 | [diff] [blame] | 6443 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 6444 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6445 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6446 | } |
| 6447 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6448 | SDValue DAGCombiner::visitFNEG(SDNode *N) { |
| 6449 | SDValue N0 = N->getOperand(0); |
Anton Korobeynikov | 2bcf60a | 2009-10-20 21:37:45 +0000 | [diff] [blame] | 6450 | EVT VT = N->getValueType(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6451 | |
Craig Topper | dd201ff | 2012-09-11 01:45:21 +0000 | [diff] [blame] | 6452 | if (VT.isVector()) { |
| 6453 | SDValue FoldedVOp = SimplifyVUnaryOp(N); |
| 6454 | if (FoldedVOp.getNode()) return FoldedVOp; |
Craig Topper | 956342b | 2012-09-09 22:58:45 +0000 | [diff] [blame] | 6455 | } |
| 6456 | |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6457 | if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(), |
| 6458 | &DAG.getTarget().Options)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6459 | return GetNegatedExpression(N0, DAG, LegalOperations); |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 6460 | |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6461 | // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading |
| 6462 | // constant pool values. |
Owen Anderson | 29f60f3 | 2012-04-02 22:10:29 +0000 | [diff] [blame] | 6463 | if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST && |
Anton Korobeynikov | 2bcf60a | 2009-10-20 21:37:45 +0000 | [diff] [blame] | 6464 | !VT.isVector() && |
| 6465 | N0.getNode()->hasOneUse() && |
| 6466 | N0.getOperand(0).getValueType().isInteger()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6467 | SDValue Int = N0.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6468 | EVT IntVT = Int.getValueType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6469 | if (IntVT.isInteger() && !IntVT.isVector()) { |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 6470 | Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int, |
| 6471 | DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6472 | AddToWorkList(Int.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6473 | return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), |
Anton Korobeynikov | 2bcf60a | 2009-10-20 21:37:45 +0000 | [diff] [blame] | 6474 | VT, Int); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6475 | } |
| 6476 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6477 | |
Owen Anderson | 58d5729 | 2012-09-01 06:04:27 +0000 | [diff] [blame] | 6478 | // (fneg (fmul c, x)) -> (fmul -c, x) |
| 6479 | if (N0.getOpcode() == ISD::FMUL) { |
| 6480 | ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1)); |
| 6481 | if (CFP1) { |
| 6482 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 6483 | N0.getOperand(0), |
| 6484 | DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, |
| 6485 | N0.getOperand(1))); |
| 6486 | } |
| 6487 | } |
| 6488 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6489 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6490 | } |
| 6491 | |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 6492 | SDValue DAGCombiner::visitFCEIL(SDNode *N) { |
| 6493 | SDValue N0 = N->getOperand(0); |
| 6494 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6495 | EVT VT = N->getValueType(0); |
| 6496 | |
| 6497 | // fold (fceil c1) -> fceil(c1) |
| 6498 | if (N0CFP && VT != MVT::ppcf128) |
| 6499 | return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0); |
| 6500 | |
| 6501 | return SDValue(); |
| 6502 | } |
| 6503 | |
| 6504 | SDValue DAGCombiner::visitFTRUNC(SDNode *N) { |
| 6505 | SDValue N0 = N->getOperand(0); |
| 6506 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6507 | EVT VT = N->getValueType(0); |
| 6508 | |
| 6509 | // fold (ftrunc c1) -> ftrunc(c1) |
| 6510 | if (N0CFP && VT != MVT::ppcf128) |
| 6511 | return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0); |
| 6512 | |
| 6513 | return SDValue(); |
| 6514 | } |
| 6515 | |
| 6516 | SDValue DAGCombiner::visitFFLOOR(SDNode *N) { |
| 6517 | SDValue N0 = N->getOperand(0); |
| 6518 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6519 | EVT VT = N->getValueType(0); |
| 6520 | |
| 6521 | // fold (ffloor c1) -> ffloor(c1) |
| 6522 | if (N0CFP && VT != MVT::ppcf128) |
| 6523 | return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0); |
| 6524 | |
| 6525 | return SDValue(); |
| 6526 | } |
| 6527 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6528 | SDValue DAGCombiner::visitFABS(SDNode *N) { |
| 6529 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6530 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6531 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6532 | |
Craig Topper | dd201ff | 2012-09-11 01:45:21 +0000 | [diff] [blame] | 6533 | if (VT.isVector()) { |
| 6534 | SDValue FoldedVOp = SimplifyVUnaryOp(N); |
| 6535 | if (FoldedVOp.getNode()) return FoldedVOp; |
| 6536 | } |
| 6537 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6538 | // fold (fabs c1) -> fabs(c1) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6539 | if (N0CFP && VT != MVT::ppcf128) |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6540 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6541 | // fold (fabs (fabs x)) -> (fabs x) |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6542 | if (N0.getOpcode() == ISD::FABS) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 6543 | return N->getOperand(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6544 | // fold (fabs (fneg x)) -> (fabs x) |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6545 | // fold (fabs (fcopysign x, y)) -> (fabs x) |
| 6546 | if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN) |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6547 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6548 | |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6549 | // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading |
| 6550 | // constant pool values. |
Owen Anderson | 29f60f3 | 2012-04-02 22:10:29 +0000 | [diff] [blame] | 6551 | if (!TLI.isFAbsFree(VT) && |
| 6552 | N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6553 | N0.getOperand(0).getValueType().isInteger() && |
| 6554 | !N0.getOperand(0).getValueType().isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6555 | SDValue Int = N0.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6556 | EVT IntVT = Int.getValueType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6557 | if (IntVT.isInteger() && !IntVT.isVector()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6558 | Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int, |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 6559 | DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6560 | AddToWorkList(Int.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6561 | return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6562 | N->getValueType(0), Int); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6563 | } |
| 6564 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6565 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6566 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6567 | } |
| 6568 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6569 | SDValue DAGCombiner::visitBRCOND(SDNode *N) { |
| 6570 | SDValue Chain = N->getOperand(0); |
| 6571 | SDValue N1 = N->getOperand(1); |
| 6572 | SDValue N2 = N->getOperand(2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6573 | |
Dan Gohman | e0f06c7 | 2009-11-17 00:47:23 +0000 | [diff] [blame] | 6574 | // If N is a constant we could fold this into a fallthrough or unconditional |
| 6575 | // branch. However that doesn't happen very often in normal code, because |
| 6576 | // Instcombine/SimplifyCFG should have handled the available opportunities. |
| 6577 | // If we did this folding here, it would be necessary to update the |
| 6578 | // MachineBasicBlock CFG, which is awkward. |
| 6579 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 6580 | // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal |
| 6581 | // on the target. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6582 | if (N1.getOpcode() == ISD::SETCC && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6583 | TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) { |
| 6584 | return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other, |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6585 | Chain, N1.getOperand(2), |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 6586 | N1.getOperand(0), N1.getOperand(1), N2); |
| 6587 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6588 | |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6589 | if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) || |
| 6590 | ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) && |
| 6591 | (N1.getOperand(0).hasOneUse() && |
| 6592 | N1.getOperand(0).getOpcode() == ISD::SRL))) { |
| 6593 | SDNode *Trunc = 0; |
| 6594 | if (N1.getOpcode() == ISD::TRUNCATE) { |
| 6595 | // Look pass the truncate. |
| 6596 | Trunc = N1.getNode(); |
| 6597 | N1 = N1.getOperand(0); |
| 6598 | } |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6599 | |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6600 | // Match this pattern so that we can generate simpler code: |
| 6601 | // |
| 6602 | // %a = ... |
| 6603 | // %b = and i32 %a, 2 |
| 6604 | // %c = srl i32 %b, 1 |
| 6605 | // brcond i32 %c ... |
| 6606 | // |
| 6607 | // into |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6608 | // |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6609 | // %a = ... |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6610 | // %b = and i32 %a, 2 |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6611 | // %c = setcc eq %b, 0 |
| 6612 | // brcond %c ... |
| 6613 | // |
| 6614 | // This applies only when the AND constant value has one bit set and the |
| 6615 | // SRL constant is equal to the log2 of the AND constant. The back-end is |
| 6616 | // smart enough to convert the result into a TEST/JMP sequence. |
| 6617 | SDValue Op0 = N1.getOperand(0); |
| 6618 | SDValue Op1 = N1.getOperand(1); |
| 6619 | |
| 6620 | if (Op0.getOpcode() == ISD::AND && |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6621 | Op1.getOpcode() == ISD::Constant) { |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6622 | SDValue AndOp1 = Op0.getOperand(1); |
| 6623 | |
| 6624 | if (AndOp1.getOpcode() == ISD::Constant) { |
| 6625 | const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue(); |
| 6626 | |
| 6627 | if (AndConst.isPowerOf2() && |
| 6628 | cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) { |
| 6629 | SDValue SetCC = |
| 6630 | DAG.getSetCC(N->getDebugLoc(), |
| 6631 | TLI.getSetCCResultType(Op0.getValueType()), |
| 6632 | Op0, DAG.getConstant(0, Op0.getValueType()), |
| 6633 | ISD::SETNE); |
| 6634 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6635 | SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(), |
| 6636 | MVT::Other, Chain, SetCC, N2); |
| 6637 | // Don't add the new BRCond into the worklist or else SimplifySelectCC |
| 6638 | // will convert it back to (X & C1) >> C2. |
| 6639 | CombineTo(N, NewBRCond, false); |
| 6640 | // Truncate is dead. |
| 6641 | if (Trunc) { |
| 6642 | removeFromWorkList(Trunc); |
| 6643 | DAG.DeleteNode(Trunc); |
| 6644 | } |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6645 | // Replace the uses of SRL with SETCC |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6646 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6647 | DAG.ReplaceAllUsesOfValueWith(N1, SetCC); |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6648 | removeFromWorkList(N1.getNode()); |
| 6649 | DAG.DeleteNode(N1.getNode()); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6650 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6651 | } |
| 6652 | } |
| 6653 | } |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6654 | |
| 6655 | if (Trunc) |
| 6656 | // Restore N1 if the above transformation doesn't match. |
| 6657 | N1 = N->getOperand(1); |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6658 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6659 | |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6660 | // Transform br(xor(x, y)) -> br(x != y) |
| 6661 | // Transform br(xor(xor(x,y), 1)) -> br (x == y) |
| 6662 | if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) { |
| 6663 | SDNode *TheXor = N1.getNode(); |
| 6664 | SDValue Op0 = TheXor->getOperand(0); |
| 6665 | SDValue Op1 = TheXor->getOperand(1); |
| 6666 | if (Op0.getOpcode() == Op1.getOpcode()) { |
| 6667 | // Avoid missing important xor optimizations. |
| 6668 | SDValue Tmp = visitXOR(TheXor); |
Bill Wendling | 86c5abb | 2010-04-20 01:25:01 +0000 | [diff] [blame] | 6669 | if (Tmp.getNode() && Tmp.getNode() != TheXor) { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6670 | DEBUG(dbgs() << "\nReplacing.8 "; |
| 6671 | TheXor->dump(&DAG); |
| 6672 | dbgs() << "\nWith: "; |
| 6673 | Tmp.getNode()->dump(&DAG); |
| 6674 | dbgs() << '\n'); |
| 6675 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6676 | DAG.ReplaceAllUsesOfValueWith(N1, Tmp); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6677 | removeFromWorkList(TheXor); |
| 6678 | DAG.DeleteNode(TheXor); |
| 6679 | return DAG.getNode(ISD::BRCOND, N->getDebugLoc(), |
| 6680 | MVT::Other, Chain, Tmp, N2); |
| 6681 | } |
| 6682 | } |
| 6683 | |
| 6684 | if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) { |
| 6685 | bool Equal = false; |
| 6686 | if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0)) |
| 6687 | if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() && |
| 6688 | Op0.getOpcode() == ISD::XOR) { |
| 6689 | TheXor = Op0.getNode(); |
| 6690 | Equal = true; |
| 6691 | } |
| 6692 | |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6693 | EVT SetCCVT = N1.getValueType(); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6694 | if (LegalTypes) |
| 6695 | SetCCVT = TLI.getSetCCResultType(SetCCVT); |
| 6696 | SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(), |
| 6697 | SetCCVT, |
| 6698 | Op0, Op1, |
| 6699 | Equal ? ISD::SETEQ : ISD::SETNE); |
| 6700 | // Replace the uses of XOR with SETCC |
| 6701 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6702 | DAG.ReplaceAllUsesOfValueWith(N1, SetCC); |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6703 | removeFromWorkList(N1.getNode()); |
| 6704 | DAG.DeleteNode(N1.getNode()); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6705 | return DAG.getNode(ISD::BRCOND, N->getDebugLoc(), |
| 6706 | MVT::Other, Chain, SetCC, N2); |
| 6707 | } |
| 6708 | } |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6709 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6710 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 6711 | } |
| 6712 | |
Chris Lattner | 3ea0b47 | 2005-10-05 06:47:48 +0000 | [diff] [blame] | 6713 | // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB. |
| 6714 | // |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6715 | SDValue DAGCombiner::visitBR_CC(SDNode *N) { |
Chris Lattner | 3ea0b47 | 2005-10-05 06:47:48 +0000 | [diff] [blame] | 6716 | CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6717 | SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6718 | |
Dan Gohman | e0f06c7 | 2009-11-17 00:47:23 +0000 | [diff] [blame] | 6719 | // If N is a constant we could fold this into a fallthrough or unconditional |
| 6720 | // branch. However that doesn't happen very often in normal code, because |
| 6721 | // Instcombine/SimplifyCFG should have handled the available opportunities. |
| 6722 | // If we did this folding here, it would be necessary to update the |
| 6723 | // MachineBasicBlock CFG, which is awkward. |
| 6724 | |
Duncan Sands | 8eab8a2 | 2008-06-09 11:32:28 +0000 | [diff] [blame] | 6725 | // Use SimplifySetCC to simplify SETCC's. |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 6726 | SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 6727 | CondLHS, CondRHS, CC->get(), N->getDebugLoc(), |
| 6728 | false); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6729 | if (Simp.getNode()) AddToWorkList(Simp.getNode()); |
Chris Lattner | 30f73e7 | 2006-10-14 03:52:46 +0000 | [diff] [blame] | 6730 | |
Nate Begeman | e17daeb | 2005-10-05 21:43:42 +0000 | [diff] [blame] | 6731 | // fold to a simpler setcc |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6732 | if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6733 | return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other, |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6734 | N->getOperand(0), Simp.getOperand(2), |
| 6735 | Simp.getOperand(0), Simp.getOperand(1), |
| 6736 | N->getOperand(4)); |
| 6737 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6738 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 6739 | } |
| 6740 | |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6741 | /// canFoldInAddressingMode - Return true if 'Use' is a load or a store that |
| 6742 | /// uses N as its base pointer and that N may be folded in the load / store |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6743 | /// addressing mode. |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6744 | static bool canFoldInAddressingMode(SDNode *N, SDNode *Use, |
| 6745 | SelectionDAG &DAG, |
| 6746 | const TargetLowering &TLI) { |
| 6747 | EVT VT; |
| 6748 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) { |
| 6749 | if (LD->isIndexed() || LD->getBasePtr().getNode() != N) |
| 6750 | return false; |
| 6751 | VT = Use->getValueType(0); |
| 6752 | } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) { |
| 6753 | if (ST->isIndexed() || ST->getBasePtr().getNode() != N) |
| 6754 | return false; |
| 6755 | VT = ST->getValue().getValueType(); |
| 6756 | } else |
| 6757 | return false; |
| 6758 | |
Nadav Rotem | ad6aedc | 2012-10-08 23:06:34 +0000 | [diff] [blame] | 6759 | AddrMode AM; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6760 | if (N->getOpcode() == ISD::ADD) { |
| 6761 | ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 6762 | if (Offset) |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6763 | // [reg +/- imm] |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6764 | AM.BaseOffs = Offset->getSExtValue(); |
| 6765 | else |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6766 | // [reg +/- reg] |
| 6767 | AM.Scale = 1; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6768 | } else if (N->getOpcode() == ISD::SUB) { |
| 6769 | ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 6770 | if (Offset) |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6771 | // [reg +/- imm] |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6772 | AM.BaseOffs = -Offset->getSExtValue(); |
| 6773 | else |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6774 | // [reg +/- reg] |
| 6775 | AM.Scale = 1; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6776 | } else |
| 6777 | return false; |
| 6778 | |
| 6779 | return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext())); |
| 6780 | } |
| 6781 | |
Duncan Sands | ec87aa8 | 2008-06-15 20:12:31 +0000 | [diff] [blame] | 6782 | /// CombineToPreIndexedLoadStore - Try turning a load / store into a |
| 6783 | /// pre-indexed load / store when the base pointer is an add or subtract |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6784 | /// and it has other uses besides the load / store. After the |
| 6785 | /// transformation, the new indexed load / store has effectively folded |
| 6786 | /// the add / subtract in and all of its other uses are redirected to the |
| 6787 | /// new load / store. |
| 6788 | bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) { |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6789 | if (Level < AfterLegalizeDAG) |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6790 | return false; |
| 6791 | |
| 6792 | bool isLoad = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6793 | SDValue Ptr; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6794 | EVT VT; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6795 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6796 | if (LD->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6797 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6798 | VT = LD->getMemoryVT(); |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 6799 | if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) && |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6800 | !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT)) |
| 6801 | return false; |
| 6802 | Ptr = LD->getBasePtr(); |
| 6803 | } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6804 | if (ST->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6805 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6806 | VT = ST->getMemoryVT(); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6807 | if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) && |
| 6808 | !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT)) |
| 6809 | return false; |
| 6810 | Ptr = ST->getBasePtr(); |
| 6811 | isLoad = false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6812 | } else { |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6813 | return false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6814 | } |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6815 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6816 | // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail |
| 6817 | // out. There is no reason to make this a preinc/predec. |
| 6818 | if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) || |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6819 | Ptr.getNode()->hasOneUse()) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6820 | return false; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6821 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6822 | // Ask the target to do addressing mode selection. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6823 | SDValue BasePtr; |
| 6824 | SDValue Offset; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6825 | ISD::MemIndexedMode AM = ISD::UNINDEXED; |
| 6826 | if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG)) |
| 6827 | return false; |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6828 | // Don't create a indexed load / store with zero offset. |
| 6829 | if (isa<ConstantSDNode>(Offset) && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 6830 | cast<ConstantSDNode>(Offset)->isNullValue()) |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6831 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6832 | |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6833 | // Try turning it into a pre-indexed load / store except when: |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6834 | // 1) The new base ptr is a frame index. |
| 6835 | // 2) If N is a store and the new base ptr is either the same as or is a |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6836 | // predecessor of the value being stored. |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6837 | // 3) Another use of old base ptr is a predecessor of N. If ptr is folded |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6838 | // that would create a cycle. |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6839 | // 4) All uses are load / store ops that use it as old base ptr. |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6840 | |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6841 | // Check #1. Preinc'ing a frame index would require copying the stack pointer |
| 6842 | // (plus the implicit offset) to a register to preinc anyway. |
Evan Cheng | caab129 | 2009-05-06 18:25:01 +0000 | [diff] [blame] | 6843 | if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6844 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6845 | |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6846 | // Check #2. |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6847 | if (!isLoad) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6848 | SDValue Val = cast<StoreSDNode>(N)->getValue(); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6849 | if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode())) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6850 | return false; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6851 | } |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6852 | |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6853 | // Now check for #3 and #4. |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6854 | bool RealUse = false; |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6855 | |
| 6856 | // Caches for hasPredecessorHelper |
| 6857 | SmallPtrSet<const SDNode *, 32> Visited; |
| 6858 | SmallVector<const SDNode *, 16> Worklist; |
| 6859 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6860 | for (SDNode::use_iterator I = Ptr.getNode()->use_begin(), |
| 6861 | E = Ptr.getNode()->use_end(); I != E; ++I) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6862 | SDNode *Use = *I; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6863 | if (Use == N) |
| 6864 | continue; |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6865 | if (N->hasPredecessorHelper(Use, Visited, Worklist)) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6866 | return false; |
| 6867 | |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6868 | // If Ptr may be folded in addressing mode of other use, then it's |
| 6869 | // not profitable to do this transformation. |
| 6870 | if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI)) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6871 | RealUse = true; |
| 6872 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6873 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6874 | if (!RealUse) |
| 6875 | return false; |
| 6876 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6877 | SDValue Result; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6878 | if (isLoad) |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6879 | Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(), |
| 6880 | BasePtr, Offset, AM); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6881 | else |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6882 | Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(), |
| 6883 | BasePtr, Offset, AM); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6884 | ++PreIndexedNodes; |
| 6885 | ++NodesCombined; |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 6886 | DEBUG(dbgs() << "\nReplacing.4 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 6887 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 6888 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 6889 | Result.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 6890 | dbgs() << '\n'); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 6891 | WorkListRemover DeadNodes(*this); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6892 | if (isLoad) { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6893 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); |
| 6894 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6895 | } else { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6896 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6897 | } |
| 6898 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6899 | // Finally, since the node is now dead, remove it from the graph. |
| 6900 | DAG.DeleteNode(N); |
| 6901 | |
| 6902 | // Replace the uses of Ptr with uses of the updated base value. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6903 | DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6904 | removeFromWorkList(Ptr.getNode()); |
| 6905 | DAG.DeleteNode(Ptr.getNode()); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6906 | |
| 6907 | return true; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6908 | } |
| 6909 | |
Duncan Sands | ec87aa8 | 2008-06-15 20:12:31 +0000 | [diff] [blame] | 6910 | /// CombineToPostIndexedLoadStore - Try to combine a load / store with a |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6911 | /// add / sub of the base pointer node into a post-indexed load / store. |
| 6912 | /// The transformation folded the add / subtract into the new indexed |
| 6913 | /// load / store effectively and all of its uses are redirected to the |
| 6914 | /// new load / store. |
| 6915 | bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) { |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6916 | if (Level < AfterLegalizeDAG) |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6917 | return false; |
| 6918 | |
| 6919 | bool isLoad = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6920 | SDValue Ptr; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6921 | EVT VT; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6922 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6923 | if (LD->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6924 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6925 | VT = LD->getMemoryVT(); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6926 | if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) && |
| 6927 | !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT)) |
| 6928 | return false; |
| 6929 | Ptr = LD->getBasePtr(); |
| 6930 | } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6931 | if (ST->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6932 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6933 | VT = ST->getMemoryVT(); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6934 | if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) && |
| 6935 | !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT)) |
| 6936 | return false; |
| 6937 | Ptr = ST->getBasePtr(); |
| 6938 | isLoad = false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6939 | } else { |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6940 | return false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6941 | } |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6942 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6943 | if (Ptr.getNode()->hasOneUse()) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6944 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6945 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6946 | for (SDNode::use_iterator I = Ptr.getNode()->use_begin(), |
| 6947 | E = Ptr.getNode()->use_end(); I != E; ++I) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6948 | SDNode *Op = *I; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6949 | if (Op == N || |
| 6950 | (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)) |
| 6951 | continue; |
| 6952 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6953 | SDValue BasePtr; |
| 6954 | SDValue Offset; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6955 | ISD::MemIndexedMode AM = ISD::UNINDEXED; |
| 6956 | if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) { |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6957 | // Don't create a indexed load / store with zero offset. |
| 6958 | if (isa<ConstantSDNode>(Offset) && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 6959 | cast<ConstantSDNode>(Offset)->isNullValue()) |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6960 | continue; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6961 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6962 | // Try turning it into a post-indexed load / store except when |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6963 | // 1) All uses are load / store ops that use it as base ptr (and |
| 6964 | // it may be folded as addressing mmode). |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6965 | // 2) Op must be independent of N, i.e. Op is neither a predecessor |
| 6966 | // nor a successor of N. Otherwise, if Op is folded that would |
| 6967 | // create a cycle. |
| 6968 | |
Evan Cheng | caab129 | 2009-05-06 18:25:01 +0000 | [diff] [blame] | 6969 | if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) |
| 6970 | continue; |
| 6971 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6972 | // Check for #1. |
| 6973 | bool TryNext = false; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6974 | for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(), |
| 6975 | EE = BasePtr.getNode()->use_end(); II != EE; ++II) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6976 | SDNode *Use = *II; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6977 | if (Use == Ptr.getNode()) |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6978 | continue; |
| 6979 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6980 | // If all the uses are load / store addresses, then don't do the |
| 6981 | // transformation. |
| 6982 | if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){ |
| 6983 | bool RealUse = false; |
| 6984 | for (SDNode::use_iterator III = Use->use_begin(), |
| 6985 | EEE = Use->use_end(); III != EEE; ++III) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6986 | SDNode *UseUse = *III; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6987 | if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI)) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6988 | RealUse = true; |
| 6989 | } |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6990 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6991 | if (!RealUse) { |
| 6992 | TryNext = true; |
| 6993 | break; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6994 | } |
| 6995 | } |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6996 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6997 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6998 | if (TryNext) |
| 6999 | continue; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7000 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7001 | // Check for #2 |
Evan Cheng | 917be68 | 2008-03-04 00:41:45 +0000 | [diff] [blame] | 7002 | if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7003 | SDValue Result = isLoad |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7004 | ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(), |
| 7005 | BasePtr, Offset, AM) |
| 7006 | : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(), |
| 7007 | BasePtr, Offset, AM); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7008 | ++PostIndexedNodes; |
| 7009 | ++NodesCombined; |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7010 | DEBUG(dbgs() << "\nReplacing.5 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7011 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7012 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7013 | Result.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7014 | dbgs() << '\n'); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 7015 | WorkListRemover DeadNodes(*this); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7016 | if (isLoad) { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7017 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); |
| 7018 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7019 | } else { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7020 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7021 | } |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7022 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7023 | // Finally, since the node is now dead, remove it from the graph. |
| 7024 | DAG.DeleteNode(N); |
| 7025 | |
| 7026 | // Replace the uses of Use with uses of the updated base value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7027 | DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0), |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7028 | Result.getValue(isLoad ? 1 : 0)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7029 | removeFromWorkList(Op); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7030 | DAG.DeleteNode(Op); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7031 | return true; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7032 | } |
| 7033 | } |
| 7034 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7035 | |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7036 | return false; |
| 7037 | } |
| 7038 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7039 | SDValue DAGCombiner::visitLOAD(SDNode *N) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 7040 | LoadSDNode *LD = cast<LoadSDNode>(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7041 | SDValue Chain = LD->getChain(); |
| 7042 | SDValue Ptr = LD->getBasePtr(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7043 | |
Evan Cheng | 45a7ca9 | 2007-05-01 00:38:21 +0000 | [diff] [blame] | 7044 | // If load is not volatile and there are no uses of the loaded value (and |
| 7045 | // the updated indexed value in case of indexed loads), change uses of the |
| 7046 | // chain value into uses of the chain input (i.e. delete the dead load). |
| 7047 | if (!LD->isVolatile()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7048 | if (N->getValueType(1) == MVT::Other) { |
Evan Cheng | 498f559 | 2007-05-01 08:53:39 +0000 | [diff] [blame] | 7049 | // Unindexed loads. |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 7050 | if (!N->hasAnyUseOfValue(0)) { |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7051 | // It's not safe to use the two value CombineTo variant here. e.g. |
| 7052 | // v1, chain2 = load chain1, loc |
| 7053 | // v2, chain3 = load chain2, loc |
| 7054 | // v3 = add v2, c |
Chris Lattner | 125991a | 2008-01-24 07:57:06 +0000 | [diff] [blame] | 7055 | // Now we replace use of chain2 with chain1. This makes the second load |
| 7056 | // isomorphic to the one we are deleting, and thus makes this load live. |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7057 | DEBUG(dbgs() << "\nReplacing.6 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7058 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7059 | dbgs() << "\nWith chain: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7060 | Chain.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7061 | dbgs() << "\n"); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 7062 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7063 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain); |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7064 | |
Chris Lattner | 125991a | 2008-01-24 07:57:06 +0000 | [diff] [blame] | 7065 | if (N->use_empty()) { |
| 7066 | removeFromWorkList(N); |
| 7067 | DAG.DeleteNode(N); |
| 7068 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7069 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7070 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7071 | } |
Evan Cheng | 498f559 | 2007-05-01 08:53:39 +0000 | [diff] [blame] | 7072 | } else { |
| 7073 | // Indexed loads. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7074 | assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?"); |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 7075 | if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 7076 | SDValue Undef = DAG.getUNDEF(N->getValueType(0)); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 7077 | DEBUG(dbgs() << "\nReplacing.7 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7078 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7079 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7080 | Undef.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7081 | dbgs() << " and 2 other values\n"); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 7082 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7083 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7084 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7085 | DAG.getUNDEF(N->getValueType(1))); |
| 7086 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain); |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7087 | removeFromWorkList(N); |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7088 | DAG.DeleteNode(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7089 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 45a7ca9 | 2007-05-01 00:38:21 +0000 | [diff] [blame] | 7090 | } |
Evan Cheng | 45a7ca9 | 2007-05-01 00:38:21 +0000 | [diff] [blame] | 7091 | } |
| 7092 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7093 | |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 7094 | // If this load is directly stored, replace the load value with the stored |
| 7095 | // value. |
| 7096 | // TODO: Handle store large -> read small portion. |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7097 | // TODO: Handle TRUNCSTORE/LOADEXT |
Evan Cheng | 9ef82ce | 2011-03-11 00:48:56 +0000 | [diff] [blame] | 7098 | if (ISD::isNormalLoad(N) && !LD->isVolatile()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7099 | if (ISD::isNON_TRUNCStore(Chain.getNode())) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7100 | StoreSDNode *PrevST = cast<StoreSDNode>(Chain); |
| 7101 | if (PrevST->getBasePtr() == Ptr && |
| 7102 | PrevST->getValue().getValueType() == N->getValueType(0)) |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7103 | return CombineTo(N, Chain.getOperand(1), Chain); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7104 | } |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7105 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7106 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 7107 | // Try to infer better alignment information than the load already has. |
| 7108 | if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) { |
Evan Cheng | ed1c0c7 | 2011-11-28 22:37:34 +0000 | [diff] [blame] | 7109 | if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { |
| 7110 | if (Align > LD->getAlignment()) |
| 7111 | return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(), |
| 7112 | LD->getValueType(0), |
| 7113 | Chain, Ptr, LD->getPointerInfo(), |
| 7114 | LD->getMemoryVT(), |
| 7115 | LD->isVolatile(), LD->isNonTemporal(), Align); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 7116 | } |
| 7117 | } |
| 7118 | |
Jim Laskey | 7ca56af | 2006-10-11 13:47:09 +0000 | [diff] [blame] | 7119 | if (CombinerAA) { |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7120 | // Walk up chain skipping non-aliasing memory nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7121 | SDValue BetterChain = FindBetterChain(N, Chain); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7122 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 7123 | // If there is a better chain. |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7124 | if (Chain != BetterChain) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7125 | SDValue ReplLoad; |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7126 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7127 | // Replace the chain to void dependency. |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7128 | if (LD->getExtensionType() == ISD::NON_EXTLOAD) { |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7129 | ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7130 | BetterChain, Ptr, LD->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7131 | LD->isVolatile(), LD->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 7132 | LD->isInvariant(), LD->getAlignment()); |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7133 | } else { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 7134 | ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(), |
| 7135 | LD->getValueType(0), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7136 | BetterChain, Ptr, LD->getPointerInfo(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 7137 | LD->getMemoryVT(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7138 | LD->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7139 | LD->isNonTemporal(), |
Christopher Lamb | 95c218a | 2007-04-22 23:15:30 +0000 | [diff] [blame] | 7140 | LD->getAlignment()); |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7141 | } |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7142 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 7143 | // Create token factor to keep old chain connected. |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7144 | SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7145 | MVT::Other, Chain, ReplLoad.getValue(1)); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7146 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 7147 | // Make sure the new and old chains are cleaned up. |
| 7148 | AddToWorkList(Token.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7149 | |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 7150 | // Replace uses with load result and token factor. Don't add users |
| 7151 | // to work list. |
| 7152 | return CombineTo(N, ReplLoad.getValue(0), Token, false); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7153 | } |
| 7154 | } |
| 7155 | |
Evan Cheng | 7fc033a | 2006-11-03 03:06:21 +0000 | [diff] [blame] | 7156 | // Try transforming N to an indexed load. |
Evan Cheng | bbd6f6e | 2006-11-07 09:03:05 +0000 | [diff] [blame] | 7157 | if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7158 | return SDValue(N, 0); |
Evan Cheng | 7fc033a | 2006-11-03 03:06:21 +0000 | [diff] [blame] | 7159 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7160 | return SDValue(); |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 7161 | } |
| 7162 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7163 | /// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the |
| 7164 | /// load is having specific bytes cleared out. If so, return the byte size |
| 7165 | /// being masked out and the shift amount. |
| 7166 | static std::pair<unsigned, unsigned> |
| 7167 | CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) { |
| 7168 | std::pair<unsigned, unsigned> Result(0, 0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7169 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7170 | // Check for the structure we're looking for. |
| 7171 | if (V->getOpcode() != ISD::AND || |
| 7172 | !isa<ConstantSDNode>(V->getOperand(1)) || |
| 7173 | !ISD::isNormalLoad(V->getOperand(0).getNode())) |
| 7174 | return Result; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7175 | |
Chris Lattner | e698758 | 2010-04-15 06:10:49 +0000 | [diff] [blame] | 7176 | // Check the chain and pointer. |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7177 | LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0)); |
Chris Lattner | e698758 | 2010-04-15 06:10:49 +0000 | [diff] [blame] | 7178 | if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7179 | |
Chris Lattner | e698758 | 2010-04-15 06:10:49 +0000 | [diff] [blame] | 7180 | // The store should be chained directly to the load or be an operand of a |
| 7181 | // tokenfactor. |
| 7182 | if (LD == Chain.getNode()) |
| 7183 | ; // ok. |
| 7184 | else if (Chain->getOpcode() != ISD::TokenFactor) |
| 7185 | return Result; // Fail. |
| 7186 | else { |
| 7187 | bool isOk = false; |
| 7188 | for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i) |
| 7189 | if (Chain->getOperand(i).getNode() == LD) { |
| 7190 | isOk = true; |
| 7191 | break; |
| 7192 | } |
| 7193 | if (!isOk) return Result; |
| 7194 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7195 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7196 | // This only handles simple types. |
| 7197 | if (V.getValueType() != MVT::i16 && |
| 7198 | V.getValueType() != MVT::i32 && |
| 7199 | V.getValueType() != MVT::i64) |
| 7200 | return Result; |
| 7201 | |
| 7202 | // Check the constant mask. Invert it so that the bits being masked out are |
| 7203 | // 0 and the bits being kept are 1. Use getSExtValue so that leading bits |
| 7204 | // follow the sign bit for uniformity. |
| 7205 | uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); |
| 7206 | unsigned NotMaskLZ = CountLeadingZeros_64(NotMask); |
| 7207 | if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. |
| 7208 | unsigned NotMaskTZ = CountTrailingZeros_64(NotMask); |
| 7209 | if (NotMaskTZ & 7) return Result; // Must be multiple of a byte. |
| 7210 | if (NotMaskLZ == 64) return Result; // All zero mask. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7211 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7212 | // See if we have a continuous run of bits. If so, we have 0*1+0* |
| 7213 | if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64) |
| 7214 | return Result; |
| 7215 | |
| 7216 | // Adjust NotMaskLZ down to be from the actual size of the int instead of i64. |
| 7217 | if (V.getValueType() != MVT::i64 && NotMaskLZ) |
| 7218 | NotMaskLZ -= 64-V.getValueSizeInBits(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7219 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7220 | unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; |
| 7221 | switch (MaskedBytes) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7222 | case 1: |
| 7223 | case 2: |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7224 | case 4: break; |
| 7225 | default: return Result; // All one mask, or 5-byte mask. |
| 7226 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7227 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7228 | // Verify that the first bit starts at a multiple of mask so that the access |
| 7229 | // is aligned the same as the access width. |
| 7230 | if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7231 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7232 | Result.first = MaskedBytes; |
| 7233 | Result.second = NotMaskTZ/8; |
| 7234 | return Result; |
| 7235 | } |
| 7236 | |
| 7237 | |
| 7238 | /// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that |
| 7239 | /// provides a value as specified by MaskInfo. If so, replace the specified |
| 7240 | /// store with a narrower store of truncated IVal. |
| 7241 | static SDNode * |
| 7242 | ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo, |
| 7243 | SDValue IVal, StoreSDNode *St, |
| 7244 | DAGCombiner *DC) { |
| 7245 | unsigned NumBytes = MaskInfo.first; |
| 7246 | unsigned ByteShift = MaskInfo.second; |
| 7247 | SelectionDAG &DAG = DC->getDAG(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7248 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7249 | // Check to see if IVal is all zeros in the part being masked in by the 'or' |
| 7250 | // that uses this. If not, this is not a replacement. |
| 7251 | APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), |
| 7252 | ByteShift*8, (ByteShift+NumBytes)*8); |
| 7253 | if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7254 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7255 | // Check that it is legal on the target to do this. It is legal if the new |
| 7256 | // VT we're shrinking to (i8/i16/i32) is legal or we're still before type |
| 7257 | // legalization. |
| 7258 | MVT VT = MVT::getIntegerVT(NumBytes*8); |
| 7259 | if (!DC->isTypeLegal(VT)) |
| 7260 | return 0; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7261 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7262 | // Okay, we can do this! Replace the 'St' store with a store of IVal that is |
| 7263 | // shifted by ByteShift and truncated down to NumBytes. |
| 7264 | if (ByteShift) |
| 7265 | IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 7266 | DAG.getConstant(ByteShift*8, |
| 7267 | DC->getShiftAmountTy(IVal.getValueType()))); |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7268 | |
| 7269 | // Figure out the offset for the store and the alignment of the access. |
| 7270 | unsigned StOffset; |
| 7271 | unsigned NewAlign = St->getAlignment(); |
| 7272 | |
| 7273 | if (DAG.getTargetLoweringInfo().isLittleEndian()) |
| 7274 | StOffset = ByteShift; |
| 7275 | else |
| 7276 | StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7277 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7278 | SDValue Ptr = St->getBasePtr(); |
| 7279 | if (StOffset) { |
| 7280 | Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(), |
| 7281 | Ptr, DAG.getConstant(StOffset, Ptr.getValueType())); |
| 7282 | NewAlign = MinAlign(NewAlign, StOffset); |
| 7283 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7284 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7285 | // Truncate down to the new size. |
| 7286 | IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7287 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7288 | ++OpsNarrowed; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7289 | return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7290 | St->getPointerInfo().getWithOffset(StOffset), |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7291 | false, false, NewAlign).getNode(); |
| 7292 | } |
| 7293 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7294 | |
| 7295 | /// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is |
| 7296 | /// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some |
| 7297 | /// of the loaded bits, try narrowing the load and store if it would end up |
| 7298 | /// being a win for performance or code size. |
| 7299 | SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) { |
| 7300 | StoreSDNode *ST = cast<StoreSDNode>(N); |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7301 | if (ST->isVolatile()) |
| 7302 | return SDValue(); |
| 7303 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7304 | SDValue Chain = ST->getChain(); |
| 7305 | SDValue Value = ST->getValue(); |
| 7306 | SDValue Ptr = ST->getBasePtr(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7307 | EVT VT = Value.getValueType(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7308 | |
| 7309 | if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse()) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7310 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7311 | |
| 7312 | unsigned Opc = Value.getOpcode(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7313 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7314 | // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst |
| 7315 | // is a byte mask indicating a consecutive number of bytes, check to see if |
| 7316 | // Y is known to provide just those bytes. If so, we try to replace the |
| 7317 | // load + replace + store sequence with a single (narrower) store, which makes |
| 7318 | // the load dead. |
| 7319 | if (Opc == ISD::OR) { |
| 7320 | std::pair<unsigned, unsigned> MaskedLoad; |
| 7321 | MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain); |
| 7322 | if (MaskedLoad.first) |
| 7323 | if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, |
| 7324 | Value.getOperand(1), ST,this)) |
| 7325 | return SDValue(NewST, 0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7326 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7327 | // Or is commutative, so try swapping X and Y. |
| 7328 | MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain); |
| 7329 | if (MaskedLoad.first) |
| 7330 | if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, |
| 7331 | Value.getOperand(0), ST,this)) |
| 7332 | return SDValue(NewST, 0); |
| 7333 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7334 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7335 | if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) || |
| 7336 | Value.getOperand(1).getOpcode() != ISD::Constant) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7337 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7338 | |
| 7339 | SDValue N0 = Value.getOperand(0); |
Dan Gohman | 24bde5b | 2010-09-02 21:18:42 +0000 | [diff] [blame] | 7340 | if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && |
| 7341 | Chain == SDValue(N0.getNode(), 1)) { |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7342 | LoadSDNode *LD = cast<LoadSDNode>(N0); |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7343 | if (LD->getBasePtr() != Ptr || |
| 7344 | LD->getPointerInfo().getAddrSpace() != |
| 7345 | ST->getPointerInfo().getAddrSpace()) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7346 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7347 | |
| 7348 | // Find the type to narrow it the load / op / store to. |
| 7349 | SDValue N1 = Value.getOperand(1); |
| 7350 | unsigned BitWidth = N1.getValueSizeInBits(); |
| 7351 | APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue(); |
| 7352 | if (Opc == ISD::AND) |
| 7353 | Imm ^= APInt::getAllOnesValue(BitWidth); |
Evan Cheng | d3c76bb | 2009-05-28 23:52:18 +0000 | [diff] [blame] | 7354 | if (Imm == 0 || Imm.isAllOnesValue()) |
| 7355 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7356 | unsigned ShAmt = Imm.countTrailingZeros(); |
| 7357 | unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1; |
| 7358 | unsigned NewBW = NextPowerOf2(MSB - ShAmt); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 7359 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7360 | while (NewBW < BitWidth && |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7361 | !(TLI.isOperationLegalOrCustom(Opc, NewVT) && |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7362 | TLI.isNarrowingProfitable(VT, NewVT))) { |
| 7363 | NewBW = NextPowerOf2(NewBW); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 7364 | NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7365 | } |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7366 | if (NewBW >= BitWidth) |
| 7367 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7368 | |
| 7369 | // If the lsb changed does not start at the type bitwidth boundary, |
| 7370 | // start at the previous one. |
| 7371 | if (ShAmt % NewBW) |
| 7372 | ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW; |
| 7373 | APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW); |
| 7374 | if ((Imm & Mask) == Imm) { |
| 7375 | APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW); |
| 7376 | if (Opc == ISD::AND) |
| 7377 | NewImm ^= APInt::getAllOnesValue(NewBW); |
| 7378 | uint64_t PtrOff = ShAmt / 8; |
| 7379 | // For big endian targets, we need to adjust the offset to the pointer to |
| 7380 | // load the correct bytes. |
| 7381 | if (TLI.isBigEndian()) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7382 | PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff; |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7383 | |
| 7384 | unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 7385 | Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext()); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 7386 | if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy)) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7387 | return SDValue(); |
| 7388 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7389 | SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(), |
| 7390 | Ptr.getValueType(), Ptr, |
| 7391 | DAG.getConstant(PtrOff, Ptr.getValueType())); |
| 7392 | SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(), |
| 7393 | LD->getChain(), NewPtr, |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7394 | LD->getPointerInfo().getWithOffset(PtrOff), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7395 | LD->isVolatile(), LD->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 7396 | LD->isInvariant(), NewAlign); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7397 | SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD, |
| 7398 | DAG.getConstant(NewImm, NewVT)); |
| 7399 | SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(), |
| 7400 | NewVal, NewPtr, |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7401 | ST->getPointerInfo().getWithOffset(PtrOff), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7402 | false, false, NewAlign); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7403 | |
| 7404 | AddToWorkList(NewPtr.getNode()); |
| 7405 | AddToWorkList(NewLD.getNode()); |
| 7406 | AddToWorkList(NewVal.getNode()); |
| 7407 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7408 | DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1)); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7409 | ++OpsNarrowed; |
| 7410 | return NewST; |
| 7411 | } |
| 7412 | } |
| 7413 | |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7414 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7415 | } |
| 7416 | |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7417 | /// TransformFPLoadStorePair - For a given floating point load / store pair, |
| 7418 | /// if the load value isn't used by any other operations, then consider |
| 7419 | /// transforming the pair to integer load / store operations if the target |
| 7420 | /// deems the transformation profitable. |
| 7421 | SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) { |
| 7422 | StoreSDNode *ST = cast<StoreSDNode>(N); |
| 7423 | SDValue Chain = ST->getChain(); |
| 7424 | SDValue Value = ST->getValue(); |
| 7425 | if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) && |
| 7426 | Value.hasOneUse() && |
| 7427 | Chain == SDValue(Value.getNode(), 1)) { |
| 7428 | LoadSDNode *LD = cast<LoadSDNode>(Value); |
| 7429 | EVT VT = LD->getMemoryVT(); |
| 7430 | if (!VT.isFloatingPoint() || |
| 7431 | VT != ST->getMemoryVT() || |
| 7432 | LD->isNonTemporal() || |
| 7433 | ST->isNonTemporal() || |
| 7434 | LD->getPointerInfo().getAddrSpace() != 0 || |
| 7435 | ST->getPointerInfo().getAddrSpace() != 0) |
| 7436 | return SDValue(); |
| 7437 | |
| 7438 | EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); |
| 7439 | if (!TLI.isOperationLegal(ISD::LOAD, IntVT) || |
| 7440 | !TLI.isOperationLegal(ISD::STORE, IntVT) || |
| 7441 | !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) || |
| 7442 | !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT)) |
| 7443 | return SDValue(); |
| 7444 | |
| 7445 | unsigned LDAlign = LD->getAlignment(); |
| 7446 | unsigned STAlign = ST->getAlignment(); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 7447 | Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext()); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 7448 | unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7449 | if (LDAlign < ABIAlign || STAlign < ABIAlign) |
| 7450 | return SDValue(); |
| 7451 | |
| 7452 | SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(), |
| 7453 | LD->getChain(), LD->getBasePtr(), |
| 7454 | LD->getPointerInfo(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 7455 | false, false, false, LDAlign); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7456 | |
| 7457 | SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(), |
| 7458 | NewLD, ST->getBasePtr(), |
| 7459 | ST->getPointerInfo(), |
| 7460 | false, false, STAlign); |
| 7461 | |
| 7462 | AddToWorkList(NewLD.getNode()); |
| 7463 | AddToWorkList(NewST.getNode()); |
| 7464 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7465 | DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1)); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7466 | ++LdStFP2Int; |
| 7467 | return NewST; |
| 7468 | } |
| 7469 | |
| 7470 | return SDValue(); |
| 7471 | } |
| 7472 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7473 | /// Returns the base pointer and an integer offset from that object. |
| 7474 | static std::pair<SDValue, int64_t> GetPointerBaseAndOffset(SDValue Ptr) { |
| 7475 | if (Ptr->getOpcode() == ISD::ADD && isa<ConstantSDNode>(Ptr->getOperand(1))) { |
| 7476 | int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue(); |
| 7477 | SDValue Base = Ptr->getOperand(0); |
| 7478 | return std::make_pair(Base, Offset); |
| 7479 | } |
| 7480 | |
| 7481 | return std::make_pair(Ptr, 0); |
| 7482 | } |
| 7483 | |
| 7484 | /// Holds a pointer to an LSBaseSDNode as well as information on where it |
| 7485 | /// is located in a sequence of memory operations connected by a chain. |
| 7486 | struct MemOpLink { |
| 7487 | MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq): |
| 7488 | MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { } |
| 7489 | // Ptr to the mem node. |
| 7490 | LSBaseSDNode *MemNode; |
| 7491 | // Offset from the base ptr. |
| 7492 | int64_t OffsetFromBase; |
| 7493 | // What is the sequence number of this mem node. |
| 7494 | // Lowest mem operand in the DAG starts at zero. |
| 7495 | unsigned SequenceNum; |
| 7496 | }; |
| 7497 | |
| 7498 | /// Sorts store nodes in a link according to their offset from a shared |
| 7499 | // base ptr. |
| 7500 | struct ConsecutiveMemoryChainSorter { |
| 7501 | bool operator()(MemOpLink LHS, MemOpLink RHS) { |
| 7502 | return LHS.OffsetFromBase < RHS.OffsetFromBase; |
| 7503 | } |
| 7504 | }; |
| 7505 | |
| 7506 | bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) { |
| 7507 | EVT MemVT = St->getMemoryVT(); |
| 7508 | int64_t ElementSizeBytes = MemVT.getSizeInBits()/8; |
| 7509 | |
| 7510 | // Don't merge vectors into wider inputs. |
| 7511 | if (MemVT.isVector() || !MemVT.isSimple()) |
| 7512 | return false; |
| 7513 | |
| 7514 | // Perform an early exit check. Do not bother looking at stored values that |
| 7515 | // are not constants or loads. |
| 7516 | SDValue StoredVal = St->getValue(); |
| 7517 | bool IsLoadSrc = isa<LoadSDNode>(StoredVal); |
| 7518 | if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) && |
| 7519 | !IsLoadSrc) |
| 7520 | return false; |
| 7521 | |
| 7522 | // Only look at ends of store sequences. |
| 7523 | SDValue Chain = SDValue(St, 1); |
| 7524 | if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE) |
| 7525 | return false; |
| 7526 | |
| 7527 | // This holds the base pointer and the offset in bytes from the base pointer. |
| 7528 | std::pair<SDValue, int64_t> BasePtr = |
| 7529 | GetPointerBaseAndOffset(St->getBasePtr()); |
| 7530 | |
| 7531 | // We must have a base and an offset. |
| 7532 | if (!BasePtr.first.getNode()) |
| 7533 | return false; |
| 7534 | |
| 7535 | // Do not handle stores to undef base pointers. |
| 7536 | if (BasePtr.first.getOpcode() == ISD::UNDEF) |
| 7537 | return false; |
| 7538 | |
| 7539 | SmallVector<MemOpLink, 8> StoreNodes; |
| 7540 | // Walk up the chain and look for nodes with offsets from the same |
| 7541 | // base pointer. Stop when reaching an instruction with a different kind |
| 7542 | // or instruction which has a different base pointer. |
| 7543 | unsigned Seq = 0; |
| 7544 | StoreSDNode *Index = St; |
| 7545 | while (Index) { |
| 7546 | // If the chain has more than one use, then we can't reorder the mem ops. |
| 7547 | if (Index != St && !SDValue(Index, 1)->hasOneUse()) |
| 7548 | break; |
| 7549 | |
| 7550 | // Find the base pointer and offset for this memory node. |
| 7551 | std::pair<SDValue, int64_t> Ptr = |
| 7552 | GetPointerBaseAndOffset(Index->getBasePtr()); |
| 7553 | |
| 7554 | // Check that the base pointer is the same as the original one. |
| 7555 | if (Ptr.first.getNode() != BasePtr.first.getNode()) |
| 7556 | break; |
| 7557 | |
| 7558 | // Check that the alignment is the same. |
| 7559 | if (Index->getAlignment() != St->getAlignment()) |
| 7560 | break; |
| 7561 | |
| 7562 | // The memory operands must not be volatile. |
| 7563 | if (Index->isVolatile() || Index->isIndexed()) |
| 7564 | break; |
| 7565 | |
| 7566 | // No truncation. |
| 7567 | if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index)) |
| 7568 | if (St->isTruncatingStore()) |
| 7569 | break; |
| 7570 | |
| 7571 | // The stored memory type must be the same. |
| 7572 | if (Index->getMemoryVT() != MemVT) |
| 7573 | break; |
| 7574 | |
| 7575 | // We do not allow unaligned stores because we want to prevent overriding |
| 7576 | // stores. |
| 7577 | if (Index->getAlignment()*8 != MemVT.getSizeInBits()) |
| 7578 | break; |
| 7579 | |
| 7580 | // We found a potential memory operand to merge. |
| 7581 | StoreNodes.push_back(MemOpLink(Index, Ptr.second, Seq++)); |
| 7582 | |
| 7583 | // Move up the chain to the next memory operation. |
| 7584 | Index = dyn_cast<StoreSDNode>(Index->getChain().getNode()); |
| 7585 | } |
| 7586 | |
| 7587 | // Check if there is anything to merge. |
| 7588 | if (StoreNodes.size() < 2) |
| 7589 | return false; |
| 7590 | |
| 7591 | // Sort the memory operands according to their distance from the base pointer. |
| 7592 | std::sort(StoreNodes.begin(), StoreNodes.end(), |
| 7593 | ConsecutiveMemoryChainSorter()); |
| 7594 | |
| 7595 | // Scan the memory operations on the chain and find the first non-consecutive |
| 7596 | // store memory address. |
| 7597 | unsigned LastConsecutiveStore = 0; |
| 7598 | int64_t StartAddress = StoreNodes[0].OffsetFromBase; |
| 7599 | for (unsigned i=1; i<StoreNodes.size(); ++i) { |
| 7600 | int64_t CurrAddress = StoreNodes[i].OffsetFromBase; |
| 7601 | if (CurrAddress - StartAddress != (ElementSizeBytes * i)) |
| 7602 | break; |
| 7603 | |
| 7604 | // Mark this node as useful. |
| 7605 | LastConsecutiveStore = i; |
| 7606 | } |
| 7607 | |
| 7608 | // The node with the lowest store address. |
| 7609 | LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; |
| 7610 | |
| 7611 | // Store the constants into memory as one consecutive store. |
| 7612 | if (!IsLoadSrc) { |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7613 | unsigned LastLegalType = 0; |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7614 | unsigned LastLegalVectorType = 0; |
| 7615 | bool NonZero = false; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7616 | for (unsigned i=0; i<LastConsecutiveStore+1; ++i) { |
| 7617 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7618 | SDValue StoredVal = St->getValue(); |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7619 | |
| 7620 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) { |
Benjamin Kramer | ebd7eab | 2012-10-05 18:19:44 +0000 | [diff] [blame] | 7621 | NonZero |= !C->isNullValue(); |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7622 | } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) { |
Benjamin Kramer | ebd7eab | 2012-10-05 18:19:44 +0000 | [diff] [blame] | 7623 | NonZero |= !C->getConstantFPValue()->isNullValue(); |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7624 | } else { |
| 7625 | // Non constant. |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7626 | break; |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7627 | } |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7628 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7629 | // Find a legal type for the constant store. |
| 7630 | unsigned StoreBW = (i+1) * ElementSizeBytes * 8; |
| 7631 | EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7632 | if (TLI.isTypeLegal(StoreTy)) |
| 7633 | LastLegalType = i+1; |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7634 | |
| 7635 | // Find a legal type for the vector store. |
| 7636 | EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1); |
| 7637 | if (TLI.isTypeLegal(Ty)) |
| 7638 | LastLegalVectorType = i + 1; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7639 | } |
| 7640 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7641 | // We only use vectors if the constant is known to be zero. |
| 7642 | if (NonZero) |
| 7643 | LastLegalVectorType = 0; |
| 7644 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7645 | // Check if we found a legal integer type to store. |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7646 | if (LastLegalType == 0 && LastLegalVectorType == 0) |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7647 | return false; |
| 7648 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7649 | bool UseVector = LastLegalVectorType > LastLegalType; |
| 7650 | unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType; |
| 7651 | |
| 7652 | // Make sure we have something to merge. |
| 7653 | if (NumElem < 2) |
| 7654 | return false; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7655 | |
| 7656 | unsigned EarliestNodeUsed = 0; |
| 7657 | for (unsigned i=0; i < NumElem; ++i) { |
| 7658 | // Find a chain for the new wide-store operand. Notice that some |
| 7659 | // of the store nodes that we found may not be selected for inclusion |
| 7660 | // in the wide store. The chain we use needs to be the chain of the |
| 7661 | // earliest store node which is *used* and replaced by the wide store. |
| 7662 | if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum) |
| 7663 | EarliestNodeUsed = i; |
| 7664 | } |
| 7665 | |
| 7666 | // The earliest Node in the DAG. |
| 7667 | LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7668 | DebugLoc DL = StoreNodes[0].MemNode->getDebugLoc(); |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7669 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7670 | SDValue StoredVal; |
| 7671 | if (UseVector) { |
| 7672 | // Find a legal type for the vector store. |
| 7673 | EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem); |
| 7674 | assert(TLI.isTypeLegal(Ty) && "Illegal vector store"); |
| 7675 | StoredVal = DAG.getConstant(0, Ty); |
| 7676 | } else { |
| 7677 | unsigned StoreBW = NumElem * ElementSizeBytes * 8; |
| 7678 | APInt StoreInt(StoreBW, 0); |
| 7679 | |
| 7680 | // Construct a single integer constant which is made of the smaller |
| 7681 | // constant inputs. |
| 7682 | bool IsLE = TLI.isLittleEndian(); |
| 7683 | for (unsigned i = 0; i < NumElem ; ++i) { |
| 7684 | unsigned Idx = IsLE ?(NumElem - 1 - i) : i; |
| 7685 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode); |
| 7686 | SDValue Val = St->getValue(); |
| 7687 | StoreInt<<=ElementSizeBytes*8; |
| 7688 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) { |
| 7689 | StoreInt|=C->getAPIntValue().zext(StoreBW); |
| 7690 | } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) { |
| 7691 | StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW); |
| 7692 | } else { |
| 7693 | assert(false && "Invalid constant element type"); |
| 7694 | } |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7695 | } |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7696 | |
| 7697 | // Create the new Load and Store operations. |
| 7698 | EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7699 | StoredVal = DAG.getConstant(StoreInt, StoreTy); |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7700 | } |
| 7701 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7702 | SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal, |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7703 | FirstInChain->getBasePtr(), |
| 7704 | FirstInChain->getPointerInfo(), |
| 7705 | false, false, |
| 7706 | FirstInChain->getAlignment()); |
| 7707 | |
| 7708 | // Replace the first store with the new store |
| 7709 | CombineTo(EarliestOp, NewStore); |
| 7710 | // Erase all other stores. |
| 7711 | for (unsigned i = 0; i < NumElem ; ++i) { |
| 7712 | if (StoreNodes[i].MemNode == EarliestOp) |
| 7713 | continue; |
| 7714 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7715 | DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain()); |
| 7716 | removeFromWorkList(St); |
| 7717 | DAG.DeleteNode(St); |
| 7718 | } |
| 7719 | |
| 7720 | return true; |
| 7721 | } |
| 7722 | |
| 7723 | // Below we handle the case of multiple consecutive stores that |
| 7724 | // come from multiple consecutive loads. We merge them into a single |
| 7725 | // wide load and a single wide store. |
| 7726 | |
| 7727 | // Look for load nodes which are used by the stored values. |
| 7728 | SmallVector<MemOpLink, 8> LoadNodes; |
| 7729 | |
| 7730 | // Find acceptable loads. Loads need to have the same chain (token factor), |
| 7731 | // must not be zext, volatile, indexed, and they must be consecutive. |
| 7732 | SDValue LdBasePtr; |
| 7733 | for (unsigned i=0; i<LastConsecutiveStore+1; ++i) { |
| 7734 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7735 | LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue()); |
| 7736 | if (!Ld) break; |
| 7737 | |
| 7738 | // Loads must only have one use. |
| 7739 | if (!Ld->hasNUsesOfValue(1, 0)) |
| 7740 | break; |
| 7741 | |
| 7742 | // Check that the alignment is the same as the stores. |
| 7743 | if (Ld->getAlignment() != St->getAlignment()) |
| 7744 | break; |
| 7745 | |
| 7746 | // The memory operands must not be volatile. |
| 7747 | if (Ld->isVolatile() || Ld->isIndexed()) |
| 7748 | break; |
| 7749 | |
| 7750 | // We do not accept ext loads. |
| 7751 | if (Ld->getExtensionType() != ISD::NON_EXTLOAD) |
| 7752 | break; |
| 7753 | |
| 7754 | // The stored memory type must be the same. |
| 7755 | if (Ld->getMemoryVT() != MemVT) |
| 7756 | break; |
| 7757 | |
| 7758 | std::pair<SDValue, int64_t> LdPtr = |
| 7759 | GetPointerBaseAndOffset(Ld->getBasePtr()); |
| 7760 | |
| 7761 | // If this is not the first ptr that we check. |
| 7762 | if (LdBasePtr.getNode()) { |
| 7763 | // The base ptr must be the same. |
| 7764 | if (LdPtr.first != LdBasePtr) |
| 7765 | break; |
| 7766 | } else { |
| 7767 | // Check that all other base pointers are the same as this one. |
| 7768 | LdBasePtr = LdPtr.first; |
| 7769 | } |
| 7770 | |
| 7771 | // We found a potential memory operand to merge. |
| 7772 | LoadNodes.push_back(MemOpLink(Ld, LdPtr.second, 0)); |
| 7773 | } |
| 7774 | |
| 7775 | if (LoadNodes.size() < 2) |
| 7776 | return false; |
| 7777 | |
| 7778 | // Scan the memory operations on the chain and find the first non-consecutive |
| 7779 | // load memory address. These variables hold the index in the store node |
| 7780 | // array. |
| 7781 | unsigned LastConsecutiveLoad = 0; |
| 7782 | // This variable refers to the size and not index in the array. |
| 7783 | unsigned LastLegalVectorType = 0; |
| 7784 | unsigned LastLegalIntegerType = 0; |
| 7785 | StartAddress = LoadNodes[0].OffsetFromBase; |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7786 | SDValue FirstChain = LoadNodes[0].MemNode->getChain(); |
| 7787 | for (unsigned i = 1; i < LoadNodes.size(); ++i) { |
| 7788 | // All loads much share the same chain. |
| 7789 | if (LoadNodes[i].MemNode->getChain() != FirstChain) |
| 7790 | break; |
| 7791 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7792 | int64_t CurrAddress = LoadNodes[i].OffsetFromBase; |
| 7793 | if (CurrAddress - StartAddress != (ElementSizeBytes * i)) |
| 7794 | break; |
| 7795 | LastConsecutiveLoad = i; |
| 7796 | |
| 7797 | // Find a legal type for the vector store. |
| 7798 | EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1); |
| 7799 | if (TLI.isTypeLegal(StoreTy)) |
| 7800 | LastLegalVectorType = i + 1; |
| 7801 | |
| 7802 | // Find a legal type for the integer store. |
| 7803 | unsigned StoreBW = (i+1) * ElementSizeBytes * 8; |
| 7804 | StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7805 | if (TLI.isTypeLegal(StoreTy)) |
| 7806 | LastLegalIntegerType = i + 1; |
| 7807 | } |
| 7808 | |
| 7809 | // Only use vector types if the vector type is larger than the integer type. |
| 7810 | // If they are the same, use integers. |
| 7811 | bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType; |
| 7812 | unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType); |
| 7813 | |
| 7814 | // We add +1 here because the LastXXX variables refer to location while |
| 7815 | // the NumElem refers to array/index size. |
| 7816 | unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1; |
| 7817 | NumElem = std::min(LastLegalType, NumElem); |
| 7818 | |
| 7819 | if (NumElem < 2) |
| 7820 | return false; |
| 7821 | |
| 7822 | // The earliest Node in the DAG. |
| 7823 | unsigned EarliestNodeUsed = 0; |
| 7824 | LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode; |
| 7825 | for (unsigned i=1; i<NumElem; ++i) { |
| 7826 | // Find a chain for the new wide-store operand. Notice that some |
| 7827 | // of the store nodes that we found may not be selected for inclusion |
| 7828 | // in the wide store. The chain we use needs to be the chain of the |
| 7829 | // earliest store node which is *used* and replaced by the wide store. |
| 7830 | if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum) |
| 7831 | EarliestNodeUsed = i; |
| 7832 | } |
| 7833 | |
| 7834 | // Find if it is better to use vectors or integers to load and store |
| 7835 | // to memory. |
| 7836 | EVT JointMemOpVT; |
| 7837 | if (UseVectorTy) { |
| 7838 | JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem); |
| 7839 | } else { |
| 7840 | unsigned StoreBW = NumElem * ElementSizeBytes * 8; |
| 7841 | JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7842 | } |
| 7843 | |
| 7844 | DebugLoc LoadDL = LoadNodes[0].MemNode->getDebugLoc(); |
| 7845 | DebugLoc StoreDL = StoreNodes[0].MemNode->getDebugLoc(); |
| 7846 | |
| 7847 | LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode); |
| 7848 | SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL, |
| 7849 | FirstLoad->getChain(), |
| 7850 | FirstLoad->getBasePtr(), |
| 7851 | FirstLoad->getPointerInfo(), |
| 7852 | false, false, false, |
| 7853 | FirstLoad->getAlignment()); |
| 7854 | |
| 7855 | SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad, |
| 7856 | FirstInChain->getBasePtr(), |
| 7857 | FirstInChain->getPointerInfo(), false, false, |
| 7858 | FirstInChain->getAlignment()); |
| 7859 | |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7860 | // Replace one of the loads with the new load. |
| 7861 | LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode); |
| 7862 | DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), |
| 7863 | SDValue(NewLoad.getNode(), 1)); |
| 7864 | |
| 7865 | // Remove the rest of the load chains. |
| 7866 | for (unsigned i = 1; i < NumElem ; ++i) { |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7867 | // Replace all chain users of the old load nodes with the chain of the new |
| 7868 | // load node. |
| 7869 | LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode); |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7870 | DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain()); |
| 7871 | } |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7872 | |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7873 | // Replace the first store with the new store. |
| 7874 | CombineTo(EarliestOp, NewStore); |
| 7875 | // Erase all other stores. |
| 7876 | for (unsigned i = 0; i < NumElem ; ++i) { |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7877 | // Remove all Store nodes. |
| 7878 | if (StoreNodes[i].MemNode == EarliestOp) |
| 7879 | continue; |
| 7880 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7881 | DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain()); |
| 7882 | removeFromWorkList(St); |
| 7883 | DAG.DeleteNode(St); |
| 7884 | } |
| 7885 | |
| 7886 | return true; |
| 7887 | } |
| 7888 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7889 | SDValue DAGCombiner::visitSTORE(SDNode *N) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7890 | StoreSDNode *ST = cast<StoreSDNode>(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7891 | SDValue Chain = ST->getChain(); |
| 7892 | SDValue Value = ST->getValue(); |
| 7893 | SDValue Ptr = ST->getBasePtr(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7894 | |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 7895 | // If this is a store of a bit convert, store the input value if the |
Evan Cheng | 2c4f943 | 2007-05-09 21:49:47 +0000 | [diff] [blame] | 7896 | // resultant store does not need a higher alignment than the original. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7897 | if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() && |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 7898 | ST->isUnindexed()) { |
Dan Gohman | 1ba519b | 2009-02-20 23:29:13 +0000 | [diff] [blame] | 7899 | unsigned OrigAlign = ST->getAlignment(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7900 | EVT SVT = Value.getOperand(0).getValueType(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 7901 | unsigned Align = TLI.getDataLayout()-> |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 7902 | getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext())); |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 7903 | if (Align <= OrigAlign && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 7904 | ((!LegalOperations && !ST->isVolatile()) || |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 7905 | TLI.isOperationLegalOrCustom(ISD::STORE, SVT))) |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7906 | return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0), |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7907 | Ptr, ST->getPointerInfo(), ST->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7908 | ST->isNonTemporal(), OrigAlign); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7909 | } |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 7910 | |
Chris Lattner | b3452ea | 2011-04-09 02:32:02 +0000 | [diff] [blame] | 7911 | // Turn 'store undef, Ptr' -> nothing. |
| 7912 | if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed()) |
| 7913 | return Chain; |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 7914 | |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7915 | // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7916 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) { |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 7917 | // NOTE: If the original store is volatile, this transform must not increase |
| 7918 | // the number of stores. For example, on x86-32 an f64 can be stored in one |
| 7919 | // processor operation but an i64 (which is not legal) requires two. So the |
| 7920 | // transform should not be done in this case. |
Evan Cheng | 25ece66 | 2006-12-11 17:25:19 +0000 | [diff] [blame] | 7921 | if (Value.getOpcode() != ISD::TargetConstantFP) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7922 | SDValue Tmp; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7923 | switch (CFP->getValueType(0).getSimpleVT().SimpleTy) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 7924 | default: llvm_unreachable("Unknown FP type"); |
Pete Cooper | 438c040 | 2012-06-21 18:00:39 +0000 | [diff] [blame] | 7925 | case MVT::f16: // We don't do this for these yet. |
| 7926 | case MVT::f80: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7927 | case MVT::f128: |
| 7928 | case MVT::ppcf128: |
Dale Johannesen | c7b21d5 | 2007-09-18 18:36:59 +0000 | [diff] [blame] | 7929 | break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7930 | case MVT::f32: |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7931 | if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7932 | TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 7933 | Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF(). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7934 | bitcastToAPInt().getZExtValue(), MVT::i32); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7935 | return DAG.getStore(Chain, N->getDebugLoc(), Tmp, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7936 | Ptr, ST->getPointerInfo(), ST->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7937 | ST->isNonTemporal(), ST->getAlignment()); |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7938 | } |
| 7939 | break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7940 | case MVT::f64: |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7941 | if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 7942 | !ST->isVolatile()) || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7943 | TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) { |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 7944 | Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt(). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7945 | getZExtValue(), MVT::i64); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7946 | return DAG.getStore(Chain, N->getDebugLoc(), Tmp, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7947 | Ptr, ST->getPointerInfo(), ST->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7948 | ST->isNonTemporal(), ST->getAlignment()); |
Chris Lattner | b3452ea | 2011-04-09 02:32:02 +0000 | [diff] [blame] | 7949 | } |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 7950 | |
Chris Lattner | b3452ea | 2011-04-09 02:32:02 +0000 | [diff] [blame] | 7951 | if (!ST->isVolatile() && |
| 7952 | TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 7953 | // Many FP stores are not made apparent until after legalize, e.g. for |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7954 | // argument passing. Since this is so common, custom legalize the |
| 7955 | // 64-bit integer store into two 32-bit stores. |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 7956 | uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7957 | SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32); |
| 7958 | SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 7959 | if (TLI.isBigEndian()) std::swap(Lo, Hi); |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7960 | |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 7961 | unsigned Alignment = ST->getAlignment(); |
| 7962 | bool isVolatile = ST->isVolatile(); |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7963 | bool isNonTemporal = ST->isNonTemporal(); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 7964 | |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7965 | SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7966 | Ptr, ST->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7967 | isVolatile, isNonTemporal, |
| 7968 | ST->getAlignment()); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7969 | Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr, |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7970 | DAG.getConstant(4, Ptr.getValueType())); |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 7971 | Alignment = MinAlign(Alignment, 4U); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7972 | SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7973 | Ptr, ST->getPointerInfo().getWithOffset(4), |
| 7974 | isVolatile, isNonTemporal, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7975 | Alignment); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7976 | return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other, |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7977 | St0, St1); |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7978 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7979 | |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7980 | break; |
Evan Cheng | 25ece66 | 2006-12-11 17:25:19 +0000 | [diff] [blame] | 7981 | } |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7982 | } |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7983 | } |
| 7984 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 7985 | // Try to infer better alignment information than the store already has. |
| 7986 | if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) { |
Evan Cheng | ed1c0c7 | 2011-11-28 22:37:34 +0000 | [diff] [blame] | 7987 | if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { |
| 7988 | if (Align > ST->getAlignment()) |
| 7989 | return DAG.getTruncStore(Chain, N->getDebugLoc(), Value, |
| 7990 | Ptr, ST->getPointerInfo(), ST->getMemoryVT(), |
| 7991 | ST->isVolatile(), ST->isNonTemporal(), Align); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 7992 | } |
| 7993 | } |
| 7994 | |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7995 | // Try transforming a pair floating point load / store ops to integer |
| 7996 | // load / store ops. |
| 7997 | SDValue NewST = TransformFPLoadStorePair(N); |
| 7998 | if (NewST.getNode()) |
| 7999 | return NewST; |
| 8000 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8001 | if (CombinerAA) { |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8002 | // Walk up chain skipping non-aliasing memory nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8003 | SDValue BetterChain = FindBetterChain(N, Chain); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8004 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 8005 | // If there is a better chain. |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8006 | if (Chain != BetterChain) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8007 | SDValue ReplStore; |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 8008 | |
| 8009 | // Replace the chain to avoid dependency. |
Jim Laskey | d4edf2c | 2006-10-14 12:14:27 +0000 | [diff] [blame] | 8010 | if (ST->isTruncatingStore()) { |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8011 | ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr, |
Chris Lattner | da2d8e1 | 2010-09-21 17:42:31 +0000 | [diff] [blame] | 8012 | ST->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8013 | ST->getMemoryVT(), ST->isVolatile(), |
| 8014 | ST->isNonTemporal(), ST->getAlignment()); |
Jim Laskey | d4edf2c | 2006-10-14 12:14:27 +0000 | [diff] [blame] | 8015 | } else { |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8016 | ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 8017 | ST->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8018 | ST->isVolatile(), ST->isNonTemporal(), |
| 8019 | ST->getAlignment()); |
Jim Laskey | d4edf2c | 2006-10-14 12:14:27 +0000 | [diff] [blame] | 8020 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8021 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8022 | // Create token to keep both nodes around. |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8023 | SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8024 | MVT::Other, Chain, ReplStore); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8025 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 8026 | // Make sure the new and old chains are cleaned up. |
| 8027 | AddToWorkList(Token.getNode()); |
| 8028 | |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 8029 | // Don't add users to work list. |
| 8030 | return CombineTo(N, Token, false); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8031 | } |
Jim Laskey | d1aed7a | 2006-09-21 16:28:59 +0000 | [diff] [blame] | 8032 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8033 | |
Evan Cheng | 33dbedc | 2006-11-05 09:31:14 +0000 | [diff] [blame] | 8034 | // Try transforming N to an indexed store. |
Evan Cheng | bbd6f6e | 2006-11-07 09:03:05 +0000 | [diff] [blame] | 8035 | if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8036 | return SDValue(N, 0); |
Evan Cheng | 33dbedc | 2006-11-05 09:31:14 +0000 | [diff] [blame] | 8037 | |
Chris Lattner | 3c87285 | 2007-12-29 06:26:16 +0000 | [diff] [blame] | 8038 | // FIXME: is there such a thing as a truncating indexed store? |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8039 | if (ST->isTruncatingStore() && ST->isUnindexed() && |
Nadav Rotem | baff46f | 2011-06-15 11:19:12 +0000 | [diff] [blame] | 8040 | Value.getValueType().isInteger()) { |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 8041 | // See if we can simplify the input to this truncstore with knowledge that |
| 8042 | // only the low bits are being used. For example: |
| 8043 | // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8" |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8044 | SDValue Shorter = |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 8045 | GetDemandedBits(Value, |
Nadav Rotem | baff46f | 2011-06-15 11:19:12 +0000 | [diff] [blame] | 8046 | APInt::getLowBitsSet( |
| 8047 | Value.getValueType().getScalarType().getSizeInBits(), |
| 8048 | ST->getMemoryVT().getScalarType().getSizeInBits())); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8049 | AddToWorkList(Value.getNode()); |
| 8050 | if (Shorter.getNode()) |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8051 | return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter, |
Chris Lattner | da2d8e1 | 2010-09-21 17:42:31 +0000 | [diff] [blame] | 8052 | Ptr, ST->getPointerInfo(), ST->getMemoryVT(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8053 | ST->isVolatile(), ST->isNonTemporal(), |
| 8054 | ST->getAlignment()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8055 | |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 8056 | // Otherwise, see if we can simplify the operation with |
| 8057 | // SimplifyDemandedBits, which only works if the value has a single use. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 8058 | if (SimplifyDemandedBits(Value, |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 8059 | APInt::getLowBitsSet( |
| 8060 | Value.getValueType().getScalarType().getSizeInBits(), |
| 8061 | ST->getMemoryVT().getScalarType().getSizeInBits()))) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8062 | return SDValue(N, 0); |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 8063 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8064 | |
Chris Lattner | 3c87285 | 2007-12-29 06:26:16 +0000 | [diff] [blame] | 8065 | // If this is a load followed by a store to the same location, then the store |
| 8066 | // is dead/noop. |
| 8067 | if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) { |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 8068 | if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() && |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8069 | ST->isUnindexed() && !ST->isVolatile() && |
Chris Lattner | 07649d9 | 2008-01-08 23:08:06 +0000 | [diff] [blame] | 8070 | // There can't be any side effects between the load and store, such as |
| 8071 | // a call or store. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8072 | Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) { |
Chris Lattner | 3c87285 | 2007-12-29 06:26:16 +0000 | [diff] [blame] | 8073 | // The store is dead, remove it. |
| 8074 | return Chain; |
| 8075 | } |
| 8076 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 8077 | |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8078 | // If this is an FP_ROUND or TRUNC followed by a store, fold this into a |
| 8079 | // truncating store. We can do this even if this is already a truncstore. |
| 8080 | if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8081 | && Value.getNode()->hasOneUse() && ST->isUnindexed() && |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8082 | TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 8083 | ST->getMemoryVT())) { |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8084 | return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0), |
Chris Lattner | da2d8e1 | 2010-09-21 17:42:31 +0000 | [diff] [blame] | 8085 | Ptr, ST->getPointerInfo(), ST->getMemoryVT(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8086 | ST->isVolatile(), ST->isNonTemporal(), |
| 8087 | ST->getAlignment()); |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8088 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 8089 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 8090 | // Only perform this optimization before the types are legal, because we |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 8091 | // don't want to perform this optimization on every DAGCombine invocation. |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 8092 | if (!LegalTypes && MergeConsecutiveStores(ST)) |
| 8093 | return SDValue(N, 0); |
| 8094 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 8095 | return ReduceLoadOpStoreWidth(N); |
Chris Lattner | 87514ca | 2005-10-10 22:31:19 +0000 | [diff] [blame] | 8096 | } |
| 8097 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8098 | SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) { |
| 8099 | SDValue InVec = N->getOperand(0); |
| 8100 | SDValue InVal = N->getOperand(1); |
| 8101 | SDValue EltNo = N->getOperand(2); |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8102 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8103 | |
Bob Wilson | 492fd45 | 2010-05-19 23:42:58 +0000 | [diff] [blame] | 8104 | // If the inserted element is an UNDEF, just use the input vector. |
| 8105 | if (InVal.getOpcode() == ISD::UNDEF) |
| 8106 | return InVec; |
| 8107 | |
Nadav Rotem | 609d54e | 2011-02-12 14:40:33 +0000 | [diff] [blame] | 8108 | EVT VT = InVec.getValueType(); |
| 8109 | |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 8110 | // If we can't generate a legal BUILD_VECTOR, exit |
Nadav Rotem | 609d54e | 2011-02-12 14:40:33 +0000 | [diff] [blame] | 8111 | if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) |
| 8112 | return SDValue(); |
| 8113 | |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8114 | // Check that we know which element is being inserted |
| 8115 | if (!isa<ConstantSDNode>(EltNo)) |
| 8116 | return SDValue(); |
| 8117 | unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8118 | |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8119 | // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially |
| 8120 | // be converted to a BUILD_VECTOR). Fill in the Ops vector with the |
| 8121 | // vector elements. |
| 8122 | SmallVector<SDValue, 8> Ops; |
| 8123 | if (InVec.getOpcode() == ISD::BUILD_VECTOR) { |
| 8124 | Ops.append(InVec.getNode()->op_begin(), |
| 8125 | InVec.getNode()->op_end()); |
| 8126 | } else if (InVec.getOpcode() == ISD::UNDEF) { |
| 8127 | unsigned NElts = VT.getVectorNumElements(); |
| 8128 | Ops.append(NElts, DAG.getUNDEF(InVal.getValueType())); |
| 8129 | } else { |
| 8130 | return SDValue(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8131 | } |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8132 | |
| 8133 | // Insert the element |
| 8134 | if (Elt < Ops.size()) { |
| 8135 | // All the operands of BUILD_VECTOR must have the same type; |
| 8136 | // we enforce that here. |
| 8137 | EVT OpVT = Ops[0].getValueType(); |
| 8138 | if (InVal.getValueType() != OpVT) |
| 8139 | InVal = OpVT.bitsGT(InVal.getValueType()) ? |
| 8140 | DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) : |
| 8141 | DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal); |
| 8142 | Ops[Elt] = InVal; |
| 8143 | } |
| 8144 | |
| 8145 | // Return the new vector |
| 8146 | return DAG.getNode(ISD::BUILD_VECTOR, dl, |
| 8147 | VT, &Ops[0], Ops.size()); |
Chris Lattner | ca24244 | 2006-03-19 01:27:56 +0000 | [diff] [blame] | 8148 | } |
| 8149 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8150 | SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) { |
Mon P Wang | 7ac9cdf | 2009-01-17 00:07:25 +0000 | [diff] [blame] | 8151 | // (vextract (scalar_to_vector val, 0) -> val |
| 8152 | SDValue InVec = N->getOperand(0); |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8153 | EVT VT = InVec.getValueType(); |
| 8154 | EVT NVT = N->getValueType(0); |
Mon P Wang | 7ac9cdf | 2009-01-17 00:07:25 +0000 | [diff] [blame] | 8155 | |
Duncan Sands | c356f33 | 2011-05-09 08:03:33 +0000 | [diff] [blame] | 8156 | if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) { |
| 8157 | // Check if the result type doesn't match the inserted element type. A |
| 8158 | // SCALAR_TO_VECTOR may truncate the inserted element and the |
| 8159 | // EXTRACT_VECTOR_ELT may widen the extracted vector. |
| 8160 | SDValue InOp = InVec.getOperand(0); |
Duncan Sands | c356f33 | 2011-05-09 08:03:33 +0000 | [diff] [blame] | 8161 | if (InOp.getValueType() != NVT) { |
| 8162 | assert(InOp.getValueType().isInteger() && NVT.isInteger()); |
| 8163 | return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT); |
| 8164 | } |
| 8165 | return InOp; |
| 8166 | } |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8167 | |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8168 | SDValue EltNo = N->getOperand(1); |
| 8169 | bool ConstEltNo = isa<ConstantSDNode>(EltNo); |
| 8170 | |
| 8171 | // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT. |
| 8172 | // We only perform this optimization before the op legalization phase because |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 8173 | // we may introduce new vector instructions which are not backed by TD |
| 8174 | // patterns. For example on AVX, extracting elements from a wide vector |
| 8175 | // without using extract_subvector. |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8176 | if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE |
| 8177 | && ConstEltNo && !LegalOperations) { |
| 8178 | int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
| 8179 | int NumElem = VT.getVectorNumElements(); |
| 8180 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec); |
| 8181 | // Find the new index to extract from. |
| 8182 | int OrigElt = SVOp->getMaskElt(Elt); |
| 8183 | |
| 8184 | // Extracting an undef index is undef. |
| 8185 | if (OrigElt == -1) |
| 8186 | return DAG.getUNDEF(NVT); |
| 8187 | |
| 8188 | // Select the right vector half to extract from. |
| 8189 | if (OrigElt < NumElem) { |
| 8190 | InVec = InVec->getOperand(0); |
| 8191 | } else { |
| 8192 | InVec = InVec->getOperand(1); |
| 8193 | OrigElt -= NumElem; |
| 8194 | } |
| 8195 | |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 8196 | EVT IndexTy = N->getOperand(1).getValueType(); |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8197 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT, |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 8198 | InVec, DAG.getConstant(OrigElt, IndexTy)); |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8199 | } |
| 8200 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8201 | // Perform only after legalization to ensure build_vector / vector_shuffle |
| 8202 | // optimizations have already been done. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 8203 | if (!LegalOperations) return SDValue(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8204 | |
Mon P Wang | 7ac9cdf | 2009-01-17 00:07:25 +0000 | [diff] [blame] | 8205 | // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size) |
| 8206 | // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size) |
| 8207 | // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr) |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8208 | |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8209 | if (ConstEltNo) { |
Eric Christopher | caebdd4 | 2010-11-03 09:36:40 +0000 | [diff] [blame] | 8210 | int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8211 | bool NewLoad = false; |
Mon P Wang | a60b523 | 2008-12-11 00:26:16 +0000 | [diff] [blame] | 8212 | bool BCNumEltsChanged = false; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8213 | EVT ExtVT = VT.getVectorElementType(); |
| 8214 | EVT LVT = ExtVT; |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8215 | |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8216 | // If the result of load has to be truncated, then it's not necessarily |
| 8217 | // profitable. |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8218 | if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT)) |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8219 | return SDValue(); |
| 8220 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8221 | if (InVec.getOpcode() == ISD::BITCAST) { |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8222 | // Don't duplicate a load with other uses. |
| 8223 | if (!InVec.hasOneUse()) |
| 8224 | return SDValue(); |
| 8225 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8226 | EVT BCVT = InVec.getOperand(0).getValueType(); |
| 8227 | if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8228 | return SDValue(); |
Mon P Wang | a60b523 | 2008-12-11 00:26:16 +0000 | [diff] [blame] | 8229 | if (VT.getVectorNumElements() != BCVT.getVectorNumElements()) |
| 8230 | BCNumEltsChanged = true; |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8231 | InVec = InVec.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8232 | ExtVT = BCVT.getVectorElementType(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8233 | NewLoad = true; |
| 8234 | } |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8235 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8236 | LoadSDNode *LN0 = NULL; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8237 | const ShuffleVectorSDNode *SVN = NULL; |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8238 | if (ISD::isNormalLoad(InVec.getNode())) { |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8239 | LN0 = cast<LoadSDNode>(InVec); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8240 | } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR && |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8241 | InVec.getOperand(0).getValueType() == ExtVT && |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8242 | ISD::isNormalLoad(InVec.getOperand(0).getNode())) { |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8243 | // Don't duplicate a load with other uses. |
| 8244 | if (!InVec.hasOneUse()) |
| 8245 | return SDValue(); |
| 8246 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8247 | LN0 = cast<LoadSDNode>(InVec.getOperand(0)); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8248 | } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) { |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8249 | // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1) |
| 8250 | // => |
| 8251 | // (load $addr+1*size) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8252 | |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8253 | // Don't duplicate a load with other uses. |
| 8254 | if (!InVec.hasOneUse()) |
| 8255 | return SDValue(); |
| 8256 | |
Mon P Wang | a60b523 | 2008-12-11 00:26:16 +0000 | [diff] [blame] | 8257 | // If the bit convert changed the number of elements, it is unsafe |
| 8258 | // to examine the mask. |
| 8259 | if (BCNumEltsChanged) |
| 8260 | return SDValue(); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8261 | |
| 8262 | // Select the input vector, guarding against out of range extract vector. |
| 8263 | unsigned NumElems = VT.getVectorNumElements(); |
Eric Christopher | caebdd4 | 2010-11-03 09:36:40 +0000 | [diff] [blame] | 8264 | int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8265 | InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1); |
| 8266 | |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8267 | if (InVec.getOpcode() == ISD::BITCAST) { |
| 8268 | // Don't duplicate a load with other uses. |
| 8269 | if (!InVec.hasOneUse()) |
| 8270 | return SDValue(); |
| 8271 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8272 | InVec = InVec.getOperand(0); |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8273 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8274 | if (ISD::isNormalLoad(InVec.getNode())) { |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8275 | LN0 = cast<LoadSDNode>(InVec); |
Ted Kremenek | d0e88f3 | 2010-04-08 18:49:30 +0000 | [diff] [blame] | 8276 | Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems; |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8277 | } |
| 8278 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8279 | |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8280 | // Make sure we found a non-volatile load and the extractelement is |
| 8281 | // the only use. |
Nadav Rotem | 42febc6 | 2011-05-11 14:40:50 +0000 | [diff] [blame] | 8282 | if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8283 | return SDValue(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8284 | |
Eric Christopher | d81f17a | 2010-11-03 20:44:42 +0000 | [diff] [blame] | 8285 | // If Idx was -1 above, Elt is going to be -1, so just return undef. |
| 8286 | if (Elt == -1) |
Eli Friedman | ed4b427 | 2011-07-25 22:25:42 +0000 | [diff] [blame] | 8287 | return DAG.getUNDEF(LVT); |
Eric Christopher | d81f17a | 2010-11-03 20:44:42 +0000 | [diff] [blame] | 8288 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8289 | unsigned Align = LN0->getAlignment(); |
| 8290 | if (NewLoad) { |
| 8291 | // Check the resultant load doesn't need a higher alignment than the |
| 8292 | // original load. |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8293 | unsigned NewAlign = |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 8294 | TLI.getDataLayout() |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 8295 | ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext())); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8296 | |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 8297 | if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8298 | return SDValue(); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8299 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8300 | Align = NewAlign; |
| 8301 | } |
| 8302 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8303 | SDValue NewPtr = LN0->getBasePtr(); |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 8304 | unsigned PtrOff = 0; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8305 | |
Eric Christopher | d81f17a | 2010-11-03 20:44:42 +0000 | [diff] [blame] | 8306 | if (Elt) { |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 8307 | PtrOff = LVT.getSizeInBits() * Elt / 8; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8308 | EVT PtrType = NewPtr.getValueType(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8309 | if (TLI.isBigEndian()) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8310 | PtrOff = VT.getSizeInBits() / 8 - PtrOff; |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8311 | NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr, |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8312 | DAG.getConstant(PtrOff, PtrType)); |
| 8313 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8314 | |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8315 | // The replacement we need to do here is a little tricky: we need to |
| 8316 | // replace an extractelement of a load with a load. |
| 8317 | // Use ReplaceAllUsesOfValuesWith to do the replacement. |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8318 | // Note that this replacement assumes that the extractvalue is the only |
| 8319 | // use of the load; that's okay because we don't want to perform this |
| 8320 | // transformation in other cases anyway. |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8321 | SDValue Load; |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8322 | SDValue Chain; |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8323 | if (NVT.bitsGT(LVT)) { |
| 8324 | // If the result type of vextract is wider than the load, then issue an |
| 8325 | // extending load instead. |
| 8326 | ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT) |
| 8327 | ? ISD::ZEXTLOAD : ISD::EXTLOAD; |
| 8328 | Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(), |
| 8329 | NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff), |
| 8330 | LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align); |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8331 | Chain = Load.getValue(1); |
| 8332 | } else { |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8333 | Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr, |
| 8334 | LN0->getPointerInfo().getWithOffset(PtrOff), |
| 8335 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 8336 | LN0->isInvariant(), Align); |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8337 | Chain = Load.getValue(1); |
| 8338 | if (NVT.bitsLT(LVT)) |
| 8339 | Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load); |
| 8340 | else |
| 8341 | Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load); |
| 8342 | } |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8343 | WorkListRemover DeadNodes(*this); |
| 8344 | SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) }; |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8345 | SDValue To[] = { Load, Chain }; |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 8346 | DAG.ReplaceAllUsesOfValuesWith(From, To, 2); |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8347 | // Since we're explcitly calling ReplaceAllUses, add the new node to the |
| 8348 | // worklist explicitly as well. |
| 8349 | AddToWorkList(Load.getNode()); |
Craig Topper | 0c9da21 | 2012-03-20 05:28:39 +0000 | [diff] [blame] | 8350 | AddUsersToWorkList(Load.getNode()); // Add users too |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8351 | // Make sure to revisit this node to clean it up; it will usually be dead. |
| 8352 | AddToWorkList(N); |
| 8353 | return SDValue(N, 0); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8354 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8355 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8356 | return SDValue(); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8357 | } |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8358 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8359 | SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8360 | unsigned NumInScalars = N->getNumOperands(); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8361 | DebugLoc dl = N->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8362 | EVT VT = N->getValueType(0); |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 8363 | |
| 8364 | // A vector built entirely of undefs is undef. |
| 8365 | if (ISD::allOperandsUndef(N)) |
| 8366 | return DAG.getUNDEF(VT); |
| 8367 | |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8368 | // Check to see if this is a BUILD_VECTOR of a bunch of values |
| 8369 | // which come from any_extend or zero_extend nodes. If so, we can create |
| 8370 | // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8371 | // optimizations. We do not handle sign-extend because we can't fill the sign |
| 8372 | // using shuffles. |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8373 | EVT SourceType = MVT::Other; |
Craig Topper | d3b5889 | 2012-01-17 09:09:48 +0000 | [diff] [blame] | 8374 | bool AllAnyExt = true; |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 8375 | |
Craig Topper | d3b5889 | 2012-01-17 09:09:48 +0000 | [diff] [blame] | 8376 | for (unsigned i = 0; i != NumInScalars; ++i) { |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8377 | SDValue In = N->getOperand(i); |
| 8378 | // Ignore undef inputs. |
| 8379 | if (In.getOpcode() == ISD::UNDEF) continue; |
| 8380 | |
| 8381 | bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND; |
| 8382 | bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND; |
| 8383 | |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8384 | // Abort if the element is not an extension. |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8385 | if (!ZeroExt && !AnyExt) { |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8386 | SourceType = MVT::Other; |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8387 | break; |
| 8388 | } |
| 8389 | |
| 8390 | // The input is a ZeroExt or AnyExt. Check the original type. |
| 8391 | EVT InTy = In.getOperand(0).getValueType(); |
| 8392 | |
| 8393 | // Check that all of the widened source types are the same. |
| 8394 | if (SourceType == MVT::Other) |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8395 | // First time. |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8396 | SourceType = InTy; |
| 8397 | else if (InTy != SourceType) { |
| 8398 | // Multiple income types. Abort. |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8399 | SourceType = MVT::Other; |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8400 | break; |
| 8401 | } |
| 8402 | |
| 8403 | // Check if all of the extends are ANY_EXTENDs. |
Craig Topper | d3b5889 | 2012-01-17 09:09:48 +0000 | [diff] [blame] | 8404 | AllAnyExt &= AnyExt; |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8405 | } |
| 8406 | |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8407 | // In order to have valid types, all of the inputs must be extended from the |
| 8408 | // same source type and all of the inputs must be any or zero extend. |
| 8409 | // Scalar sizes must be a power of two. |
| 8410 | EVT OutScalarTy = N->getValueType(0).getScalarType(); |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8411 | bool ValidTypes = SourceType != MVT::Other && |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8412 | isPowerOf2_32(OutScalarTy.getSizeInBits()) && |
| 8413 | isPowerOf2_32(SourceType.getSizeInBits()); |
| 8414 | |
| 8415 | // We perform this optimization post type-legalization because |
| 8416 | // the type-legalizer often scalarizes integer-promoted vectors. |
| 8417 | // Performing this optimization before may create bit-casts which |
| 8418 | // will be type-legalized to complex code sequences. |
| 8419 | // We perform this optimization only before the operation legalizer because we |
| 8420 | // may introduce illegal operations. |
Nadav Rotem | 6431ff9 | 2012-03-15 08:49:06 +0000 | [diff] [blame] | 8421 | // Create a new simpler BUILD_VECTOR sequence which other optimizations can |
| 8422 | // turn into a single shuffle instruction. |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8423 | if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) && |
| 8424 | ValidTypes) { |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8425 | bool isLE = TLI.isLittleEndian(); |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8426 | unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits(); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8427 | assert(ElemRatio > 1 && "Invalid element size ratio"); |
Craig Topper | d3b5889 | 2012-01-17 09:09:48 +0000 | [diff] [blame] | 8428 | SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType): |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8429 | DAG.getConstant(0, SourceType); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8430 | |
| 8431 | unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements(); |
Benjamin Kramer | 50bf86e | 2011-10-30 08:39:55 +0000 | [diff] [blame] | 8432 | SmallVector<SDValue, 8> Ops(NewBVElems, Filler); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8433 | |
| 8434 | // Populate the new build_vector |
| 8435 | for (unsigned i=0; i < N->getNumOperands(); ++i) { |
| 8436 | SDValue Cast = N->getOperand(i); |
Benjamin Kramer | 50bf86e | 2011-10-30 08:39:55 +0000 | [diff] [blame] | 8437 | assert((Cast.getOpcode() == ISD::ANY_EXTEND || |
| 8438 | Cast.getOpcode() == ISD::ZERO_EXTEND || |
| 8439 | Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode"); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8440 | SDValue In; |
| 8441 | if (Cast.getOpcode() == ISD::UNDEF) |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8442 | In = DAG.getUNDEF(SourceType); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8443 | else |
| 8444 | In = Cast->getOperand(0); |
| 8445 | unsigned Index = isLE ? (i * ElemRatio) : |
| 8446 | (i * ElemRatio + (ElemRatio - 1)); |
| 8447 | |
| 8448 | assert(Index < Ops.size() && "Invalid index"); |
| 8449 | Ops[Index] = In; |
| 8450 | } |
| 8451 | |
| 8452 | // The type of the new BUILD_VECTOR node. |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8453 | EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8454 | assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() && |
| 8455 | "Invalid vector size"); |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8456 | // Check if the new vector type is legal. |
| 8457 | if (!isTypeLegal(VecVT)) return SDValue(); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8458 | |
| 8459 | // Make the new BUILD_VECTOR. |
| 8460 | SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), |
| 8461 | VecVT, &Ops[0], Ops.size()); |
| 8462 | |
Nadav Rotem | 6431ff9 | 2012-03-15 08:49:06 +0000 | [diff] [blame] | 8463 | // The new BUILD_VECTOR node has the potential to be further optimized. |
| 8464 | AddToWorkList(BV.getNode()); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8465 | // Bitcast to the desired type. |
| 8466 | return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV); |
| 8467 | } |
Chris Lattner | ca24244 | 2006-03-19 01:27:56 +0000 | [diff] [blame] | 8468 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8469 | // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT |
| 8470 | // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from |
| 8471 | // at most two distinct vectors, turn this into a shuffle node. |
Duncan Sands | 00294ca | 2012-03-19 15:35:44 +0000 | [diff] [blame] | 8472 | |
| 8473 | // May only combine to shuffle after legalize if shuffle is legal. |
| 8474 | if (LegalOperations && |
| 8475 | !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT)) |
| 8476 | return SDValue(); |
| 8477 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8478 | SDValue VecIn1, VecIn2; |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8479 | for (unsigned i = 0; i != NumInScalars; ++i) { |
| 8480 | // Ignore undef inputs. |
| 8481 | if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8482 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8483 | // If this input is something other than a EXTRACT_VECTOR_ELT with a |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8484 | // constant index, bail out. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8485 | if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT || |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8486 | !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8487 | VecIn1 = VecIn2 = SDValue(0, 0); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8488 | break; |
| 8489 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8490 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8491 | // We allow up to two distinct input vectors. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8492 | SDValue ExtractedFromVec = N->getOperand(i).getOperand(0); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8493 | if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2) |
| 8494 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8495 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8496 | if (VecIn1.getNode() == 0) { |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8497 | VecIn1 = ExtractedFromVec; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8498 | } else if (VecIn2.getNode() == 0) { |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8499 | VecIn2 = ExtractedFromVec; |
| 8500 | } else { |
| 8501 | // Too many inputs. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8502 | VecIn1 = VecIn2 = SDValue(0, 0); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8503 | break; |
| 8504 | } |
| 8505 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8506 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8507 | // If everything is good, we can make a shuffle operation. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8508 | if (VecIn1.getNode()) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8509 | SmallVector<int, 8> Mask; |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8510 | for (unsigned i = 0; i != NumInScalars; ++i) { |
| 8511 | if (N->getOperand(i).getOpcode() == ISD::UNDEF) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8512 | Mask.push_back(-1); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8513 | continue; |
| 8514 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8515 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 8516 | // If extracting from the first vector, just use the index directly. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8517 | SDValue Extract = N->getOperand(i); |
Mon P Wang | 93b7415 | 2009-03-17 06:33:10 +0000 | [diff] [blame] | 8518 | SDValue ExtVal = Extract.getOperand(1); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8519 | if (Extract.getOperand(0) == VecIn1) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8520 | unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue(); |
| 8521 | if (ExtIndex > VT.getVectorNumElements()) |
| 8522 | return SDValue(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8523 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8524 | Mask.push_back(ExtIndex); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8525 | continue; |
| 8526 | } |
| 8527 | |
| 8528 | // Otherwise, use InIdx + VecSize |
Mon P Wang | 93b7415 | 2009-03-17 06:33:10 +0000 | [diff] [blame] | 8529 | unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8530 | Mask.push_back(Idx+NumInScalars); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8531 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8532 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8533 | // We can't generate a shuffle node with mismatched input and output types. |
| 8534 | // Attempt to transform a single input vector to the correct type. |
| 8535 | if ((VT != VecIn1.getValueType())) { |
| 8536 | // We don't support shuffeling between TWO values of different types. |
| 8537 | if (VecIn2.getNode() != 0) |
| 8538 | return SDValue(); |
| 8539 | |
| 8540 | // We only support widening of vectors which are half the size of the |
| 8541 | // output registers. For example XMM->YMM widening on X86 with AVX. |
| 8542 | if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits()) |
| 8543 | return SDValue(); |
| 8544 | |
James Molloy | 8cd08bf | 2012-09-10 14:01:21 +0000 | [diff] [blame] | 8545 | // If the input vector type has a different base type to the output |
| 8546 | // vector type, bail out. |
| 8547 | if (VecIn1.getValueType().getVectorElementType() != |
| 8548 | VT.getVectorElementType()) |
| 8549 | return SDValue(); |
| 8550 | |
Stepan Dyatkovskiy | fdeb9fe | 2012-08-22 09:33:55 +0000 | [diff] [blame] | 8551 | // Widen the input vector by adding undef values. |
| 8552 | VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT, |
| 8553 | VecIn1, DAG.getUNDEF(VecIn1.getValueType())); |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8554 | } |
| 8555 | |
| 8556 | // If VecIn2 is unused then change it to undef. |
| 8557 | VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT); |
| 8558 | |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 8559 | // Check that we were able to transform all incoming values to the same |
| 8560 | // type. |
Nadav Rotem | 0877fdf | 2012-02-13 12:42:26 +0000 | [diff] [blame] | 8561 | if (VecIn2.getValueType() != VecIn1.getValueType() || |
| 8562 | VecIn1.getValueType() != VT) |
| 8563 | return SDValue(); |
| 8564 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8565 | // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes. |
Nadav Rotem | 0877fdf | 2012-02-13 12:42:26 +0000 | [diff] [blame] | 8566 | if (!isTypeLegal(VT)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 8567 | return SDValue(); |
| 8568 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8569 | // Return the new VECTOR_SHUFFLE node. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8570 | SDValue Ops[2]; |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 8571 | Ops[0] = VecIn1; |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8572 | Ops[1] = VecIn2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8573 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8574 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8575 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8576 | return SDValue(); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8577 | } |
| 8578 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8579 | SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8580 | // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of |
| 8581 | // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector |
| 8582 | // inputs come from at most two distinct vectors, turn this into a shuffle |
| 8583 | // node. |
| 8584 | |
| 8585 | // If we only have one input vector, we don't need to do any concatenation. |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8586 | if (N->getNumOperands() == 1) |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8587 | return N->getOperand(0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8588 | |
Nadav Rotem | b7e230d | 2012-07-14 21:30:27 +0000 | [diff] [blame] | 8589 | // Check if all of the operands are undefs. |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 8590 | if (ISD::allOperandsUndef(N)) |
Nadav Rotem | b7e230d | 2012-07-14 21:30:27 +0000 | [diff] [blame] | 8591 | return DAG.getUNDEF(N->getValueType(0)); |
| 8592 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8593 | return SDValue(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8594 | } |
| 8595 | |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8596 | SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) { |
| 8597 | EVT NVT = N->getValueType(0); |
| 8598 | SDValue V = N->getOperand(0); |
| 8599 | |
| 8600 | if (V->getOpcode() == ISD::INSERT_SUBVECTOR) { |
| 8601 | // Handle only simple case where vector being inserted and vector |
| 8602 | // being extracted are of same type, and are half size of larger vectors. |
| 8603 | EVT BigVT = V->getOperand(0).getValueType(); |
| 8604 | EVT SmallVT = V->getOperand(1).getValueType(); |
| 8605 | if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits()) |
| 8606 | return SDValue(); |
| 8607 | |
Eli Friedman | 2632344 | 2011-12-07 00:11:56 +0000 | [diff] [blame] | 8608 | // Only handle cases where both indexes are constants with the same type. |
Michael Liao | 13429e2 | 2012-10-17 20:48:33 +0000 | [diff] [blame] | 8609 | ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 8610 | ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2)); |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8611 | |
Eli Friedman | 2632344 | 2011-12-07 00:11:56 +0000 | [diff] [blame] | 8612 | if (InsIdx && ExtIdx && |
| 8613 | InsIdx->getValueType(0).getSizeInBits() <= 64 && |
| 8614 | ExtIdx->getValueType(0).getSizeInBits() <= 64) { |
| 8615 | // Combine: |
| 8616 | // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx) |
| 8617 | // Into: |
| 8618 | // indices are equal => V1 |
| 8619 | // otherwise => (extract_subvec V1, ExtIdx) |
| 8620 | if (InsIdx->getZExtValue() == ExtIdx->getZExtValue()) |
| 8621 | return V->getOperand(1); |
| 8622 | return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT, |
| 8623 | V->getOperand(0), N->getOperand(1)); |
| 8624 | } |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8625 | } |
| 8626 | |
Michael Liao | 13429e2 | 2012-10-17 20:48:33 +0000 | [diff] [blame] | 8627 | if (V->getOpcode() == ISD::CONCAT_VECTORS) { |
| 8628 | // Combine: |
| 8629 | // (extract_subvec (concat V1, V2, ...), i) |
| 8630 | // Into: |
| 8631 | // Vi if possible |
| 8632 | for (unsigned i = 0, e = V->getNumOperands(); i != e; ++i) |
| 8633 | if (V->getOperand(i).getValueType() != NVT) |
| 8634 | return SDValue(); |
| 8635 | unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue(); |
| 8636 | unsigned NumElems = NVT.getVectorNumElements(); |
| 8637 | assert((Idx % NumElems) == 0 && |
| 8638 | "IDX in concat is not a multiple of the result vector length."); |
| 8639 | return V->getOperand(Idx / NumElems); |
| 8640 | } |
| 8641 | |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8642 | return SDValue(); |
| 8643 | } |
| 8644 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8645 | SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8646 | EVT VT = N->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8647 | unsigned NumElts = VT.getVectorNumElements(); |
Chris Lattner | f1d0c62 | 2006-03-31 22:16:43 +0000 | [diff] [blame] | 8648 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 8649 | SDValue N0 = N->getOperand(0); |
Craig Topper | 481b79c | 2012-01-04 08:07:43 +0000 | [diff] [blame] | 8650 | SDValue N1 = N->getOperand(1); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 8651 | |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8652 | assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG"); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 8653 | |
Craig Topper | 481b79c | 2012-01-04 08:07:43 +0000 | [diff] [blame] | 8654 | // Canonicalize shuffle undef, undef -> undef |
| 8655 | if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF) |
| 8656 | return DAG.getUNDEF(VT); |
| 8657 | |
| 8658 | ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); |
| 8659 | |
| 8660 | // Canonicalize shuffle v, v -> v, undef |
| 8661 | if (N0 == N1) { |
| 8662 | SmallVector<int, 8> NewMask; |
| 8663 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8664 | int Idx = SVN->getMaskElt(i); |
| 8665 | if (Idx >= (int)NumElts) Idx -= NumElts; |
| 8666 | NewMask.push_back(Idx); |
| 8667 | } |
| 8668 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT), |
| 8669 | &NewMask[0]); |
| 8670 | } |
| 8671 | |
| 8672 | // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask. |
| 8673 | if (N0.getOpcode() == ISD::UNDEF) { |
| 8674 | SmallVector<int, 8> NewMask; |
| 8675 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8676 | int Idx = SVN->getMaskElt(i); |
Craig Topper | 4b206bd | 2012-04-09 05:55:33 +0000 | [diff] [blame] | 8677 | if (Idx >= 0) { |
| 8678 | if (Idx < (int)NumElts) |
| 8679 | Idx += NumElts; |
| 8680 | else |
| 8681 | Idx -= NumElts; |
| 8682 | } |
| 8683 | NewMask.push_back(Idx); |
Craig Topper | 481b79c | 2012-01-04 08:07:43 +0000 | [diff] [blame] | 8684 | } |
| 8685 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT), |
| 8686 | &NewMask[0]); |
| 8687 | } |
| 8688 | |
| 8689 | // Remove references to rhs if it is undef |
| 8690 | if (N1.getOpcode() == ISD::UNDEF) { |
| 8691 | bool Changed = false; |
| 8692 | SmallVector<int, 8> NewMask; |
| 8693 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8694 | int Idx = SVN->getMaskElt(i); |
| 8695 | if (Idx >= (int)NumElts) { |
| 8696 | Idx = -1; |
| 8697 | Changed = true; |
| 8698 | } |
| 8699 | NewMask.push_back(Idx); |
| 8700 | } |
| 8701 | if (Changed) |
| 8702 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]); |
| 8703 | } |
Evan Cheng | e7bec0d | 2006-07-20 22:44:41 +0000 | [diff] [blame] | 8704 | |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8705 | // If it is a splat, check if the argument vector is another splat or a |
| 8706 | // build_vector with all scalar elements the same. |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8707 | if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8708 | SDNode *V = N0.getNode(); |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8709 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8710 | // If this is a bit convert that changes the element type of the vector but |
Evan Cheng | 5956922 | 2006-10-16 22:49:37 +0000 | [diff] [blame] | 8711 | // not the number of vector elements, look through it. Be careful not to |
| 8712 | // look though conversions that change things like v4f32 to v2f64. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8713 | if (V->getOpcode() == ISD::BITCAST) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8714 | SDValue ConvInput = V->getOperand(0); |
Evan Cheng | 2925786 | 2008-07-22 20:42:56 +0000 | [diff] [blame] | 8715 | if (ConvInput.getValueType().isVector() && |
| 8716 | ConvInput.getValueType().getVectorNumElements() == NumElts) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8717 | V = ConvInput.getNode(); |
Evan Cheng | 5956922 | 2006-10-16 22:49:37 +0000 | [diff] [blame] | 8718 | } |
| 8719 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8720 | if (V->getOpcode() == ISD::BUILD_VECTOR) { |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8721 | assert(V->getNumOperands() == NumElts && |
| 8722 | "BUILD_VECTOR has wrong number of operands"); |
| 8723 | SDValue Base; |
| 8724 | bool AllSame = true; |
| 8725 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8726 | if (V->getOperand(i).getOpcode() != ISD::UNDEF) { |
| 8727 | Base = V->getOperand(i); |
| 8728 | break; |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8729 | } |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8730 | } |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8731 | // Splat of <u, u, u, u>, return <u, u, u, u> |
| 8732 | if (!Base.getNode()) |
| 8733 | return N0; |
| 8734 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8735 | if (V->getOperand(i) != Base) { |
| 8736 | AllSame = false; |
| 8737 | break; |
| 8738 | } |
| 8739 | } |
| 8740 | // Splat of <x, x, x, x>, return <x, x, x, x> |
| 8741 | if (AllSame) |
| 8742 | return N0; |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8743 | } |
| 8744 | } |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8745 | |
| 8746 | // If this shuffle node is simply a swizzle of another shuffle node, |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8747 | // and it reverses the swizzle of the previous shuffle then we can |
| 8748 | // optimize shuffle(shuffle(x, undef), undef) -> x. |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8749 | if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG && |
| 8750 | N1.getOpcode() == ISD::UNDEF) { |
| 8751 | |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8752 | ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0); |
| 8753 | |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8754 | // Shuffle nodes can only reverse shuffles with a single non-undef value. |
| 8755 | if (N0.getOperand(1).getOpcode() != ISD::UNDEF) |
| 8756 | return SDValue(); |
| 8757 | |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8758 | // The incoming shuffle must be of the same type as the result of the |
| 8759 | // current shuffle. |
| 8760 | assert(OtherSV->getOperand(0).getValueType() == VT && |
| 8761 | "Shuffle types don't match"); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8762 | |
| 8763 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8764 | int Idx = SVN->getMaskElt(i); |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8765 | assert(Idx < (int)NumElts && "Index references undef operand"); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8766 | // Next, this index comes from the first value, which is the incoming |
| 8767 | // shuffle. Adopt the incoming index. |
| 8768 | if (Idx >= 0) |
| 8769 | Idx = OtherSV->getMaskElt(Idx); |
| 8770 | |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8771 | // The combined shuffle must map each index to itself. |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8772 | if (Idx >= 0 && (unsigned)Idx != i) |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8773 | return SDValue(); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8774 | } |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8775 | |
| 8776 | return OtherSV->getOperand(0); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8777 | } |
| 8778 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8779 | return SDValue(); |
Chris Lattner | f1d0c62 | 2006-03-31 22:16:43 +0000 | [diff] [blame] | 8780 | } |
| 8781 | |
Jim Grosbach | 9a52649 | 2010-06-23 16:07:42 +0000 | [diff] [blame] | 8782 | SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) { |
| 8783 | if (!TLI.getShouldFoldAtomicFences()) |
| 8784 | return SDValue(); |
| 8785 | |
| 8786 | SDValue atomic = N->getOperand(0); |
| 8787 | switch (atomic.getOpcode()) { |
| 8788 | case ISD::ATOMIC_CMP_SWAP: |
| 8789 | case ISD::ATOMIC_SWAP: |
| 8790 | case ISD::ATOMIC_LOAD_ADD: |
| 8791 | case ISD::ATOMIC_LOAD_SUB: |
| 8792 | case ISD::ATOMIC_LOAD_AND: |
| 8793 | case ISD::ATOMIC_LOAD_OR: |
| 8794 | case ISD::ATOMIC_LOAD_XOR: |
| 8795 | case ISD::ATOMIC_LOAD_NAND: |
| 8796 | case ISD::ATOMIC_LOAD_MIN: |
| 8797 | case ISD::ATOMIC_LOAD_MAX: |
| 8798 | case ISD::ATOMIC_LOAD_UMIN: |
| 8799 | case ISD::ATOMIC_LOAD_UMAX: |
| 8800 | break; |
| 8801 | default: |
| 8802 | return SDValue(); |
| 8803 | } |
| 8804 | |
| 8805 | SDValue fence = atomic.getOperand(0); |
| 8806 | if (fence.getOpcode() != ISD::MEMBARRIER) |
| 8807 | return SDValue(); |
| 8808 | |
| 8809 | switch (atomic.getOpcode()) { |
| 8810 | case ISD::ATOMIC_CMP_SWAP: |
| 8811 | return SDValue(DAG.UpdateNodeOperands(atomic.getNode(), |
| 8812 | fence.getOperand(0), |
| 8813 | atomic.getOperand(1), atomic.getOperand(2), |
| 8814 | atomic.getOperand(3)), atomic.getResNo()); |
| 8815 | case ISD::ATOMIC_SWAP: |
| 8816 | case ISD::ATOMIC_LOAD_ADD: |
| 8817 | case ISD::ATOMIC_LOAD_SUB: |
| 8818 | case ISD::ATOMIC_LOAD_AND: |
| 8819 | case ISD::ATOMIC_LOAD_OR: |
| 8820 | case ISD::ATOMIC_LOAD_XOR: |
| 8821 | case ISD::ATOMIC_LOAD_NAND: |
| 8822 | case ISD::ATOMIC_LOAD_MIN: |
| 8823 | case ISD::ATOMIC_LOAD_MAX: |
| 8824 | case ISD::ATOMIC_LOAD_UMIN: |
| 8825 | case ISD::ATOMIC_LOAD_UMAX: |
| 8826 | return SDValue(DAG.UpdateNodeOperands(atomic.getNode(), |
| 8827 | fence.getOperand(0), |
| 8828 | atomic.getOperand(1), atomic.getOperand(2)), |
| 8829 | atomic.getResNo()); |
| 8830 | default: |
| 8831 | return SDValue(); |
| 8832 | } |
| 8833 | } |
| 8834 | |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8835 | /// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8836 | /// an AND to a vector_shuffle with the destination vector and a zero vector. |
| 8837 | /// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==> |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8838 | /// vector_shuffle V, Zero, <0, 4, 2, 4> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8839 | SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8840 | EVT VT = N->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8841 | DebugLoc dl = N->getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8842 | SDValue LHS = N->getOperand(0); |
| 8843 | SDValue RHS = N->getOperand(1); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8844 | if (N->getOpcode() == ISD::AND) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8845 | if (RHS.getOpcode() == ISD::BITCAST) |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8846 | RHS = RHS.getOperand(0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8847 | if (RHS.getOpcode() == ISD::BUILD_VECTOR) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8848 | SmallVector<int, 8> Indices; |
| 8849 | unsigned NumElts = RHS.getNumOperands(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8850 | for (unsigned i = 0; i != NumElts; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8851 | SDValue Elt = RHS.getOperand(i); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8852 | if (!isa<ConstantSDNode>(Elt)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8853 | return SDValue(); |
Craig Topper | b7135e5 | 2012-04-09 05:59:53 +0000 | [diff] [blame] | 8854 | |
| 8855 | if (cast<ConstantSDNode>(Elt)->isAllOnesValue()) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8856 | Indices.push_back(i); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8857 | else if (cast<ConstantSDNode>(Elt)->isNullValue()) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8858 | Indices.push_back(NumElts); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8859 | else |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8860 | return SDValue(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8861 | } |
| 8862 | |
| 8863 | // Let's see if the target supports this vector_shuffle. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8864 | EVT RVT = RHS.getValueType(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8865 | if (!TLI.isVectorClearMaskLegal(Indices, RVT)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8866 | return SDValue(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8867 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8868 | // Return the new VECTOR_SHUFFLE node. |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 8869 | EVT EltVT = RVT.getVectorElementType(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8870 | SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(), |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 8871 | DAG.getConstant(0, EltVT)); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8872 | SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), |
| 8873 | RVT, &ZeroOps[0], ZeroOps.size()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8874 | LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8875 | SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8876 | return DAG.getNode(ISD::BITCAST, dl, VT, Shuf); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8877 | } |
| 8878 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 8879 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8880 | return SDValue(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8881 | } |
| 8882 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8883 | /// SimplifyVBinOp - Visit a binary vector operation, like ADD. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8884 | SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8885 | // After legalize, the target may be depending on adds and other |
| 8886 | // binary ops to provide legal ways to construct constants or other |
| 8887 | // things. Simplifying them may result in a loss of legality. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 8888 | if (LegalOperations) return SDValue(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8889 | |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 8890 | assert(N->getValueType(0).isVector() && |
| 8891 | "SimplifyVBinOp only works on vectors!"); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8892 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8893 | SDValue LHS = N->getOperand(0); |
| 8894 | SDValue RHS = N->getOperand(1); |
| 8895 | SDValue Shuffle = XformToShuffleWithZero(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8896 | if (Shuffle.getNode()) return Shuffle; |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8897 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8898 | // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 8899 | // this operation. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8900 | if (LHS.getOpcode() == ISD::BUILD_VECTOR && |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8901 | RHS.getOpcode() == ISD::BUILD_VECTOR) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8902 | SmallVector<SDValue, 8> Ops; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8903 | for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8904 | SDValue LHSOp = LHS.getOperand(i); |
| 8905 | SDValue RHSOp = RHS.getOperand(i); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 8906 | // If these two elements can't be folded, bail out. |
| 8907 | if ((LHSOp.getOpcode() != ISD::UNDEF && |
| 8908 | LHSOp.getOpcode() != ISD::Constant && |
| 8909 | LHSOp.getOpcode() != ISD::ConstantFP) || |
| 8910 | (RHSOp.getOpcode() != ISD::UNDEF && |
| 8911 | RHSOp.getOpcode() != ISD::Constant && |
| 8912 | RHSOp.getOpcode() != ISD::ConstantFP)) |
| 8913 | break; |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 8914 | |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 8915 | // Can't fold divide by zero. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8916 | if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV || |
| 8917 | N->getOpcode() == ISD::FDIV) { |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 8918 | if ((RHSOp.getOpcode() == ISD::Constant && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8919 | cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) || |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 8920 | (RHSOp.getOpcode() == ISD::ConstantFP && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8921 | cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero())) |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 8922 | break; |
| 8923 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 8924 | |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 8925 | EVT VT = LHSOp.getValueType(); |
Bob Wilson | db2b18f | 2011-10-18 17:34:47 +0000 | [diff] [blame] | 8926 | EVT RVT = RHSOp.getValueType(); |
| 8927 | if (RVT != VT) { |
| 8928 | // Integer BUILD_VECTOR operands may have types larger than the element |
| 8929 | // size (e.g., when the element type is not legal). Prior to type |
| 8930 | // legalization, the types may not match between the two BUILD_VECTORS. |
| 8931 | // Truncate one of the operands to make them match. |
| 8932 | if (RVT.getSizeInBits() > VT.getSizeInBits()) { |
| 8933 | RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp); |
| 8934 | } else { |
| 8935 | LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp); |
| 8936 | VT = RVT; |
| 8937 | } |
| 8938 | } |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 8939 | SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT, |
Evan Cheng | a083988 | 2010-05-18 00:03:40 +0000 | [diff] [blame] | 8940 | LHSOp, RHSOp); |
| 8941 | if (FoldOp.getOpcode() != ISD::UNDEF && |
| 8942 | FoldOp.getOpcode() != ISD::Constant && |
| 8943 | FoldOp.getOpcode() != ISD::ConstantFP) |
| 8944 | break; |
| 8945 | Ops.push_back(FoldOp); |
| 8946 | AddToWorkList(FoldOp.getNode()); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 8947 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8948 | |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 8949 | if (Ops.size() == LHS.getNumOperands()) |
| 8950 | return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), |
| 8951 | LHS.getValueType(), &Ops[0], Ops.size()); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 8952 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8953 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8954 | return SDValue(); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 8955 | } |
| 8956 | |
Craig Topper | dd201ff | 2012-09-11 01:45:21 +0000 | [diff] [blame] | 8957 | /// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG. |
| 8958 | SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) { |
| 8959 | // After legalize, the target may be depending on adds and other |
| 8960 | // binary ops to provide legal ways to construct constants or other |
| 8961 | // things. Simplifying them may result in a loss of legality. |
| 8962 | if (LegalOperations) return SDValue(); |
| 8963 | |
| 8964 | assert(N->getValueType(0).isVector() && |
| 8965 | "SimplifyVUnaryOp only works on vectors!"); |
| 8966 | |
| 8967 | SDValue N0 = N->getOperand(0); |
| 8968 | |
| 8969 | if (N0.getOpcode() != ISD::BUILD_VECTOR) |
| 8970 | return SDValue(); |
| 8971 | |
| 8972 | // Operand is a BUILD_VECTOR node, see if we can constant fold it. |
| 8973 | SmallVector<SDValue, 8> Ops; |
| 8974 | for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) { |
| 8975 | SDValue Op = N0.getOperand(i); |
| 8976 | if (Op.getOpcode() != ISD::UNDEF && |
| 8977 | Op.getOpcode() != ISD::ConstantFP) |
| 8978 | break; |
| 8979 | EVT EltVT = Op.getValueType(); |
| 8980 | SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op); |
| 8981 | if (FoldOp.getOpcode() != ISD::UNDEF && |
| 8982 | FoldOp.getOpcode() != ISD::ConstantFP) |
| 8983 | break; |
| 8984 | Ops.push_back(FoldOp); |
| 8985 | AddToWorkList(FoldOp.getNode()); |
| 8986 | } |
| 8987 | |
| 8988 | if (Ops.size() != N0.getNumOperands()) |
| 8989 | return SDValue(); |
| 8990 | |
| 8991 | return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), |
| 8992 | N0.getValueType(), &Ops[0], Ops.size()); |
| 8993 | } |
| 8994 | |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 8995 | SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0, |
| 8996 | SDValue N1, SDValue N2){ |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 8997 | assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8998 | |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 8999 | SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2, |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9000 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9001 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9002 | // If we got a simplified select_cc node back from SimplifySelectCC, then |
| 9003 | // break it down into a new SETCC node, and a new SELECT node, and then return |
| 9004 | // the SELECT node, since we were called with a SELECT node. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9005 | if (SCC.getNode()) { |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9006 | // Check to see if we got a select_cc back (to turn into setcc/select). |
| 9007 | // Otherwise, just return whatever node we got back, like fabs. |
| 9008 | if (SCC.getOpcode() == ISD::SELECT_CC) { |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9009 | SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(), |
| 9010 | N0.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9011 | SCC.getOperand(0), SCC.getOperand(1), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9012 | SCC.getOperand(4)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9013 | AddToWorkList(SETCC.getNode()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9014 | return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(), |
| 9015 | SCC.getOperand(2), SCC.getOperand(3), SETCC); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9016 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9017 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9018 | return SCC; |
| 9019 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9020 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 9021 | } |
| 9022 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9023 | /// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS |
| 9024 | /// are the two values being selected between, see if we can simplify the |
Chris Lattner | 729c6d1 | 2006-05-27 00:43:02 +0000 | [diff] [blame] | 9025 | /// select. Callers of this should assume that TheSelect is deleted if this |
| 9026 | /// returns true. As such, they should return the appropriate thing (e.g. the |
| 9027 | /// node) back to the top-level of the DAG combiner loop to avoid it being |
| 9028 | /// looked at. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9029 | bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9030 | SDValue RHS) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9031 | |
Nadav Rotem | f94fdb6 | 2011-02-11 19:57:47 +0000 | [diff] [blame] | 9032 | // Cannot simplify select with vector condition |
| 9033 | if (TheSelect->getOperand(0).getValueType().isVector()) return false; |
| 9034 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9035 | // If this is a select from two identical things, try to pull the operation |
| 9036 | // through the select. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9037 | if (LHS.getOpcode() != RHS.getOpcode() || |
| 9038 | !LHS.hasOneUse() || !RHS.hasOneUse()) |
| 9039 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9040 | |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9041 | // If this is a load and the token chain is identical, replace the select |
| 9042 | // of two loads with a load through a select of the address to load from. |
| 9043 | // This triggers in things like "select bool X, 10.0, 123.0" after the FP |
| 9044 | // constants have been dropped into the constant pool. |
| 9045 | if (LHS.getOpcode() == ISD::LOAD) { |
| 9046 | LoadSDNode *LLD = cast<LoadSDNode>(LHS); |
| 9047 | LoadSDNode *RLD = cast<LoadSDNode>(RHS); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9048 | |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9049 | // Token chains must be identical. |
| 9050 | if (LHS.getOperand(0) != RHS.getOperand(0) || |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 9051 | // Do not let this transformation reduce the number of volatile loads. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9052 | LLD->isVolatile() || RLD->isVolatile() || |
| 9053 | // If this is an EXTLOAD, the VT's must match. |
| 9054 | LLD->getMemoryVT() != RLD->getMemoryVT() || |
Duncan Sands | dcfd3a7 | 2010-11-18 20:05:18 +0000 | [diff] [blame] | 9055 | // If this is an EXTLOAD, the kind of extension must match. |
| 9056 | (LLD->getExtensionType() != RLD->getExtensionType() && |
| 9057 | // The only exception is if one of the extensions is anyext. |
| 9058 | LLD->getExtensionType() != ISD::EXTLOAD && |
| 9059 | RLD->getExtensionType() != ISD::EXTLOAD) || |
Dan Gohman | 75832d7 | 2009-10-31 14:14:04 +0000 | [diff] [blame] | 9060 | // FIXME: this discards src value information. This is |
| 9061 | // over-conservative. It would be beneficial to be able to remember |
Mon P Wang | fe240b1 | 2010-01-11 20:12:49 +0000 | [diff] [blame] | 9062 | // both potential memory locations. Since we are discarding |
| 9063 | // src value info, don't do the transformation if the memory |
| 9064 | // locations are not in the default address space. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9065 | LLD->getPointerInfo().getAddrSpace() != 0 || |
| 9066 | RLD->getPointerInfo().getAddrSpace() != 0) |
| 9067 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9068 | |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9069 | // Check that the select condition doesn't reach either load. If so, |
| 9070 | // folding this will induce a cycle into the DAG. If not, this is safe to |
| 9071 | // xform, so create a select of the addresses. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9072 | SDValue Addr; |
| 9073 | if (TheSelect->getOpcode() == ISD::SELECT) { |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9074 | SDNode *CondNode = TheSelect->getOperand(0).getNode(); |
| 9075 | if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) || |
| 9076 | (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode))) |
| 9077 | return false; |
| 9078 | Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(), |
| 9079 | LLD->getBasePtr().getValueType(), |
| 9080 | TheSelect->getOperand(0), LLD->getBasePtr(), |
| 9081 | RLD->getBasePtr()); |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9082 | } else { // Otherwise SELECT_CC |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9083 | SDNode *CondLHS = TheSelect->getOperand(0).getNode(); |
| 9084 | SDNode *CondRHS = TheSelect->getOperand(1).getNode(); |
| 9085 | |
| 9086 | if ((LLD->hasAnyUseOfValue(1) && |
| 9087 | (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) || |
Chris Lattner | 77d9521 | 2012-03-27 16:27:21 +0000 | [diff] [blame] | 9088 | (RLD->hasAnyUseOfValue(1) && |
| 9089 | (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS)))) |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9090 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9091 | |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9092 | Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(), |
| 9093 | LLD->getBasePtr().getValueType(), |
| 9094 | TheSelect->getOperand(0), |
| 9095 | TheSelect->getOperand(1), |
| 9096 | LLD->getBasePtr(), RLD->getBasePtr(), |
| 9097 | TheSelect->getOperand(4)); |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9098 | } |
| 9099 | |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9100 | SDValue Load; |
| 9101 | if (LLD->getExtensionType() == ISD::NON_EXTLOAD) { |
| 9102 | Load = DAG.getLoad(TheSelect->getValueType(0), |
| 9103 | TheSelect->getDebugLoc(), |
| 9104 | // FIXME: Discards pointer info. |
| 9105 | LLD->getChain(), Addr, MachinePointerInfo(), |
| 9106 | LLD->isVolatile(), LLD->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 9107 | LLD->isInvariant(), LLD->getAlignment()); |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9108 | } else { |
Duncan Sands | b9064bb | 2010-11-18 21:16:28 +0000 | [diff] [blame] | 9109 | Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ? |
| 9110 | RLD->getExtensionType() : LLD->getExtensionType(), |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9111 | TheSelect->getDebugLoc(), |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 9112 | TheSelect->getValueType(0), |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9113 | // FIXME: Discards pointer info. |
| 9114 | LLD->getChain(), Addr, MachinePointerInfo(), |
| 9115 | LLD->getMemoryVT(), LLD->isVolatile(), |
| 9116 | LLD->isNonTemporal(), LLD->getAlignment()); |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9117 | } |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9118 | |
| 9119 | // Users of the select now use the result of the load. |
| 9120 | CombineTo(TheSelect, Load); |
| 9121 | |
| 9122 | // Users of the old loads now use the new load's chain. We know the |
| 9123 | // old-load value is dead now. |
| 9124 | CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1)); |
| 9125 | CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1)); |
| 9126 | return true; |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9127 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9128 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9129 | return false; |
| 9130 | } |
| 9131 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9132 | /// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3 |
| 9133 | /// where 'cond' is the comparison specified by CC. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9134 | SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9135 | SDValue N2, SDValue N3, |
| 9136 | ISD::CondCode CC, bool NotExtCompare) { |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9137 | // (x ? y : y) -> y. |
| 9138 | if (N2 == N3) return N2; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9139 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9140 | EVT VT = N2.getValueType(); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9141 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
| 9142 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); |
| 9143 | ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9144 | |
| 9145 | // Determine if the condition we're dealing with is constant |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 9146 | SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 9147 | N0, N1, CC, DL, false); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9148 | if (SCC.getNode()) AddToWorkList(SCC.getNode()); |
| 9149 | ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9150 | |
| 9151 | // fold select_cc true, x, y -> x |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9152 | if (SCCC && !SCCC->isNullValue()) |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9153 | return N2; |
| 9154 | // fold select_cc false, x, y -> y |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9155 | if (SCCC && SCCC->isNullValue()) |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9156 | return N3; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9157 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9158 | // Check to see if we can simplify the select into an fabs node |
| 9159 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) { |
| 9160 | // Allow either -0.0 or 0.0 |
Dale Johannesen | 87503a6 | 2007-08-25 22:10:57 +0000 | [diff] [blame] | 9161 | if (CFP->getValueAPF().isZero()) { |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9162 | // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs |
| 9163 | if ((CC == ISD::SETGE || CC == ISD::SETGT) && |
| 9164 | N0 == N2 && N3.getOpcode() == ISD::FNEG && |
| 9165 | N2 == N3.getOperand(0)) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9166 | return DAG.getNode(ISD::FABS, DL, VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9167 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9168 | // select (setl[te] X, +/-0.0), fneg(X), X -> fabs |
| 9169 | if ((CC == ISD::SETLT || CC == ISD::SETLE) && |
| 9170 | N0 == N3 && N2.getOpcode() == ISD::FNEG && |
| 9171 | N2.getOperand(0) == N3) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9172 | return DAG.getNode(ISD::FABS, DL, VT, N3); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9173 | } |
| 9174 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9175 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9176 | // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)" |
| 9177 | // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0 |
| 9178 | // in it. This is a win when the constant is not otherwise available because |
| 9179 | // it replaces two constant pool loads with one. We only do this if the FP |
| 9180 | // type is known to be legal, because if it isn't, then we are before legalize |
| 9181 | // types an we want the other legalization to happen first (e.g. to avoid |
Mon P Wang | 0b7a786 | 2009-03-14 00:25:19 +0000 | [diff] [blame] | 9182 | // messing with soft float) and if the ConstantFP is not legal, because if |
| 9183 | // it is legal, we may not need to store the FP constant in a constant pool. |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9184 | if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2)) |
| 9185 | if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) { |
| 9186 | if (TLI.isTypeLegal(N2.getValueType()) && |
Mon P Wang | 0b7a786 | 2009-03-14 00:25:19 +0000 | [diff] [blame] | 9187 | (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) != |
| 9188 | TargetLowering::Legal) && |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9189 | // If both constants have multiple uses, then we won't need to do an |
| 9190 | // extra load, they are likely around in registers for other users. |
| 9191 | (TV->hasOneUse() || FV->hasOneUse())) { |
| 9192 | Constant *Elts[] = { |
| 9193 | const_cast<ConstantFP*>(FV->getConstantFPValue()), |
| 9194 | const_cast<ConstantFP*>(TV->getConstantFPValue()) |
| 9195 | }; |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 9196 | Type *FPTy = Elts[0]->getType(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 9197 | const DataLayout &TD = *TLI.getDataLayout(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9198 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9199 | // Create a ConstantArray of the two constants. |
Jay Foad | 2670108 | 2011-06-22 09:24:39 +0000 | [diff] [blame] | 9200 | Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9201 | SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(), |
| 9202 | TD.getPrefTypeAlignment(FPTy)); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 9203 | unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9204 | |
| 9205 | // Get the offsets to the 0 and 1 element of the array so that we can |
| 9206 | // select between them. |
| 9207 | SDValue Zero = DAG.getIntPtrConstant(0); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 9208 | unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9209 | SDValue One = DAG.getIntPtrConstant(EltSize); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9210 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9211 | SDValue Cond = DAG.getSetCC(DL, |
| 9212 | TLI.getSetCCResultType(N0.getValueType()), |
| 9213 | N0, N1, CC); |
Dan Gohman | 7b316c9 | 2011-09-22 23:01:29 +0000 | [diff] [blame] | 9214 | AddToWorkList(Cond.getNode()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9215 | SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(), |
| 9216 | Cond, One, Zero); |
Dan Gohman | 7b316c9 | 2011-09-22 23:01:29 +0000 | [diff] [blame] | 9217 | AddToWorkList(CstOffset.getNode()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9218 | CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx, |
| 9219 | CstOffset); |
Dan Gohman | 7b316c9 | 2011-09-22 23:01:29 +0000 | [diff] [blame] | 9220 | AddToWorkList(CPIdx.getNode()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9221 | return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx, |
Chris Lattner | 85ca106 | 2010-09-21 07:32:19 +0000 | [diff] [blame] | 9222 | MachinePointerInfo::getConstantPool(), false, |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 9223 | false, false, Alignment); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9224 | |
| 9225 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9226 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9227 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9228 | // Check to see if we can perform the "gzip trick", transforming |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9229 | // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A) |
Chris Lattner | e3152e5 | 2006-09-20 06:41:35 +0000 | [diff] [blame] | 9230 | if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9231 | (N1C->isNullValue() || // (a < 0) ? b : 0 |
| 9232 | (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0 |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9233 | EVT XType = N0.getValueType(); |
| 9234 | EVT AType = N2.getValueType(); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9235 | if (XType.bitsGE(AType)) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 9236 | // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9237 | // single-bit constant. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9238 | if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) { |
| 9239 | unsigned ShCtV = N2C->getAPIntValue().logBase2(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 9240 | ShCtV = XType.getSizeInBits()-ShCtV-1; |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9241 | SDValue ShCt = DAG.getConstant(ShCtV, |
| 9242 | getShiftAmountTy(N0.getValueType())); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9243 | SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9244 | XType, N0, ShCt); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9245 | AddToWorkList(Shift.getNode()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9246 | |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9247 | if (XType.bitsGT(AType)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9248 | Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9249 | AddToWorkList(Shift.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9250 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9251 | |
| 9252 | return DAG.getNode(ISD::AND, DL, AType, Shift, N2); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9253 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9254 | |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9255 | SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9256 | XType, N0, |
| 9257 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9258 | getShiftAmountTy(N0.getValueType()))); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9259 | AddToWorkList(Shift.getNode()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9260 | |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9261 | if (XType.bitsGT(AType)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9262 | Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9263 | AddToWorkList(Shift.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9264 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9265 | |
| 9266 | return DAG.getNode(ISD::AND, DL, AType, Shift, N2); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9267 | } |
| 9268 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9269 | |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9270 | // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A) |
| 9271 | // where y is has a single bit set. |
| 9272 | // A plaintext description would be, we can turn the SELECT_CC into an AND |
| 9273 | // when the condition can be materialized as an all-ones register. Any |
| 9274 | // single bit-test can be materialized as an all-ones register with |
| 9275 | // shift-left and shift-right-arith. |
| 9276 | if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND && |
| 9277 | N0->getValueType(0) == VT && |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9278 | N1C && N1C->isNullValue() && |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9279 | N2C && N2C->isNullValue()) { |
| 9280 | SDValue AndLHS = N0->getOperand(0); |
| 9281 | ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1)); |
| 9282 | if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) { |
| 9283 | // Shift the tested bit over the sign bit. |
| 9284 | APInt AndMask = ConstAndRHS->getAPIntValue(); |
| 9285 | SDValue ShlAmt = |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9286 | DAG.getConstant(AndMask.countLeadingZeros(), |
| 9287 | getShiftAmountTy(AndLHS.getValueType())); |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9288 | SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9289 | |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9290 | // Now arithmetic right shift it all the way over, so the result is either |
| 9291 | // all-ones, or zero. |
| 9292 | SDValue ShrAmt = |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9293 | DAG.getConstant(AndMask.getBitWidth()-1, |
| 9294 | getShiftAmountTy(Shl.getValueType())); |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9295 | SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9296 | |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9297 | return DAG.getNode(ISD::AND, DL, VT, Shr, N3); |
| 9298 | } |
| 9299 | } |
| 9300 | |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9301 | // fold select C, 16, 0 -> shl C, 4 |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9302 | if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() && |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 9303 | TLI.getBooleanContents(N0.getValueType().isVector()) == |
| 9304 | TargetLowering::ZeroOrOneBooleanContent) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9305 | |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 9306 | // If the caller doesn't want us to simplify this into a zext of a compare, |
| 9307 | // don't do it. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9308 | if (NotExtCompare && N2C->getAPIntValue() == 1) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9309 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9310 | |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9311 | // Get a SetCC of the condition |
| 9312 | // FIXME: Should probably make sure that setcc is legal if we ever have a |
| 9313 | // target where it isn't. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9314 | SDValue Temp, SCC; |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9315 | // cast from setcc result type to select result type |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 9316 | if (LegalTypes) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9317 | SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 9318 | N0, N1, CC); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9319 | if (N2.getValueType().bitsLT(SCC.getValueType())) |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9320 | Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType()); |
Chris Lattner | 555d8d6 | 2006-12-07 22:36:47 +0000 | [diff] [blame] | 9321 | else |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9322 | Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9323 | N2.getValueType(), SCC); |
Nate Begeman | b0d04a7 | 2006-02-18 02:40:58 +0000 | [diff] [blame] | 9324 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 9325 | SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9326 | Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9327 | N2.getValueType(), SCC); |
Nate Begeman | b0d04a7 | 2006-02-18 02:40:58 +0000 | [diff] [blame] | 9328 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9329 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9330 | AddToWorkList(SCC.getNode()); |
| 9331 | AddToWorkList(Temp.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9332 | |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9333 | if (N2C->getAPIntValue() == 1) |
Chris Lattner | c56a81d | 2007-04-11 06:43:25 +0000 | [diff] [blame] | 9334 | return Temp; |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9335 | |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9336 | // shl setcc result by log2 n2c |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9337 | return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9338 | DAG.getConstant(N2C->getAPIntValue().logBase2(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9339 | getShiftAmountTy(Temp.getValueType()))); |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9340 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9341 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9342 | // Check to see if this is the equivalent of setcc |
| 9343 | // FIXME: Turn all of these into setcc if setcc if setcc is legal |
| 9344 | // otherwise, go ahead with the folds. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9345 | if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9346 | EVT XType = N0.getValueType(); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 9347 | if (!LegalOperations || |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 9348 | TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) { |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9349 | SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9350 | if (Res.getValueType() != VT) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9351 | Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9352 | return Res; |
| 9353 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9354 | |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9355 | // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X)))) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9356 | if (N1C && N1C->isNullValue() && CC == ISD::SETEQ && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 9357 | (!LegalOperations || |
Duncan Sands | 184a876 | 2008-06-14 17:48:34 +0000 | [diff] [blame] | 9358 | TLI.isOperationLegal(ISD::CTLZ, XType))) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9359 | SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9360 | return DAG.getNode(ISD::SRL, DL, XType, Ctlz, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 9361 | DAG.getConstant(Log2_32(XType.getSizeInBits()), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9362 | getShiftAmountTy(Ctlz.getValueType()))); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9363 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9364 | // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1)) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9365 | if (N1C && N1C->isNullValue() && CC == ISD::SETGT) { |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9366 | SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(), |
| 9367 | XType, DAG.getConstant(0, XType), N0); |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 9368 | SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9369 | return DAG.getNode(ISD::SRL, DL, XType, |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 9370 | DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0), |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 9371 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9372 | getShiftAmountTy(XType))); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9373 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9374 | // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1)) |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9375 | if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9376 | SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0, |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9377 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9378 | getShiftAmountTy(N0.getValueType()))); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9379 | return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType)); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9380 | } |
| 9381 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9382 | |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9383 | // Check to see if this is an integer abs. |
| 9384 | // select_cc setg[te] X, 0, X, -X -> |
| 9385 | // select_cc setgt X, -1, X, -X -> |
| 9386 | // select_cc setl[te] X, 0, -X, X -> |
| 9387 | // select_cc setlt X, 1, -X, X -> |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9388 | // Y = sra (X, size(X)-1); xor (add (X, Y), Y) |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9389 | if (N1C) { |
| 9390 | ConstantSDNode *SubC = NULL; |
| 9391 | if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) || |
| 9392 | (N1C->isAllOnesValue() && CC == ISD::SETGT)) && |
| 9393 | N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) |
| 9394 | SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0)); |
| 9395 | else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) || |
| 9396 | (N1C->isOne() && CC == ISD::SETLT)) && |
| 9397 | N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1)) |
| 9398 | SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0)); |
| 9399 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9400 | EVT XType = N0.getValueType(); |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9401 | if (SubC && SubC->isNullValue() && XType.isInteger()) { |
| 9402 | SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType, |
| 9403 | N0, |
| 9404 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9405 | getShiftAmountTy(N0.getValueType()))); |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9406 | SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(), |
| 9407 | XType, N0, Shift); |
| 9408 | AddToWorkList(Shift.getNode()); |
| 9409 | AddToWorkList(Add.getNode()); |
| 9410 | return DAG.getNode(ISD::XOR, DL, XType, Add, Shift); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9411 | } |
| 9412 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9413 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9414 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 9415 | } |
| 9416 | |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 9417 | /// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9418 | SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9419 | SDValue N1, ISD::CondCode Cond, |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 9420 | DebugLoc DL, bool foldBooleans) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9421 | TargetLowering::DAGCombinerInfo |
Jakob Stoklund Olesen | 78d1264 | 2009-07-24 18:22:59 +0000 | [diff] [blame] | 9422 | DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 9423 | return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 9424 | } |
| 9425 | |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9426 | /// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant, |
| 9427 | /// return a DAG expression to select that will generate the same value by |
| 9428 | /// multiplying by a magic number. See: |
| 9429 | /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9430 | SDValue DAGCombiner::BuildSDIV(SDNode *N) { |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9431 | std::vector<SDNode*> Built; |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 9432 | SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 9433 | |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9434 | for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end(); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 9435 | ii != ee; ++ii) |
| 9436 | AddToWorkList(*ii); |
| 9437 | return S; |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9438 | } |
| 9439 | |
| 9440 | /// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant, |
| 9441 | /// return a DAG expression to select that will generate the same value by |
| 9442 | /// multiplying by a magic number. See: |
| 9443 | /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9444 | SDValue DAGCombiner::BuildUDIV(SDNode *N) { |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9445 | std::vector<SDNode*> Built; |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 9446 | SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built); |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9447 | |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9448 | for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end(); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 9449 | ii != ee; ++ii) |
| 9450 | AddToWorkList(*ii); |
| 9451 | return S; |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9452 | } |
| 9453 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9454 | /// FindBaseOffset - Return true if base is a frame index, which is known not |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 9455 | // to alias with anything but itself. Provides base object and offset as |
| 9456 | // results. |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9457 | static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset, |
Roman Divacky | 2943e37 | 2012-09-05 22:15:49 +0000 | [diff] [blame] | 9458 | const GlobalValue *&GV, const void *&CV) { |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9459 | // Assume it is a primitive operation. |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9460 | Base = Ptr; Offset = 0; GV = 0; CV = 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9461 | |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9462 | // If it's an adding a simple constant then integrate the offset. |
| 9463 | if (Base.getOpcode() == ISD::ADD) { |
| 9464 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) { |
| 9465 | Base = Base.getOperand(0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 9466 | Offset += C->getZExtValue(); |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9467 | } |
| 9468 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9469 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9470 | // Return the underlying GlobalValue, and update the Offset. Return false |
| 9471 | // for GlobalAddressSDNode since the same GlobalAddress may be represented |
| 9472 | // by multiple nodes with different offsets. |
| 9473 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) { |
| 9474 | GV = G->getGlobal(); |
| 9475 | Offset += G->getOffset(); |
| 9476 | return false; |
| 9477 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9478 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9479 | // Return the underlying Constant value, and update the Offset. Return false |
| 9480 | // for ConstantSDNodes since the same constant pool entry may be represented |
| 9481 | // by multiple nodes with different offsets. |
| 9482 | if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) { |
Roman Divacky | 2943e37 | 2012-09-05 22:15:49 +0000 | [diff] [blame] | 9483 | CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal() |
| 9484 | : (const void *)C->getConstVal(); |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9485 | Offset += C->getOffset(); |
| 9486 | return false; |
| 9487 | } |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9488 | // If it's any of the following then it can't alias with anything but itself. |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9489 | return isa<FrameIndexSDNode>(Base); |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9490 | } |
| 9491 | |
| 9492 | /// isAlias - Return true if there is any possibility that the two addresses |
| 9493 | /// overlap. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9494 | bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1, |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 9495 | const Value *SrcValue1, int SrcValueOffset1, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9496 | unsigned SrcValueAlign1, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9497 | const MDNode *TBAAInfo1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9498 | SDValue Ptr2, int64_t Size2, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9499 | const Value *SrcValue2, int SrcValueOffset2, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9500 | unsigned SrcValueAlign2, |
| 9501 | const MDNode *TBAAInfo2) const { |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9502 | // If they are the same then they must be aliases. |
| 9503 | if (Ptr1 == Ptr2) return true; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9504 | |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9505 | // Gather base node and offset information. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9506 | SDValue Base1, Base2; |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9507 | int64_t Offset1, Offset2; |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 9508 | const GlobalValue *GV1, *GV2; |
Roman Divacky | 2943e37 | 2012-09-05 22:15:49 +0000 | [diff] [blame] | 9509 | const void *CV1, *CV2; |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9510 | bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1); |
| 9511 | bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9512 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9513 | // If they have a same base address then check to see if they overlap. |
| 9514 | if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2))) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9515 | return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9516 | |
Owen Anderson | 4a9f150 | 2010-09-20 20:39:59 +0000 | [diff] [blame] | 9517 | // It is possible for different frame indices to alias each other, mostly |
| 9518 | // when tail call optimization reuses return address slots for arguments. |
| 9519 | // To catch this case, look up the actual index of frame indices to compute |
| 9520 | // the real alias relationship. |
| 9521 | if (isFrameIndex1 && isFrameIndex2) { |
| 9522 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 9523 | Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex()); |
| 9524 | Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex()); |
| 9525 | return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1); |
| 9526 | } |
| 9527 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9528 | // Otherwise, if we know what the bases are, and they aren't identical, then |
Owen Anderson | 4a9f150 | 2010-09-20 20:39:59 +0000 | [diff] [blame] | 9529 | // we know they cannot alias. |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9530 | if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2)) |
| 9531 | return false; |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 9532 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9533 | // If we know required SrcValue1 and SrcValue2 have relatively large alignment |
| 9534 | // compared to the size and offset of the access, we may be able to prove they |
| 9535 | // do not alias. This check is conservative for now to catch cases created by |
| 9536 | // splitting vector types. |
| 9537 | if ((SrcValueAlign1 == SrcValueAlign2) && |
| 9538 | (SrcValueOffset1 != SrcValueOffset2) && |
| 9539 | (Size1 == Size2) && (SrcValueAlign1 > Size1)) { |
| 9540 | int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1; |
| 9541 | int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9542 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9543 | // There is no overlap between these relatively aligned accesses of similar |
| 9544 | // size, return no alias. |
| 9545 | if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1) |
| 9546 | return false; |
| 9547 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9548 | |
Jim Laskey | 07a2709 | 2006-10-18 19:08:31 +0000 | [diff] [blame] | 9549 | if (CombinerGlobalAA) { |
| 9550 | // Use alias analysis information. |
Dan Gohman | e9c8fa0 | 2007-08-27 16:32:11 +0000 | [diff] [blame] | 9551 | int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2); |
| 9552 | int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset; |
| 9553 | int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9554 | AliasAnalysis::AliasResult AAResult = |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9555 | AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1), |
| 9556 | AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2)); |
Jim Laskey | 07a2709 | 2006-10-18 19:08:31 +0000 | [diff] [blame] | 9557 | if (AAResult == AliasAnalysis::NoAlias) |
| 9558 | return false; |
| 9559 | } |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 9560 | |
| 9561 | // Otherwise we have to assume they alias. |
| 9562 | return true; |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9563 | } |
| 9564 | |
| 9565 | /// FindAliasInfo - Extracts the relevant alias information from the memory |
| 9566 | /// node. Returns true if the operand was a load. |
Jim Laskey | 7ca56af | 2006-10-11 13:47:09 +0000 | [diff] [blame] | 9567 | bool DAGCombiner::FindAliasInfo(SDNode *N, |
Benjamin Kramer | ae4746b | 2012-01-15 11:50:43 +0000 | [diff] [blame] | 9568 | SDValue &Ptr, int64_t &Size, |
| 9569 | const Value *&SrcValue, |
| 9570 | int &SrcValueOffset, |
| 9571 | unsigned &SrcValueAlign, |
| 9572 | const MDNode *&TBAAInfo) const { |
| 9573 | LSBaseSDNode *LS = cast<LSBaseSDNode>(N); |
| 9574 | |
| 9575 | Ptr = LS->getBasePtr(); |
| 9576 | Size = LS->getMemoryVT().getSizeInBits() >> 3; |
| 9577 | SrcValue = LS->getSrcValue(); |
| 9578 | SrcValueOffset = LS->getSrcValueOffset(); |
| 9579 | SrcValueAlign = LS->getOriginalAlignment(); |
| 9580 | TBAAInfo = LS->getTBAAInfo(); |
| 9581 | return isa<LoadSDNode>(LS); |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9582 | } |
| 9583 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9584 | /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes, |
| 9585 | /// looking for aliasing nodes and adding them to the Aliases vector. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9586 | void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain, |
| 9587 | SmallVector<SDValue, 8> &Aliases) { |
| 9588 | SmallVector<SDValue, 8> Chains; // List of chains to visit. |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9589 | SmallPtrSet<SDNode *, 16> Visited; // Visited node set. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9590 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9591 | // Get alias information for node. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9592 | SDValue Ptr; |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9593 | int64_t Size; |
| 9594 | const Value *SrcValue; |
| 9595 | int SrcValueOffset; |
| 9596 | unsigned SrcValueAlign; |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9597 | const MDNode *SrcTBAAInfo; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9598 | bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9599 | SrcValueAlign, SrcTBAAInfo); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9600 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9601 | // Starting off. |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9602 | Chains.push_back(OriginalChain); |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9603 | unsigned Depth = 0; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9604 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9605 | // Look at each chain and determine if it is an alias. If so, add it to the |
| 9606 | // aliases list. If not, then continue up the chain looking for the next |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9607 | // candidate. |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9608 | while (!Chains.empty()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9609 | SDValue Chain = Chains.back(); |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9610 | Chains.pop_back(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9611 | |
| 9612 | // For TokenFactor nodes, look at each operand and only continue up the |
| 9613 | // chain until we find two aliases. If we've seen two aliases, assume we'll |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9614 | // find more and revert to original chain since the xform is unlikely to be |
| 9615 | // profitable. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9616 | // |
| 9617 | // FIXME: The depth check could be made to return the last non-aliasing |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9618 | // chain we found before we hit a tokenfactor rather than the original |
| 9619 | // chain. |
| 9620 | if (Depth > 6 || Aliases.size() == 2) { |
| 9621 | Aliases.clear(); |
| 9622 | Aliases.push_back(OriginalChain); |
| 9623 | break; |
| 9624 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9625 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9626 | // Don't bother if we've been before. |
| 9627 | if (!Visited.insert(Chain.getNode())) |
| 9628 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9629 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9630 | switch (Chain.getOpcode()) { |
| 9631 | case ISD::EntryToken: |
| 9632 | // Entry token is ideal chain operand, but handled in FindBetterChain. |
| 9633 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9634 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9635 | case ISD::LOAD: |
| 9636 | case ISD::STORE: { |
| 9637 | // Get alias information for Chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9638 | SDValue OpPtr; |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9639 | int64_t OpSize; |
| 9640 | const Value *OpSrcValue; |
| 9641 | int OpSrcValueOffset; |
| 9642 | unsigned OpSrcValueAlign; |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9643 | const MDNode *OpSrcTBAAInfo; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9644 | bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9645 | OpSrcValue, OpSrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9646 | OpSrcValueAlign, |
| 9647 | OpSrcTBAAInfo); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9648 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9649 | // If chain is alias then stop here. |
| 9650 | if (!(IsLoad && IsOpLoad) && |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9651 | isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9652 | SrcTBAAInfo, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9653 | OpPtr, OpSize, OpSrcValue, OpSrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9654 | OpSrcValueAlign, OpSrcTBAAInfo)) { |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9655 | Aliases.push_back(Chain); |
| 9656 | } else { |
| 9657 | // Look further up the chain. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9658 | Chains.push_back(Chain.getOperand(0)); |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9659 | ++Depth; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9660 | } |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9661 | break; |
| 9662 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9663 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9664 | case ISD::TokenFactor: |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9665 | // We have to check each of the operands of the token factor for "small" |
| 9666 | // token factors, so we queue them up. Adding the operands to the queue |
| 9667 | // (stack) in reverse order maintains the original order and increases the |
| 9668 | // likelihood that getNode will find a matching token factor (CSE.) |
| 9669 | if (Chain.getNumOperands() > 16) { |
| 9670 | Aliases.push_back(Chain); |
| 9671 | break; |
| 9672 | } |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9673 | for (unsigned n = Chain.getNumOperands(); n;) |
| 9674 | Chains.push_back(Chain.getOperand(--n)); |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9675 | ++Depth; |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9676 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9677 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9678 | default: |
| 9679 | // For all other instructions we will just have to take what we can get. |
| 9680 | Aliases.push_back(Chain); |
| 9681 | break; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9682 | } |
| 9683 | } |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9684 | } |
| 9685 | |
| 9686 | /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking |
| 9687 | /// for a better chain (aliasing node.) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9688 | SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) { |
| 9689 | SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9690 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9691 | // Accumulate all the aliases to this node. |
| 9692 | GatherAllAliases(N, OldChain, Aliases); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9693 | |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 9694 | // If no operands then chain to entry token. |
| 9695 | if (Aliases.size() == 0) |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9696 | return DAG.getEntryNode(); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 9697 | |
| 9698 | // If a single operand then chain to it. We don't need to revisit it. |
| 9699 | if (Aliases.size() == 1) |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9700 | return Aliases[0]; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9701 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9702 | // Construct a custom tailored token factor. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9703 | return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9704 | &Aliases[0], Aliases.size()); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9705 | } |
| 9706 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 9707 | // SelectionDAG::Combine - This is the entry point for the file. |
| 9708 | // |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 9709 | void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA, |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 9710 | CodeGenOpt::Level OptLevel) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 9711 | /// run - This is the main entry point to this class. |
| 9712 | /// |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 9713 | DAGCombiner(*this, AA, OptLevel).Run(Level); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 9714 | } |