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); |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 273 | SDValue reduceBuildVecExtToExtBuildVec(SDNode *N); |
Michael Liao | 1a5cc71 | 2012-10-24 04:14:18 +0000 | [diff] [blame] | 274 | SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 275 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 276 | SDValue GetDemandedBits(SDValue V, const APInt &Mask); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 277 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 278 | /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes, |
| 279 | /// looking for aliasing nodes and adding them to the Aliases vector. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 280 | void GatherAllAliases(SDNode *N, SDValue OriginalChain, |
| 281 | SmallVector<SDValue, 8> &Aliases); |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 282 | |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 283 | /// isAlias - Return true if there is any possibility that the two addresses |
| 284 | /// overlap. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 285 | bool isAlias(SDValue Ptr1, int64_t Size1, |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 286 | const Value *SrcValue1, int SrcValueOffset1, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 287 | unsigned SrcValueAlign1, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 288 | const MDNode *TBAAInfo1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 289 | SDValue Ptr2, int64_t Size2, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 290 | const Value *SrcValue2, int SrcValueOffset2, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 291 | unsigned SrcValueAlign2, |
| 292 | const MDNode *TBAAInfo2) const; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 293 | |
Jim Laskey | 7ca56af | 2006-10-11 13:47:09 +0000 | [diff] [blame] | 294 | /// FindAliasInfo - Extracts the relevant alias information from the memory |
| 295 | /// node. Returns true if the operand was a load. |
| 296 | bool FindAliasInfo(SDNode *N, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 297 | SDValue &Ptr, int64_t &Size, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 298 | const Value *&SrcValue, int &SrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 299 | unsigned &SrcValueAlignment, |
| 300 | const MDNode *&TBAAInfo) const; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 301 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 302 | /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 303 | /// looking for a better chain (aliasing node.) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 304 | SDValue FindBetterChain(SDNode *N, SDValue Chain); |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 305 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 306 | /// Merge consecutive store operations into a wide store. |
| 307 | /// This optimization uses wide integers or vectors when possible. |
| 308 | /// \return True if some memory operations were changed. |
| 309 | bool MergeConsecutiveStores(StoreSDNode *N); |
| 310 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 311 | public: |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 312 | DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL) |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 313 | : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes), |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 314 | OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {} |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 315 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 316 | /// Run - runs the dag combiner on all nodes in the work list |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 317 | void Run(CombineLevel AtLevel); |
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 | SelectionDAG &getDAG() const { return DAG; } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 320 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 321 | /// getShiftAmountTy - Returns a type large enough to hold any valid |
| 322 | /// shift amount - before type legalization these can be huge. |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 323 | EVT getShiftAmountTy(EVT LHSTy) { |
| 324 | return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy(); |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 325 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 326 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 327 | /// isTypeLegal - This method returns true if we are running before type |
| 328 | /// legalization or if the specified VT is legal. |
| 329 | bool isTypeLegal(const EVT &VT) { |
| 330 | if (!LegalTypes) return true; |
| 331 | return TLI.isTypeLegal(VT); |
| 332 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 333 | }; |
| 334 | } |
| 335 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 336 | |
| 337 | namespace { |
| 338 | /// WorkListRemover - This class is a DAGUpdateListener that removes any deleted |
| 339 | /// nodes from the worklist. |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 340 | class WorkListRemover : public SelectionDAG::DAGUpdateListener { |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 341 | DAGCombiner &DC; |
| 342 | public: |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 343 | explicit WorkListRemover(DAGCombiner &dc) |
| 344 | : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {} |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 345 | |
Duncan Sands | edfcf59 | 2008-06-11 11:42:12 +0000 | [diff] [blame] | 346 | virtual void NodeDeleted(SDNode *N, SDNode *E) { |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 347 | DC.removeFromWorkList(N); |
| 348 | } |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 349 | }; |
| 350 | } |
| 351 | |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 352 | //===----------------------------------------------------------------------===// |
| 353 | // TargetLowering::DAGCombinerInfo implementation |
| 354 | //===----------------------------------------------------------------------===// |
| 355 | |
| 356 | void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) { |
| 357 | ((DAGCombiner*)DC)->AddToWorkList(N); |
| 358 | } |
| 359 | |
Cameron Zwarich | ed3caf9 | 2011-04-02 02:40:26 +0000 | [diff] [blame] | 360 | void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) { |
| 361 | ((DAGCombiner*)DC)->removeFromWorkList(N); |
| 362 | } |
| 363 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 364 | SDValue TargetLowering::DAGCombinerInfo:: |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 365 | CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) { |
| 366 | return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 369 | SDValue TargetLowering::DAGCombinerInfo:: |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 370 | CombineTo(SDNode *N, SDValue Res, bool AddTo) { |
| 371 | return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 375 | SDValue TargetLowering::DAGCombinerInfo:: |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 376 | CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) { |
| 377 | return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo); |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 380 | void TargetLowering::DAGCombinerInfo:: |
| 381 | CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { |
| 382 | return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO); |
| 383 | } |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 384 | |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 385 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 386 | // Helper Functions |
| 387 | //===----------------------------------------------------------------------===// |
| 388 | |
| 389 | /// isNegatibleForFree - Return 1 if we can compute the negated form of the |
| 390 | /// specified expression for the same cost as the expression itself, or 2 if we |
| 391 | /// can compute the negated form more cheaply than the expression itself. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 392 | static char isNegatibleForFree(SDValue Op, bool LegalOperations, |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 393 | const TargetLowering &TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 394 | const TargetOptions *Options, |
Chris Lattner | 0254e70 | 2008-02-26 07:04:54 +0000 | [diff] [blame] | 395 | unsigned Depth = 0) { |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 396 | // fneg is removable even if it has multiple uses. |
| 397 | if (Op.getOpcode() == ISD::FNEG) return 2; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 398 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 399 | // Don't allow anything with multiple uses. |
| 400 | if (!Op.hasOneUse()) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 401 | |
Chris Lattner | 3adf951 | 2007-05-25 02:19:06 +0000 | [diff] [blame] | 402 | // Don't recurse exponentially. |
| 403 | if (Depth > 6) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 404 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 405 | switch (Op.getOpcode()) { |
| 406 | default: return false; |
| 407 | case ISD::ConstantFP: |
Chris Lattner | 0254e70 | 2008-02-26 07:04:54 +0000 | [diff] [blame] | 408 | // Don't invert constant FP values after legalize. The negated constant |
| 409 | // isn't necessarily legal. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 410 | return LegalOperations ? 0 : 1; |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 411 | case ISD::FADD: |
| 412 | // FIXME: determine better conditions for this xform. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 413 | if (!Options->UnsafeFPMath) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 414 | |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 415 | // After operation legalization, it might not be legal to create new FSUBs. |
| 416 | if (LegalOperations && |
| 417 | !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) |
| 418 | return 0; |
| 419 | |
Craig Topper | 956342b | 2012-09-09 22:58:45 +0000 | [diff] [blame] | 420 | // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 421 | if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, |
| 422 | Options, Depth + 1)) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 423 | return V; |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 424 | // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 425 | return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 426 | Depth + 1); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 427 | case ISD::FSUB: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 428 | // 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] | 429 | if (!Options->UnsafeFPMath) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 430 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 431 | // fold (fneg (fsub A, B)) -> (fsub B, A) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 432 | return 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 433 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 434 | case ISD::FMUL: |
| 435 | case ISD::FDIV: |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 436 | if (Options->HonorSignDependentRoundingFPMath()) return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 437 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 438 | // 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] | 439 | if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, |
| 440 | Options, Depth + 1)) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 441 | return V; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 442 | |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 443 | return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 444 | Depth + 1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 445 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 446 | case ISD::FP_EXTEND: |
| 447 | case ISD::FP_ROUND: |
| 448 | case ISD::FSIN: |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 449 | return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 450 | Depth + 1); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 451 | } |
| 452 | } |
| 453 | |
| 454 | /// GetNegatedExpression - If isNegatibleForFree returns true, this function |
| 455 | /// returns the newly negated expression. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 456 | static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 457 | bool LegalOperations, unsigned Depth = 0) { |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 458 | // fneg is removable even if it has multiple uses. |
| 459 | if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 460 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 461 | // Don't allow anything with multiple uses. |
| 462 | assert(Op.hasOneUse() && "Unknown reuse!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 463 | |
Chris Lattner | 3adf951 | 2007-05-25 02:19:06 +0000 | [diff] [blame] | 464 | assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree"); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 465 | switch (Op.getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 466 | default: llvm_unreachable("Unknown code"); |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 467 | case ISD::ConstantFP: { |
| 468 | APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF(); |
| 469 | V.changeSign(); |
| 470 | return DAG.getConstantFP(V, Op.getValueType()); |
| 471 | } |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 472 | case ISD::FADD: |
| 473 | // FIXME: determine better conditions for this xform. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 474 | assert(DAG.getTarget().Options.UnsafeFPMath); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 475 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 476 | // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 477 | if (isNegatibleForFree(Op.getOperand(0), LegalOperations, |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 478 | DAG.getTargetLoweringInfo(), |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 479 | &DAG.getTarget().Options, Depth+1)) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 480 | return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 481 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 482 | LegalOperations, Depth+1), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 483 | Op.getOperand(1)); |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 484 | // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 485 | return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 486 | GetNegatedExpression(Op.getOperand(1), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 487 | LegalOperations, Depth+1), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 488 | Op.getOperand(0)); |
| 489 | case ISD::FSUB: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 490 | // 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] | 491 | assert(DAG.getTarget().Options.UnsafeFPMath); |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 492 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 493 | // fold (fneg (fsub 0, B)) -> B |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 494 | if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0))) |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 495 | if (N0CFP->getValueAPF().isZero()) |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 496 | return Op.getOperand(1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 497 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 498 | // fold (fneg (fsub A, B)) -> (fsub B, A) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 499 | return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(), |
| 500 | Op.getOperand(1), Op.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 501 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 502 | case ISD::FMUL: |
| 503 | case ISD::FDIV: |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 504 | assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 505 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 506 | // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 507 | if (isNegatibleForFree(Op.getOperand(0), LegalOperations, |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 508 | DAG.getTargetLoweringInfo(), |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 509 | &DAG.getTarget().Options, Depth+1)) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 510 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 511 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 512 | LegalOperations, Depth+1), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 513 | Op.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 514 | |
Bill Wendling | d34470c | 2009-01-30 23:10:18 +0000 | [diff] [blame] | 515 | // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y)) |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 516 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(), |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 517 | Op.getOperand(0), |
Chris Lattner | 0254e70 | 2008-02-26 07:04:54 +0000 | [diff] [blame] | 518 | GetNegatedExpression(Op.getOperand(1), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 519 | LegalOperations, Depth+1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 520 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 521 | case ISD::FP_EXTEND: |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 522 | case ISD::FSIN: |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 523 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 524 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 525 | LegalOperations, Depth+1)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 526 | case ISD::FP_ROUND: |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 527 | return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 528 | GetNegatedExpression(Op.getOperand(0), DAG, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 529 | LegalOperations, Depth+1), |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 530 | Op.getOperand(1)); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 531 | } |
| 532 | } |
Chris Lattner | 2466472 | 2006-03-01 04:53:38 +0000 | [diff] [blame] | 533 | |
| 534 | |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 535 | // isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc |
| 536 | // 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] | 537 | // Also, set the incoming LHS, RHS, and CC references to the appropriate |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 538 | // nodes based on the type of node we are checking. This simplifies life a |
| 539 | // bit for the callers. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 540 | static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS, |
| 541 | SDValue &CC) { |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 542 | if (N.getOpcode() == ISD::SETCC) { |
| 543 | LHS = N.getOperand(0); |
| 544 | RHS = N.getOperand(1); |
| 545 | CC = N.getOperand(2); |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 546 | return true; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 547 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 548 | if (N.getOpcode() == ISD::SELECT_CC && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 549 | N.getOperand(2).getOpcode() == ISD::Constant && |
| 550 | N.getOperand(3).getOpcode() == ISD::Constant && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 551 | cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 && |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 552 | cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) { |
| 553 | LHS = N.getOperand(0); |
| 554 | RHS = N.getOperand(1); |
| 555 | CC = N.getOperand(4); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 556 | return true; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 557 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 558 | return false; |
| 559 | } |
| 560 | |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 561 | // isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only |
| 562 | // one use. If this is true, it allows the users to invert the operation for |
| 563 | // free when it is profitable to do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 564 | static bool isOneUseSetCC(SDValue N) { |
| 565 | SDValue N0, N1, N2; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 566 | if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse()) |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 567 | return true; |
| 568 | return false; |
| 569 | } |
| 570 | |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 571 | SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL, |
| 572 | SDValue N0, SDValue N1) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 573 | EVT VT = N0.getValueType(); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 574 | if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) { |
| 575 | if (isa<ConstantSDNode>(N1)) { |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 576 | // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2)) |
Bill Wendling | 6af7618 | 2009-01-30 20:50:00 +0000 | [diff] [blame] | 577 | SDValue OpNode = |
| 578 | DAG.FoldConstantArithmetic(Opc, VT, |
| 579 | cast<ConstantSDNode>(N0.getOperand(1)), |
| 580 | cast<ConstantSDNode>(N1)); |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 581 | return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 582 | } |
| 583 | if (N0.hasOneUse()) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 584 | // 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] | 585 | SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT, |
| 586 | N0.getOperand(0), N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 587 | AddToWorkList(OpNode.getNode()); |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 588 | return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1)); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 589 | } |
| 590 | } |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 591 | |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 592 | if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) { |
| 593 | if (isa<ConstantSDNode>(N0)) { |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 594 | // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2)) |
Bill Wendling | 6af7618 | 2009-01-30 20:50:00 +0000 | [diff] [blame] | 595 | SDValue OpNode = |
| 596 | DAG.FoldConstantArithmetic(Opc, VT, |
| 597 | cast<ConstantSDNode>(N1.getOperand(1)), |
| 598 | cast<ConstantSDNode>(N0)); |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 599 | return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 600 | } |
| 601 | if (N1.hasOneUse()) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 602 | // 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] | 603 | SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT, |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 604 | N1.getOperand(0), N0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 605 | AddToWorkList(OpNode.getNode()); |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 606 | return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1)); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 607 | } |
| 608 | } |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 609 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 610 | return SDValue(); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 611 | } |
| 612 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 613 | SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, |
| 614 | bool AddTo) { |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 615 | assert(N->getNumValues() == NumTo && "Broken CombineTo call!"); |
| 616 | ++NodesCombined; |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 617 | DEBUG(dbgs() << "\nReplacing.1 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 618 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 619 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 620 | To[0].getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 621 | dbgs() << " and " << NumTo-1 << " other values\n"; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 622 | for (unsigned i = 0, e = NumTo; i != e; ++i) |
Jakob Stoklund Olesen | 9f0d4e6 | 2009-12-03 05:15:35 +0000 | [diff] [blame] | 623 | assert((!To[i].getNode() || |
| 624 | N->getValueType(i) == To[i].getValueType()) && |
Dan Gohman | 764fd0c | 2009-01-21 15:17:51 +0000 | [diff] [blame] | 625 | "Cannot combine value to value of different type!")); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 626 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 627 | DAG.ReplaceAllUsesWith(N, To); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 628 | if (AddTo) { |
| 629 | // Push the new nodes and any users onto the worklist |
| 630 | for (unsigned i = 0, e = NumTo; i != e; ++i) { |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 631 | if (To[i].getNode()) { |
| 632 | AddToWorkList(To[i].getNode()); |
| 633 | AddUsersToWorkList(To[i].getNode()); |
| 634 | } |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 635 | } |
| 636 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 637 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 638 | // Finally, if the node is now dead, remove it from the graph. The node |
| 639 | // may not be dead if the replacement process recursively simplified to |
| 640 | // something else needing this node. |
| 641 | if (N->use_empty()) { |
| 642 | // Nodes can be reintroduced into the worklist. Make sure we do not |
| 643 | // process a node that has been replaced. |
| 644 | removeFromWorkList(N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 645 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 646 | // Finally, since the node is now dead, remove it from the graph. |
| 647 | DAG.DeleteNode(N); |
| 648 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 649 | return SDValue(N, 0); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 650 | } |
| 651 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 652 | void DAGCombiner:: |
| 653 | CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 654 | // Replace all uses. If any nodes become isomorphic to other nodes and |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 655 | // are deleted, make sure to remove them from our worklist. |
| 656 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 657 | DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 658 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 659 | // Push the new node and any (possibly new) users onto the worklist. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 660 | AddToWorkList(TLO.New.getNode()); |
| 661 | AddUsersToWorkList(TLO.New.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 662 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 663 | // Finally, if the node is now dead, remove it from the graph. The node |
| 664 | // may not be dead if the replacement process recursively simplified to |
| 665 | // something else needing this node. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 666 | if (TLO.Old.getNode()->use_empty()) { |
| 667 | removeFromWorkList(TLO.Old.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 668 | |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 669 | // If the operands of this node are only used by the node, they will now |
| 670 | // 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] | 671 | for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i) |
| 672 | if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse()) |
| 673 | AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 674 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 675 | DAG.DeleteNode(TLO.Old.getNode()); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 676 | } |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | /// SimplifyDemandedBits - Check the specified integer node value to see if |
| 680 | /// it can be simplified or if things it uses can be simplified by bit |
| 681 | /// propagation. If so, return true. |
| 682 | bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 683 | TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 684 | APInt KnownZero, KnownOne; |
| 685 | if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO)) |
| 686 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 687 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 688 | // Revisit the node. |
| 689 | AddToWorkList(Op.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 690 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 691 | // Replace the old value with the new one. |
| 692 | ++NodesCombined; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 693 | DEBUG(dbgs() << "\nReplacing.2 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 694 | TLO.Old.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 695 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 696 | TLO.New.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 697 | dbgs() << '\n'); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 698 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 699 | CommitTargetLoweringOpt(TLO); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 700 | return true; |
| 701 | } |
| 702 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 703 | void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) { |
| 704 | DebugLoc dl = Load->getDebugLoc(); |
| 705 | EVT VT = Load->getValueType(0); |
| 706 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0)); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 707 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 708 | DEBUG(dbgs() << "\nReplacing.9 "; |
| 709 | Load->dump(&DAG); |
| 710 | dbgs() << "\nWith: "; |
| 711 | Trunc.getNode()->dump(&DAG); |
| 712 | dbgs() << '\n'); |
| 713 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 714 | DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc); |
| 715 | DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1)); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 716 | removeFromWorkList(Load); |
| 717 | DAG.DeleteNode(Load); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 718 | AddToWorkList(Trunc.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) { |
| 722 | Replace = false; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 723 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 724 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) { |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 725 | EVT MemVT = LD->getMemoryVT(); |
| 726 | ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 727 | ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 728 | : ISD::EXTLOAD) |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 729 | : LD->getExtensionType(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 730 | Replace = true; |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 731 | return DAG.getExtLoad(ExtType, dl, PVT, |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 732 | LD->getChain(), LD->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 733 | LD->getPointerInfo(), |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 734 | MemVT, LD->isVolatile(), |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 735 | LD->isNonTemporal(), LD->getAlignment()); |
| 736 | } |
| 737 | |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 738 | unsigned Opc = Op.getOpcode(); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 739 | switch (Opc) { |
| 740 | default: break; |
| 741 | case ISD::AssertSext: |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 742 | return DAG.getNode(ISD::AssertSext, dl, PVT, |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 743 | SExtPromoteOperand(Op.getOperand(0), PVT), |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 744 | Op.getOperand(1)); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 745 | case ISD::AssertZext: |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 746 | return DAG.getNode(ISD::AssertZext, dl, PVT, |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 747 | ZExtPromoteOperand(Op.getOperand(0), PVT), |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 748 | Op.getOperand(1)); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 749 | case ISD::Constant: { |
| 750 | unsigned ExtOpc = |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 751 | Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 752 | return DAG.getNode(ExtOpc, dl, PVT, Op); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 753 | } |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT)) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 757 | return SDValue(); |
Evan Cheng | caf7740 | 2010-04-23 19:10:30 +0000 | [diff] [blame] | 758 | return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 761 | SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 762 | if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT)) |
| 763 | return SDValue(); |
| 764 | EVT OldVT = Op.getValueType(); |
| 765 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 766 | bool Replace = false; |
| 767 | SDValue NewOp = PromoteOperand(Op, PVT, Replace); |
| 768 | if (NewOp.getNode() == 0) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 769 | return SDValue(); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 770 | AddToWorkList(NewOp.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 771 | |
| 772 | if (Replace) |
| 773 | ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); |
| 774 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp, |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 775 | DAG.getValueType(OldVT)); |
| 776 | } |
| 777 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 778 | SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 779 | EVT OldVT = Op.getValueType(); |
| 780 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 781 | bool Replace = false; |
| 782 | SDValue NewOp = PromoteOperand(Op, PVT, Replace); |
| 783 | if (NewOp.getNode() == 0) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 784 | return SDValue(); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 785 | AddToWorkList(NewOp.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 786 | |
| 787 | if (Replace) |
| 788 | ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); |
| 789 | return DAG.getZeroExtendInReg(NewOp, dl, OldVT); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 790 | } |
| 791 | |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 792 | /// PromoteIntBinOp - Promote the specified integer binary operation if the |
| 793 | /// target indicates it is beneficial. e.g. On x86, it's usually better to |
| 794 | /// promote i16 operations to i32 since i16 instructions are longer. |
| 795 | SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) { |
| 796 | if (!LegalOperations) |
| 797 | return SDValue(); |
| 798 | |
| 799 | EVT VT = Op.getValueType(); |
| 800 | if (VT.isVector() || !VT.isInteger()) |
| 801 | return SDValue(); |
| 802 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 803 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 804 | // promoting it. |
| 805 | unsigned Opc = Op.getOpcode(); |
| 806 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 807 | return SDValue(); |
| 808 | |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 809 | EVT PVT = VT; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 810 | // Consult target whether it is a good idea to promote this operation and |
| 811 | // what's the right type to promote it to. |
| 812 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 813 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 814 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 815 | bool Replace0 = false; |
| 816 | SDValue N0 = Op.getOperand(0); |
| 817 | SDValue NN0 = PromoteOperand(N0, PVT, Replace0); |
| 818 | if (NN0.getNode() == 0) |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 819 | return SDValue(); |
| 820 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 821 | bool Replace1 = false; |
| 822 | SDValue N1 = Op.getOperand(1); |
Evan Cheng | aad753b | 2010-05-10 19:03:57 +0000 | [diff] [blame] | 823 | SDValue NN1; |
| 824 | if (N0 == N1) |
| 825 | NN1 = NN0; |
| 826 | else { |
| 827 | NN1 = PromoteOperand(N1, PVT, Replace1); |
| 828 | if (NN1.getNode() == 0) |
| 829 | return SDValue(); |
| 830 | } |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 831 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 832 | AddToWorkList(NN0.getNode()); |
Evan Cheng | aad753b | 2010-05-10 19:03:57 +0000 | [diff] [blame] | 833 | if (NN1.getNode()) |
| 834 | AddToWorkList(NN1.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 835 | |
| 836 | if (Replace0) |
| 837 | ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode()); |
| 838 | if (Replace1) |
| 839 | ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode()); |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 840 | |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 841 | DEBUG(dbgs() << "\nPromoting "; |
| 842 | Op.getNode()->dump(&DAG)); |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 843 | DebugLoc dl = Op.getDebugLoc(); |
| 844 | return DAG.getNode(ISD::TRUNCATE, dl, VT, |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 845 | DAG.getNode(Opc, dl, PVT, NN0, NN1)); |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 846 | } |
| 847 | return SDValue(); |
| 848 | } |
| 849 | |
| 850 | /// PromoteIntShiftOp - Promote the specified integer shift operation if the |
| 851 | /// target indicates it is beneficial. e.g. On x86, it's usually better to |
| 852 | /// promote i16 operations to i32 since i16 instructions are longer. |
| 853 | SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) { |
| 854 | if (!LegalOperations) |
| 855 | return SDValue(); |
| 856 | |
| 857 | EVT VT = Op.getValueType(); |
| 858 | if (VT.isVector() || !VT.isInteger()) |
| 859 | return SDValue(); |
| 860 | |
| 861 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 862 | // promoting it. |
| 863 | unsigned Opc = Op.getOpcode(); |
| 864 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 865 | return SDValue(); |
| 866 | |
| 867 | EVT PVT = VT; |
| 868 | // Consult target whether it is a good idea to promote this operation and |
| 869 | // what's the right type to promote it to. |
| 870 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
| 871 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 872 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 873 | bool Replace = false; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 874 | SDValue N0 = Op.getOperand(0); |
| 875 | if (Opc == ISD::SRA) |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 876 | N0 = SExtPromoteOperand(Op.getOperand(0), PVT); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 877 | else if (Opc == ISD::SRL) |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 878 | N0 = ZExtPromoteOperand(Op.getOperand(0), PVT); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 879 | else |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 880 | N0 = PromoteOperand(N0, PVT, Replace); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 881 | if (N0.getNode() == 0) |
| 882 | return SDValue(); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 883 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 884 | AddToWorkList(N0.getNode()); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 885 | if (Replace) |
| 886 | ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode()); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 887 | |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 888 | DEBUG(dbgs() << "\nPromoting "; |
| 889 | Op.getNode()->dump(&DAG)); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 890 | DebugLoc dl = Op.getDebugLoc(); |
| 891 | return DAG.getNode(ISD::TRUNCATE, dl, VT, |
Evan Cheng | 07c4e10 | 2010-04-22 20:19:46 +0000 | [diff] [blame] | 892 | DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1))); |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 893 | } |
| 894 | return SDValue(); |
| 895 | } |
| 896 | |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 897 | SDValue DAGCombiner::PromoteExtend(SDValue Op) { |
| 898 | if (!LegalOperations) |
| 899 | return SDValue(); |
| 900 | |
| 901 | EVT VT = Op.getValueType(); |
| 902 | if (VT.isVector() || !VT.isInteger()) |
| 903 | return SDValue(); |
| 904 | |
| 905 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 906 | // promoting it. |
| 907 | unsigned Opc = Op.getOpcode(); |
| 908 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 909 | return SDValue(); |
| 910 | |
| 911 | EVT PVT = VT; |
| 912 | // Consult target whether it is a good idea to promote this operation and |
| 913 | // what's the right type to promote it to. |
| 914 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
| 915 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 916 | // fold (aext (aext x)) -> (aext x) |
| 917 | // fold (aext (zext x)) -> (zext x) |
| 918 | // fold (aext (sext x)) -> (sext x) |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 919 | DEBUG(dbgs() << "\nPromoting "; |
| 920 | Op.getNode()->dump(&DAG)); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 921 | return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0)); |
| 922 | } |
| 923 | return SDValue(); |
| 924 | } |
| 925 | |
| 926 | bool DAGCombiner::PromoteLoad(SDValue Op) { |
| 927 | if (!LegalOperations) |
| 928 | return false; |
| 929 | |
| 930 | EVT VT = Op.getValueType(); |
| 931 | if (VT.isVector() || !VT.isInteger()) |
| 932 | return false; |
| 933 | |
| 934 | // If operation type is 'undesirable', e.g. i16 on x86, consider |
| 935 | // promoting it. |
| 936 | unsigned Opc = Op.getOpcode(); |
| 937 | if (TLI.isTypeDesirableForOp(Opc, VT)) |
| 938 | return false; |
| 939 | |
| 940 | EVT PVT = VT; |
| 941 | // Consult target whether it is a good idea to promote this operation and |
| 942 | // what's the right type to promote it to. |
| 943 | if (TLI.IsDesirableToPromoteOp(Op, PVT)) { |
| 944 | assert(PVT != VT && "Don't know what type to promote to!"); |
| 945 | |
| 946 | DebugLoc dl = Op.getDebugLoc(); |
| 947 | SDNode *N = Op.getNode(); |
| 948 | LoadSDNode *LD = cast<LoadSDNode>(N); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 949 | EVT MemVT = LD->getMemoryVT(); |
| 950 | ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 951 | ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 952 | : ISD::EXTLOAD) |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 953 | : LD->getExtensionType(); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 954 | SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT, |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 955 | LD->getChain(), LD->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 956 | LD->getPointerInfo(), |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 957 | MemVT, LD->isVolatile(), |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 958 | LD->isNonTemporal(), LD->getAlignment()); |
| 959 | SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD); |
| 960 | |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 961 | DEBUG(dbgs() << "\nPromoting "; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 962 | N->dump(&DAG); |
Evan Cheng | 95c57ea | 2010-04-24 04:43:44 +0000 | [diff] [blame] | 963 | dbgs() << "\nTo: "; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 964 | Result.getNode()->dump(&DAG); |
| 965 | dbgs() << '\n'); |
| 966 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 967 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result); |
| 968 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1)); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 969 | removeFromWorkList(N); |
| 970 | DAG.DeleteNode(N); |
Evan Cheng | ac7eae5 | 2010-04-27 19:48:13 +0000 | [diff] [blame] | 971 | AddToWorkList(Result.getNode()); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 972 | return true; |
| 973 | } |
| 974 | return false; |
| 975 | } |
| 976 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 977 | |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 978 | //===----------------------------------------------------------------------===// |
| 979 | // Main DAG Combiner implementation |
| 980 | //===----------------------------------------------------------------------===// |
| 981 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 982 | void DAGCombiner::Run(CombineLevel AtLevel) { |
| 983 | // set the instance variables, so that the various visit routines may use it. |
| 984 | Level = AtLevel; |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 985 | LegalOperations = Level >= AfterLegalizeVectorOps; |
| 986 | LegalTypes = Level >= AfterLegalizeTypes; |
Nate Begeman | 4ebd805 | 2005-09-01 23:24:04 +0000 | [diff] [blame] | 987 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 988 | // Add all the dag nodes to the worklist. |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 989 | for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), |
| 990 | E = DAG.allnodes_end(); I != E; ++I) |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 991 | AddToWorkList(I); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 992 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 993 | // Create a dummy node (which is not added to allnodes), that adds a reference |
| 994 | // to the root node, preventing it from being deleted, and tracking any |
| 995 | // changes of the root. |
| 996 | HandleSDNode Dummy(DAG.getRoot()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 997 | |
Jim Laskey | 26f7fa7 | 2006-10-17 19:33:52 +0000 | [diff] [blame] | 998 | // The root of the dag may dangle to deleted nodes until the dag combiner is |
| 999 | // done. Set it to null to avoid confusion. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1000 | DAG.setRoot(SDValue()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1001 | |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 1002 | // while the worklist isn't empty, find a node and |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1003 | // try and combine it. |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 1004 | while (!WorkListContents.empty()) { |
| 1005 | SDNode *N; |
| 1006 | // The WorkListOrder holds the SDNodes in order, but it may contain duplicates. |
| 1007 | // In order to avoid a linear scan, we use a set (O(log N)) to hold what the |
| 1008 | // worklist *should* contain, and check the node we want to visit is should |
| 1009 | // actually be visited. |
| 1010 | do { |
Benjamin Kramer | d5f7690 | 2012-03-10 00:23:58 +0000 | [diff] [blame] | 1011 | N = WorkListOrder.pop_back_val(); |
James Molloy | 6660c05 | 2012-02-16 09:17:04 +0000 | [diff] [blame] | 1012 | } while (!WorkListContents.erase(N)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1013 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1014 | // If N has no uses, it is dead. Make sure to revisit all N's operands once |
| 1015 | // N is deleted from the DAG, since they too may now be dead or may have a |
| 1016 | // reduced number of uses, allowing other xforms. |
| 1017 | if (N->use_empty() && N != &Dummy) { |
| 1018 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 1019 | AddToWorkList(N->getOperand(i).getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1020 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1021 | DAG.DeleteNode(N); |
| 1022 | continue; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1023 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1024 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1025 | SDValue RV = combine(N); |
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 | if (RV.getNode() == 0) |
| 1028 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1029 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1030 | ++NodesCombined; |
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 | // If we get back the same node we passed in, rather than a new node or |
| 1033 | // zero, we know that the node must have defined multiple values and |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1034 | // CombineTo was used. Since CombineTo takes care of the worklist |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1035 | // mechanics for us, we have no work to do in this case. |
| 1036 | if (RV.getNode() == N) |
| 1037 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1038 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1039 | assert(N->getOpcode() != ISD::DELETED_NODE && |
| 1040 | RV.getNode()->getOpcode() != ISD::DELETED_NODE && |
| 1041 | "Node was deleted but visit returned new node!"); |
Chris Lattner | 729c6d1 | 2006-05-27 00:43:02 +0000 | [diff] [blame] | 1042 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1043 | DEBUG(dbgs() << "\nReplacing.3 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 1044 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 1045 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 1046 | RV.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 1047 | dbgs() << '\n'); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1048 | |
Devang Patel | 9728ea2 | 2011-05-23 22:04:42 +0000 | [diff] [blame] | 1049 | // Transfer debug value. |
| 1050 | DAG.TransferDbgValues(SDValue(N, 0), RV); |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1051 | WorkListRemover DeadNodes(*this); |
| 1052 | if (N->getNumValues() == RV.getNode()->getNumValues()) |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1053 | DAG.ReplaceAllUsesWith(N, RV.getNode()); |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1054 | else { |
| 1055 | assert(N->getValueType(0) == RV.getValueType() && |
| 1056 | N->getNumValues() == 1 && "Type mismatch"); |
| 1057 | SDValue OpV = RV; |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1058 | DAG.ReplaceAllUsesWith(N, &OpV); |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1059 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1060 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1061 | // Push the new node and any users onto the worklist |
| 1062 | AddToWorkList(RV.getNode()); |
| 1063 | AddUsersToWorkList(RV.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1064 | |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1065 | // Add any uses of the old node to the worklist in case this node is the |
| 1066 | // last one that uses them. They may become dead after this node is |
| 1067 | // deleted. |
| 1068 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 1069 | AddToWorkList(N->getOperand(i).getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1070 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 1071 | // Finally, if the node is now dead, remove it from the graph. The node |
| 1072 | // may not be dead if the replacement process recursively simplified to |
| 1073 | // something else needing this node. |
| 1074 | if (N->use_empty()) { |
| 1075 | // Nodes can be reintroduced into the worklist. Make sure we do not |
| 1076 | // process a node that has been replaced. |
| 1077 | removeFromWorkList(N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1078 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 1079 | // Finally, since the node is now dead, remove it from the graph. |
| 1080 | DAG.DeleteNode(N); |
| 1081 | } |
Evan Cheng | 17a568b | 2008-08-29 22:21:44 +0000 | [diff] [blame] | 1082 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1083 | |
Chris Lattner | 9503859 | 2005-10-05 06:35:28 +0000 | [diff] [blame] | 1084 | // If the root changed (e.g. it was a dead load, update the root). |
| 1085 | DAG.setRoot(Dummy.getValue()); |
Hal Finkel | 31490ba | 2012-04-16 03:33:22 +0000 | [diff] [blame] | 1086 | DAG.RemoveDeadNodes(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1087 | } |
| 1088 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1089 | SDValue DAGCombiner::visit(SDNode *N) { |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1090 | switch (N->getOpcode()) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1091 | default: break; |
Nate Begeman | 4942a96 | 2005-09-01 00:33:32 +0000 | [diff] [blame] | 1092 | case ISD::TokenFactor: return visitTokenFactor(N); |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1093 | case ISD::MERGE_VALUES: return visitMERGE_VALUES(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1094 | case ISD::ADD: return visitADD(N); |
| 1095 | case ISD::SUB: return visitSUB(N); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1096 | case ISD::ADDC: return visitADDC(N); |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1097 | case ISD::SUBC: return visitSUBC(N); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1098 | case ISD::ADDE: return visitADDE(N); |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1099 | case ISD::SUBE: return visitSUBE(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1100 | case ISD::MUL: return visitMUL(N); |
| 1101 | case ISD::SDIV: return visitSDIV(N); |
| 1102 | case ISD::UDIV: return visitUDIV(N); |
| 1103 | case ISD::SREM: return visitSREM(N); |
| 1104 | case ISD::UREM: return visitUREM(N); |
| 1105 | case ISD::MULHU: return visitMULHU(N); |
| 1106 | case ISD::MULHS: return visitMULHS(N); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1107 | case ISD::SMUL_LOHI: return visitSMUL_LOHI(N); |
| 1108 | case ISD::UMUL_LOHI: return visitUMUL_LOHI(N); |
Benjamin Kramer | f55d26e | 2011-05-21 18:31:55 +0000 | [diff] [blame] | 1109 | case ISD::SMULO: return visitSMULO(N); |
| 1110 | case ISD::UMULO: return visitUMULO(N); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1111 | case ISD::SDIVREM: return visitSDIVREM(N); |
| 1112 | case ISD::UDIVREM: return visitUDIVREM(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1113 | case ISD::AND: return visitAND(N); |
| 1114 | case ISD::OR: return visitOR(N); |
| 1115 | case ISD::XOR: return visitXOR(N); |
| 1116 | case ISD::SHL: return visitSHL(N); |
| 1117 | case ISD::SRA: return visitSRA(N); |
| 1118 | case ISD::SRL: return visitSRL(N); |
| 1119 | case ISD::CTLZ: return visitCTLZ(N); |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 1120 | case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1121 | case ISD::CTTZ: return visitCTTZ(N); |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 1122 | case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1123 | case ISD::CTPOP: return visitCTPOP(N); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 1124 | case ISD::SELECT: return visitSELECT(N); |
| 1125 | case ISD::SELECT_CC: return visitSELECT_CC(N); |
| 1126 | case ISD::SETCC: return visitSETCC(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1127 | case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N); |
| 1128 | case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 1129 | case ISD::ANY_EXTEND: return visitANY_EXTEND(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1130 | case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N); |
| 1131 | case ISD::TRUNCATE: return visitTRUNCATE(N); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1132 | case ISD::BITCAST: return visitBITCAST(N); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 1133 | case ISD::BUILD_PAIR: return visitBUILD_PAIR(N); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1134 | case ISD::FADD: return visitFADD(N); |
| 1135 | case ISD::FSUB: return visitFSUB(N); |
| 1136 | case ISD::FMUL: return visitFMUL(N); |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 1137 | case ISD::FMA: return visitFMA(N); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1138 | case ISD::FDIV: return visitFDIV(N); |
| 1139 | case ISD::FREM: return visitFREM(N); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 1140 | case ISD::FCOPYSIGN: return visitFCOPYSIGN(N); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1141 | case ISD::SINT_TO_FP: return visitSINT_TO_FP(N); |
| 1142 | case ISD::UINT_TO_FP: return visitUINT_TO_FP(N); |
| 1143 | case ISD::FP_TO_SINT: return visitFP_TO_SINT(N); |
| 1144 | case ISD::FP_TO_UINT: return visitFP_TO_UINT(N); |
| 1145 | case ISD::FP_ROUND: return visitFP_ROUND(N); |
| 1146 | case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N); |
| 1147 | case ISD::FP_EXTEND: return visitFP_EXTEND(N); |
| 1148 | case ISD::FNEG: return visitFNEG(N); |
| 1149 | case ISD::FABS: return visitFABS(N); |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 1150 | case ISD::FFLOOR: return visitFFLOOR(N); |
| 1151 | case ISD::FCEIL: return visitFCEIL(N); |
| 1152 | case ISD::FTRUNC: return visitFTRUNC(N); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1153 | case ISD::BRCOND: return visitBRCOND(N); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 1154 | case ISD::BR_CC: return visitBR_CC(N); |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 1155 | case ISD::LOAD: return visitLOAD(N); |
Chris Lattner | 87514ca | 2005-10-10 22:31:19 +0000 | [diff] [blame] | 1156 | case ISD::STORE: return visitSTORE(N); |
Chris Lattner | ca24244 | 2006-03-19 01:27:56 +0000 | [diff] [blame] | 1157 | case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 1158 | case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1159 | case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N); |
| 1160 | case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N); |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 1161 | case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N); |
Chris Lattner | 66445d3 | 2006-03-28 22:11:53 +0000 | [diff] [blame] | 1162 | case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N); |
Jim Grosbach | 9a52649 | 2010-06-23 16:07:42 +0000 | [diff] [blame] | 1163 | case ISD::MEMBARRIER: return visitMEMBARRIER(N); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1164 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1165 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1168 | SDValue DAGCombiner::combine(SDNode *N) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1169 | SDValue RV = visit(N); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1170 | |
| 1171 | // If nothing happened, try a target-specific DAG combine. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1172 | if (RV.getNode() == 0) { |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1173 | assert(N->getOpcode() != ISD::DELETED_NODE && |
| 1174 | "Node was deleted but visit returned NULL!"); |
| 1175 | |
| 1176 | if (N->getOpcode() >= ISD::BUILTIN_OP_END || |
| 1177 | TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) { |
| 1178 | |
| 1179 | // Expose the DAG combiner to the target combiner impls. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1180 | TargetLowering::DAGCombinerInfo |
Jakob Stoklund Olesen | 78d1264 | 2009-07-24 18:22:59 +0000 | [diff] [blame] | 1181 | DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1182 | |
| 1183 | RV = TLI.PerformDAGCombine(N, DagCombineInfo); |
| 1184 | } |
| 1185 | } |
| 1186 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1187 | // If nothing happened still, try promoting the operation. |
| 1188 | if (RV.getNode() == 0) { |
| 1189 | switch (N->getOpcode()) { |
| 1190 | default: break; |
| 1191 | case ISD::ADD: |
| 1192 | case ISD::SUB: |
| 1193 | case ISD::MUL: |
| 1194 | case ISD::AND: |
| 1195 | case ISD::OR: |
| 1196 | case ISD::XOR: |
| 1197 | RV = PromoteIntBinOp(SDValue(N, 0)); |
| 1198 | break; |
| 1199 | case ISD::SHL: |
| 1200 | case ISD::SRA: |
| 1201 | case ISD::SRL: |
| 1202 | RV = PromoteIntShiftOp(SDValue(N, 0)); |
| 1203 | break; |
| 1204 | case ISD::SIGN_EXTEND: |
| 1205 | case ISD::ZERO_EXTEND: |
| 1206 | case ISD::ANY_EXTEND: |
| 1207 | RV = PromoteExtend(SDValue(N, 0)); |
| 1208 | break; |
| 1209 | case ISD::LOAD: |
| 1210 | if (PromoteLoad(SDValue(N, 0))) |
| 1211 | RV = SDValue(N, 0); |
| 1212 | break; |
| 1213 | } |
| 1214 | } |
| 1215 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1216 | // 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] | 1217 | // sdisel CSE. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1218 | if (RV.getNode() == 0 && |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1219 | SelectionDAG::isCommutativeBinOp(N->getOpcode()) && |
| 1220 | N->getNumValues() == 1) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1221 | SDValue N0 = N->getOperand(0); |
| 1222 | SDValue N1 = N->getOperand(1); |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1223 | |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1224 | // Constant operands are canonicalized to RHS. |
| 1225 | if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1226 | SDValue Ops[] = { N1, N0 }; |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1227 | SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(), |
| 1228 | Ops, 2); |
Evan Cheng | ea10046 | 2008-03-24 23:55:16 +0000 | [diff] [blame] | 1229 | if (CSENode) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1230 | return SDValue(CSENode, 0); |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 1231 | } |
| 1232 | } |
| 1233 | |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1234 | return RV; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1235 | } |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 1236 | |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1237 | /// getInputChainForNode - Given a node, return its input chain if it has one, |
| 1238 | /// otherwise return a null sd operand. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1239 | static SDValue getInputChainForNode(SDNode *N) { |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1240 | if (unsigned NumOps = N->getNumOperands()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1241 | if (N->getOperand(0).getValueType() == MVT::Other) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1242 | return N->getOperand(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1243 | else if (N->getOperand(NumOps-1).getValueType() == MVT::Other) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1244 | return N->getOperand(NumOps-1); |
| 1245 | for (unsigned i = 1; i < NumOps-1; ++i) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1246 | if (N->getOperand(i).getValueType() == MVT::Other) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1247 | return N->getOperand(i); |
| 1248 | } |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1249 | return SDValue(); |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1250 | } |
| 1251 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1252 | SDValue DAGCombiner::visitTokenFactor(SDNode *N) { |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1253 | // If N has two operands, where one has an input chain equal to the other, |
| 1254 | // the 'other' chain is redundant. |
| 1255 | if (N->getNumOperands() == 2) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1256 | if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1)) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1257 | return N->getOperand(0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1258 | if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0)) |
Chris Lattner | 6270f68 | 2006-10-08 22:57:01 +0000 | [diff] [blame] | 1259 | return N->getOperand(1); |
| 1260 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1261 | |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1262 | SmallVector<SDNode *, 8> TFs; // List of token factors to visit. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1263 | SmallVector<SDValue, 8> Ops; // Ops for replacing token factor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1264 | SmallPtrSet<SDNode*, 16> SeenOps; |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1265 | bool Changed = false; // If we should replace this token factor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1266 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1267 | // Start out with this token factor. |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 1268 | TFs.push_back(N); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1269 | |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 1270 | // Iterate through token factors. The TFs grows when new token factors are |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 1271 | // encountered. |
| 1272 | for (unsigned i = 0; i < TFs.size(); ++i) { |
| 1273 | SDNode *TF = TFs[i]; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1274 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1275 | // Check each of the operands. |
| 1276 | for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1277 | SDValue Op = TF->getOperand(i); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1278 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1279 | switch (Op.getOpcode()) { |
| 1280 | case ISD::EntryToken: |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 1281 | // Entry tokens don't need to be added to the list. They are |
| 1282 | // rededundant. |
| 1283 | Changed = true; |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1284 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1285 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1286 | case ISD::TokenFactor: |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 1287 | if (Op.hasOneUse() && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1288 | std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) { |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1289 | // Queue up for processing. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1290 | TFs.push_back(Op.getNode()); |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1291 | // Clean up in case the token factor is removed. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1292 | AddToWorkList(Op.getNode()); |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1293 | Changed = true; |
| 1294 | break; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 1295 | } |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1296 | // Fall thru |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1297 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1298 | default: |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1299 | // Only add if it isn't already in the list. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1300 | if (SeenOps.insert(Op.getNode())) |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 1301 | Ops.push_back(Op); |
Chris Lattner | c76d441 | 2007-05-16 06:37:59 +0000 | [diff] [blame] | 1302 | else |
| 1303 | Changed = true; |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1304 | break; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 1305 | } |
| 1306 | } |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1307 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1308 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1309 | SDValue Result; |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1310 | |
| 1311 | // If we've change things around then replace token factor. |
| 1312 | if (Changed) { |
Dan Gohman | 3035959 | 2008-01-29 13:02:09 +0000 | [diff] [blame] | 1313 | if (Ops.empty()) { |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1314 | // The entry token is the only possible outcome. |
| 1315 | Result = DAG.getEntryNode(); |
| 1316 | } else { |
| 1317 | // New and improved token factor. |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1318 | Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1319 | MVT::Other, &Ops[0], Ops.size()); |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 1320 | } |
Bill Wendling | 5c71acf | 2009-01-30 01:13:16 +0000 | [diff] [blame] | 1321 | |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 1322 | // Don't add users to work list. |
| 1323 | return CombineTo(N, Result, false); |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 1324 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1325 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 1326 | return Result; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1327 | } |
| 1328 | |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1329 | /// MERGE_VALUES can always be eliminated. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1330 | SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) { |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1331 | WorkListRemover DeadNodes(*this); |
Dan Gohman | 00edf39 | 2009-08-10 23:43:19 +0000 | [diff] [blame] | 1332 | // Replacing results may cause a different MERGE_VALUES to suddenly |
| 1333 | // be CSE'd with N, and carry its uses with it. Iterate until no |
| 1334 | // uses remain, to ensure that the node can be safely deleted. |
Pete Cooper | 3affd9e | 2012-06-20 19:35:43 +0000 | [diff] [blame] | 1335 | // First add the users of this node to the work list so that they |
| 1336 | // can be tried again once they have new operands. |
| 1337 | AddUsersToWorkList(N); |
Dan Gohman | 00edf39 | 2009-08-10 23:43:19 +0000 | [diff] [blame] | 1338 | do { |
| 1339 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 1340 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i)); |
Dan Gohman | 00edf39 | 2009-08-10 23:43:19 +0000 | [diff] [blame] | 1341 | } while (!N->use_empty()); |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1342 | removeFromWorkList(N); |
| 1343 | DAG.DeleteNode(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1344 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | fec42eb | 2008-02-13 07:25:05 +0000 | [diff] [blame] | 1345 | } |
| 1346 | |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1347 | static |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1348 | SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1, |
| 1349 | SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1350 | EVT VT = N0.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1351 | SDValue N00 = N0.getOperand(0); |
| 1352 | SDValue N01 = N0.getOperand(1); |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1353 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01); |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1354 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1355 | if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() && |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1356 | isa<ConstantSDNode>(N00.getOperand(1))) { |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1357 | // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), ) |
| 1358 | N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, |
| 1359 | DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT, |
| 1360 | N00.getOperand(0), N01), |
| 1361 | DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT, |
| 1362 | N00.getOperand(1), N01)); |
| 1363 | return DAG.getNode(ISD::ADD, DL, VT, N0, N1); |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1364 | } |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1365 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1366 | return SDValue(); |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1367 | } |
| 1368 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1369 | SDValue DAGCombiner::visitADD(SDNode *N) { |
| 1370 | SDValue N0 = N->getOperand(0); |
| 1371 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1372 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1373 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1374 | EVT VT = N0.getValueType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1375 | |
| 1376 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1377 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1378 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1379 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1380 | } |
Bill Wendling | 2476e5d | 2008-12-10 22:36:00 +0000 | [diff] [blame] | 1381 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1382 | // fold (add x, undef) -> undef |
Dan Gohman | 70fb1ae | 2007-07-10 15:19:29 +0000 | [diff] [blame] | 1383 | if (N0.getOpcode() == ISD::UNDEF) |
| 1384 | return N0; |
| 1385 | if (N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1386 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1387 | // fold (add c1, c2) -> c1+c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1388 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1389 | return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 1390 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 1391 | if (N0C && !N1C) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1392 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1393 | // fold (add x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1394 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1395 | return N0; |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1396 | // fold (add Sym, c) -> Sym+c |
| 1397 | if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 1398 | if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C && |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1399 | GA->getOpcode() == ISD::GlobalAddress) |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 1400 | return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1401 | GA->getOffset() + |
| 1402 | (uint64_t)N1C->getSExtValue()); |
Chris Lattner | 4aafb4f | 2006-01-12 20:22:43 +0000 | [diff] [blame] | 1403 | // fold ((c1-A)+c2) -> (c1+c2)-A |
| 1404 | if (N1C && N0.getOpcode() == ISD::SUB) |
| 1405 | if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0))) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1406 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1407 | DAG.getConstant(N1C->getAPIntValue()+ |
| 1408 | N0C->getAPIntValue(), VT), |
Chris Lattner | 4aafb4f | 2006-01-12 20:22:43 +0000 | [diff] [blame] | 1409 | N0.getOperand(1)); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1410 | // reassociate add |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 1411 | SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1412 | if (RADD.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1413 | return RADD; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1414 | // fold ((0-A) + B) -> B-A |
| 1415 | if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) && |
| 1416 | cast<ConstantSDNode>(N0.getOperand(0))->isNullValue()) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1417 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1418 | // fold (A + (0-B)) -> A-B |
| 1419 | if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) && |
| 1420 | cast<ConstantSDNode>(N1.getOperand(0))->isNullValue()) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1421 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1)); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1422 | // fold (A+(B-A)) -> B |
| 1423 | if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1)) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1424 | return N1.getOperand(0); |
Dale Johannesen | 56eca91 | 2008-11-27 00:43:21 +0000 | [diff] [blame] | 1425 | // fold ((B-A)+A) -> B |
| 1426 | if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1)) |
| 1427 | return N0.getOperand(0); |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1428 | // fold (A+(B-(A+C))) to (B-C) |
| 1429 | if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1430 | N0 == N1.getOperand(1).getOperand(0)) |
| 1431 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0), |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1432 | N1.getOperand(1).getOperand(1)); |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1433 | // fold (A+(B-(C+A))) to (B-C) |
| 1434 | if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1435 | N0 == N1.getOperand(1).getOperand(1)) |
| 1436 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0), |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1437 | N1.getOperand(1).getOperand(0)); |
Dale Johannesen | 7c7bc72 | 2008-12-23 23:47:22 +0000 | [diff] [blame] | 1438 | // fold (A+((B-A)+or-C)) to (B+or-C) |
Dale Johannesen | 34d7985 | 2008-12-02 18:40:40 +0000 | [diff] [blame] | 1439 | if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) && |
| 1440 | N1.getOperand(0).getOpcode() == ISD::SUB && |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1441 | N0 == N1.getOperand(0).getOperand(1)) |
| 1442 | return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT, |
| 1443 | N1.getOperand(0).getOperand(0), N1.getOperand(1)); |
Dale Johannesen | 34d7985 | 2008-12-02 18:40:40 +0000 | [diff] [blame] | 1444 | |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1445 | // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant |
| 1446 | if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) { |
| 1447 | SDValue N00 = N0.getOperand(0); |
| 1448 | SDValue N01 = N0.getOperand(1); |
| 1449 | SDValue N10 = N1.getOperand(0); |
| 1450 | SDValue N11 = N1.getOperand(1); |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1451 | |
| 1452 | if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10)) |
| 1453 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1454 | DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10), |
| 1455 | DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11)); |
Dale Johannesen | 221cd2f | 2008-12-02 01:30:54 +0000 | [diff] [blame] | 1456 | } |
Chris Lattner | 947c289 | 2006-03-13 06:51:27 +0000 | [diff] [blame] | 1457 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1458 | if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0))) |
| 1459 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1460 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1461 | // fold (a+b) -> (a|b) iff a and b share no bits. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1462 | if (VT.isInteger() && !VT.isVector()) { |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 1463 | APInt LHSZero, LHSOne; |
| 1464 | APInt RHSZero, RHSOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1465 | DAG.ComputeMaskedBits(N0, LHSZero, LHSOne); |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1466 | |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 1467 | if (LHSZero.getBoolValue()) { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1468 | DAG.ComputeMaskedBits(N1, RHSZero, RHSOne); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1469 | |
Chris Lattner | 947c289 | 2006-03-13 06:51:27 +0000 | [diff] [blame] | 1470 | // If all possibly-set bits on the LHS are clear on the RHS, return an OR. |
| 1471 | // 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] | 1472 | if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero) |
Bill Wendling | f4eb226 | 2009-01-30 02:31:17 +0000 | [diff] [blame] | 1473 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1); |
Chris Lattner | 947c289 | 2006-03-13 06:51:27 +0000 | [diff] [blame] | 1474 | } |
| 1475 | } |
Evan Cheng | 3ef554d | 2006-11-06 08:14:30 +0000 | [diff] [blame] | 1476 | |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1477 | // 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] | 1478 | if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) { |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1479 | SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1480 | if (Result.getNode()) return Result; |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1481 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1482 | if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) { |
Bill Wendling | d69c314 | 2009-01-30 02:23:43 +0000 | [diff] [blame] | 1483 | SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1484 | if (Result.getNode()) return Result; |
Evan Cheng | 42d7ccf | 2007-01-19 17:51:44 +0000 | [diff] [blame] | 1485 | } |
| 1486 | |
Dan Gohman | cd9e155 | 2010-01-19 23:30:49 +0000 | [diff] [blame] | 1487 | // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n)) |
| 1488 | if (N1.getOpcode() == ISD::SHL && |
| 1489 | N1.getOperand(0).getOpcode() == ISD::SUB) |
| 1490 | if (ConstantSDNode *C = |
| 1491 | dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0))) |
| 1492 | if (C->getAPIntValue() == 0) |
| 1493 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, |
| 1494 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1495 | N1.getOperand(0).getOperand(1), |
| 1496 | N1.getOperand(1))); |
| 1497 | if (N0.getOpcode() == ISD::SHL && |
| 1498 | N0.getOperand(0).getOpcode() == ISD::SUB) |
| 1499 | if (ConstantSDNode *C = |
| 1500 | dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0))) |
| 1501 | if (C->getAPIntValue() == 0) |
| 1502 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, |
| 1503 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1504 | N0.getOperand(0).getOperand(1), |
| 1505 | N0.getOperand(1))); |
| 1506 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 1507 | if (N1.getOpcode() == ISD::AND) { |
| 1508 | SDValue AndOp0 = N1.getOperand(0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1509 | ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1)); |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 1510 | unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0); |
| 1511 | unsigned DestBits = VT.getScalarType().getSizeInBits(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1512 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 1513 | // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x)) |
| 1514 | // and similar xforms where the inner op is either ~0 or 0. |
| 1515 | if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) { |
| 1516 | DebugLoc DL = N->getDebugLoc(); |
| 1517 | return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0); |
| 1518 | } |
| 1519 | } |
| 1520 | |
Benjamin Kramer | f50125e | 2010-12-22 23:17:45 +0000 | [diff] [blame] | 1521 | // add (sext i1), X -> sub X, (zext i1) |
| 1522 | if (N0.getOpcode() == ISD::SIGN_EXTEND && |
| 1523 | N0.getOperand(0).getValueType() == MVT::i1 && |
| 1524 | !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) { |
| 1525 | DebugLoc DL = N->getDebugLoc(); |
| 1526 | SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)); |
| 1527 | return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt); |
| 1528 | } |
| 1529 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1530 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1531 | } |
| 1532 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1533 | SDValue DAGCombiner::visitADDC(SDNode *N) { |
| 1534 | SDValue N0 = N->getOperand(0); |
| 1535 | SDValue N1 = N->getOperand(1); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1536 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1537 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1538 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1539 | |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1540 | // If the flag result is dead, turn this into an ADD. |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 1541 | if (!N->hasAnyUseOfValue(1)) |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1542 | return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1), |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1543 | DAG.getNode(ISD::CARRY_FALSE, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1544 | N->getDebugLoc(), MVT::Glue)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1545 | |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1546 | // canonicalize constant to RHS. |
Dan Gohman | 0a4627d | 2008-06-23 15:29:14 +0000 | [diff] [blame] | 1547 | if (N0C && !N1C) |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1548 | return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1549 | |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1550 | // fold (addc x, 0) -> x + no carry out |
| 1551 | if (N1C && N1C->isNullValue()) |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1552 | return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1553 | N->getDebugLoc(), MVT::Glue)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1554 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1555 | // 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] | 1556 | APInt LHSZero, LHSOne; |
| 1557 | APInt RHSZero, RHSOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1558 | DAG.ComputeMaskedBits(N0, LHSZero, LHSOne); |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1559 | |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 1560 | if (LHSZero.getBoolValue()) { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1561 | DAG.ComputeMaskedBits(N1, RHSZero, RHSOne); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1562 | |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1563 | // If all possibly-set bits on the LHS are clear on the RHS, return an OR. |
| 1564 | // 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] | 1565 | if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero) |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1566 | return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1), |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1567 | DAG.getNode(ISD::CARRY_FALSE, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 1568 | N->getDebugLoc(), MVT::Glue)); |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1569 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1570 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1571 | return SDValue(); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1572 | } |
| 1573 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1574 | SDValue DAGCombiner::visitADDE(SDNode *N) { |
| 1575 | SDValue N0 = N->getOperand(0); |
| 1576 | SDValue N1 = N->getOperand(1); |
| 1577 | SDValue CarryIn = N->getOperand(2); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1578 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1579 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1580 | |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1581 | // canonicalize constant to RHS |
Dan Gohman | 0a4627d | 2008-06-23 15:29:14 +0000 | [diff] [blame] | 1582 | if (N0C && !N1C) |
Bill Wendling | 14036c0 | 2009-01-30 02:38:00 +0000 | [diff] [blame] | 1583 | return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(), |
| 1584 | N1, N0, CarryIn); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1585 | |
Chris Lattner | b654176 | 2007-03-04 20:40:38 +0000 | [diff] [blame] | 1586 | // fold (adde x, y, false) -> (addc x, y) |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 1587 | if (CarryIn.getOpcode() == ISD::CARRY_FALSE) |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1588 | return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1589 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1590 | return SDValue(); |
Chris Lattner | 9115368 | 2007-03-04 20:03:15 +0000 | [diff] [blame] | 1591 | } |
| 1592 | |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1593 | // Since it may not be valid to emit a fold to zero for vector initializers |
| 1594 | // check if we can before folding. |
| 1595 | static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1596 | SelectionDAG &DAG, bool LegalOperations) { |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1597 | if (!VT.isVector()) { |
| 1598 | return DAG.getConstant(0, VT); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 1599 | } |
| 1600 | if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) { |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1601 | // Produce a vector of zeros. |
| 1602 | SDValue El = DAG.getConstant(0, VT.getVectorElementType()); |
| 1603 | std::vector<SDValue> Ops(VT.getVectorNumElements(), El); |
| 1604 | return DAG.getNode(ISD::BUILD_VECTOR, DL, VT, |
| 1605 | &Ops[0], Ops.size()); |
| 1606 | } |
| 1607 | return SDValue(); |
| 1608 | } |
| 1609 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1610 | SDValue DAGCombiner::visitSUB(SDNode *N) { |
| 1611 | SDValue N0 = N->getOperand(0); |
| 1612 | SDValue N1 = N->getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1613 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode()); |
| 1614 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1615 | ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 : |
| 1616 | dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1617 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1618 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1619 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1620 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1621 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1622 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1623 | } |
Bill Wendling | 2476e5d | 2008-12-10 22:36:00 +0000 | [diff] [blame] | 1624 | |
Chris Lattner | 854077d | 2005-10-17 01:07:11 +0000 | [diff] [blame] | 1625 | // fold (sub x, x) -> 0 |
Eric Christopher | 169e155 | 2011-02-16 01:10:03 +0000 | [diff] [blame] | 1626 | // FIXME: Refactor this and xor and other similar operations together. |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 1627 | if (N0 == N1) |
| 1628 | return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1629 | // fold (sub c1, c2) -> c1-c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1630 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1631 | return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C); |
Chris Lattner | 05b5743 | 2005-10-11 06:07:15 +0000 | [diff] [blame] | 1632 | // fold (sub x, c) -> (add x, -c) |
| 1633 | if (N1C) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1634 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1635 | DAG.getConstant(-N1C->getAPIntValue(), VT)); |
Evan Cheng | 1ad0e8b | 2010-01-18 21:38:44 +0000 | [diff] [blame] | 1636 | // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) |
| 1637 | if (N0C && N0C->isAllOnesValue()) |
| 1638 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0); |
Benjamin Kramer | 2c94b42 | 2011-01-29 12:34:05 +0000 | [diff] [blame] | 1639 | // fold A-(A-B) -> B |
| 1640 | if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0)) |
| 1641 | return N1.getOperand(1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1642 | // fold (A+B)-A -> B |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1643 | if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1644 | return N0.getOperand(1); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1645 | // fold (A+B)-B -> A |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 1646 | if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1647 | return N0.getOperand(0); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1648 | // fold C2-(A+C1) -> (C2-C1)-A |
| 1649 | if (N1.getOpcode() == ISD::ADD && N0C && N1C1) { |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 1650 | SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), |
| 1651 | VT); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1652 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC, |
Bill Wendling | 96cb112 | 2012-07-19 00:04:14 +0000 | [diff] [blame] | 1653 | N1.getOperand(0)); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 1654 | } |
Dale Johannesen | 7c7bc72 | 2008-12-23 23:47:22 +0000 | [diff] [blame] | 1655 | // fold ((A+(B+or-C))-B) -> A+or-C |
Dale Johannesen | fd3b7b7 | 2008-12-16 22:13:49 +0000 | [diff] [blame] | 1656 | if (N0.getOpcode() == ISD::ADD && |
Dale Johannesen | f9cbc1f | 2008-12-23 23:01:27 +0000 | [diff] [blame] | 1657 | (N0.getOperand(1).getOpcode() == ISD::SUB || |
| 1658 | N0.getOperand(1).getOpcode() == ISD::ADD) && |
Dale Johannesen | fd3b7b7 | 2008-12-16 22:13:49 +0000 | [diff] [blame] | 1659 | N0.getOperand(1).getOperand(0) == N1) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1660 | return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT, |
| 1661 | N0.getOperand(0), N0.getOperand(1).getOperand(1)); |
Dale Johannesen | f9cbc1f | 2008-12-23 23:01:27 +0000 | [diff] [blame] | 1662 | // fold ((A+(C+B))-B) -> A+C |
| 1663 | if (N0.getOpcode() == ISD::ADD && |
| 1664 | N0.getOperand(1).getOpcode() == ISD::ADD && |
| 1665 | N0.getOperand(1).getOperand(1) == N1) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1666 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, |
| 1667 | N0.getOperand(0), N0.getOperand(1).getOperand(0)); |
Dale Johannesen | 58e39b0 | 2008-12-23 01:59:54 +0000 | [diff] [blame] | 1668 | // fold ((A-(B-C))-C) -> A-B |
| 1669 | if (N0.getOpcode() == ISD::SUB && |
| 1670 | N0.getOperand(1).getOpcode() == ISD::SUB && |
| 1671 | N0.getOperand(1).getOperand(1) == N1) |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1672 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1673 | N0.getOperand(0), N0.getOperand(1).getOperand(0)); |
Bill Wendling | b0702e0 | 2009-01-30 02:42:10 +0000 | [diff] [blame] | 1674 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1675 | // If either operand of a sub is undef, the result is undef |
Dan Gohman | 70fb1ae | 2007-07-10 15:19:29 +0000 | [diff] [blame] | 1676 | if (N0.getOpcode() == ISD::UNDEF) |
| 1677 | return N0; |
| 1678 | if (N1.getOpcode() == ISD::UNDEF) |
| 1679 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1680 | |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1681 | // If the relocation model supports it, consider symbol offsets. |
| 1682 | if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 1683 | if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) { |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1684 | // fold (sub Sym, c) -> Sym-c |
| 1685 | if (N1C && GA->getOpcode() == ISD::GlobalAddress) |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 1686 | return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1687 | GA->getOffset() - |
| 1688 | (uint64_t)N1C->getSExtValue()); |
| 1689 | // fold (sub Sym+c1, Sym+c2) -> c1-c2 |
| 1690 | if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1)) |
| 1691 | if (GA->getGlobal() == GB->getGlobal()) |
| 1692 | return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(), |
| 1693 | VT); |
| 1694 | } |
| 1695 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1696 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1697 | } |
| 1698 | |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1699 | SDValue DAGCombiner::visitSUBC(SDNode *N) { |
| 1700 | SDValue N0 = N->getOperand(0); |
| 1701 | SDValue N1 = N->getOperand(1); |
| 1702 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1703 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 1704 | EVT VT = N0.getValueType(); |
| 1705 | |
| 1706 | // If the flag result is dead, turn this into an SUB. |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 1707 | if (!N->hasAnyUseOfValue(1)) |
Craig Topper | cc27452 | 2012-01-07 09:06:39 +0000 | [diff] [blame] | 1708 | return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1), |
| 1709 | DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1710 | MVT::Glue)); |
| 1711 | |
| 1712 | // fold (subc x, x) -> 0 + no borrow |
| 1713 | if (N0 == N1) |
| 1714 | return CombineTo(N, DAG.getConstant(0, VT), |
| 1715 | DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1716 | MVT::Glue)); |
| 1717 | |
| 1718 | // fold (subc x, 0) -> x + no borrow |
| 1719 | if (N1C && N1C->isNullValue()) |
| 1720 | return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1721 | MVT::Glue)); |
| 1722 | |
| 1723 | // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow |
| 1724 | if (N0C && N0C->isAllOnesValue()) |
| 1725 | return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0), |
| 1726 | DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(), |
| 1727 | MVT::Glue)); |
| 1728 | |
| 1729 | return SDValue(); |
| 1730 | } |
| 1731 | |
| 1732 | SDValue DAGCombiner::visitSUBE(SDNode *N) { |
| 1733 | SDValue N0 = N->getOperand(0); |
| 1734 | SDValue N1 = N->getOperand(1); |
| 1735 | SDValue CarryIn = N->getOperand(2); |
| 1736 | |
| 1737 | // fold (sube x, y, false) -> (subc x, y) |
| 1738 | if (CarryIn.getOpcode() == ISD::CARRY_FALSE) |
| 1739 | return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1); |
| 1740 | |
| 1741 | return SDValue(); |
| 1742 | } |
| 1743 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1744 | SDValue DAGCombiner::visitMUL(SDNode *N) { |
| 1745 | SDValue N0 = N->getOperand(0); |
| 1746 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1747 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1748 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1749 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1750 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1751 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1752 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1753 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1754 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1755 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1756 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1757 | // fold (mul x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 1758 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1759 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1760 | // fold (mul c1, c2) -> c1*c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1761 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1762 | return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 1763 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 1764 | if (N0C && !N1C) |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1765 | return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1766 | // fold (mul x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1767 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 1768 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1769 | // fold (mul x, -1) -> 0-x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1770 | if (N1C && N1C->isAllOnesValue()) |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1771 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1772 | DAG.getConstant(0, VT), N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1773 | // fold (mul x, (1 << c)) -> x << c |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1774 | if (N1C && N1C->getAPIntValue().isPowerOf2()) |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1775 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1776 | DAG.getConstant(N1C->getAPIntValue().logBase2(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1777 | getShiftAmountTy(N0.getValueType()))); |
Chris Lattner | 3e6099b | 2005-10-30 06:41:49 +0000 | [diff] [blame] | 1778 | // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c |
Chris Lattner | 66b8bc3 | 2009-03-09 20:22:18 +0000 | [diff] [blame] | 1779 | if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) { |
| 1780 | unsigned Log2Val = (-N1C->getAPIntValue()).logBase2(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1781 | // 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] | 1782 | // single-use add), we should put the negate there. |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1783 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1784 | DAG.getConstant(0, VT), |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1785 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1786 | DAG.getConstant(Log2Val, |
| 1787 | getShiftAmountTy(N0.getValueType())))); |
Chris Lattner | 66b8bc3 | 2009-03-09 20:22:18 +0000 | [diff] [blame] | 1788 | } |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1789 | // (mul (shl X, c1), c2) -> (mul X, c2 << c1) |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1790 | if (N1C && N0.getOpcode() == ISD::SHL && |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1791 | isa<ConstantSDNode>(N0.getOperand(1))) { |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1792 | SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1793 | N1, N0.getOperand(1)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1794 | AddToWorkList(C3.getNode()); |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1795 | return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 1796 | N0.getOperand(0), C3); |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1797 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1798 | |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1799 | // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one |
| 1800 | // use. |
| 1801 | { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1802 | SDValue Sh(0,0), Y(0,0); |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1803 | // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)). |
| 1804 | if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1805 | N0.getNode()->hasOneUse()) { |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1806 | Sh = N0; Y = N1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1807 | } else if (N1.getOpcode() == ISD::SHL && |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 1808 | isa<ConstantSDNode>(N1.getOperand(1)) && |
| 1809 | N1.getNode()->hasOneUse()) { |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1810 | Sh = N1; Y = N0; |
| 1811 | } |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1812 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1813 | if (Sh.getNode()) { |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1814 | SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 1815 | Sh.getOperand(0), Y); |
| 1816 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, |
| 1817 | Mul, Sh.getOperand(1)); |
Chris Lattner | 0b1a85f | 2006-03-01 03:44:24 +0000 | [diff] [blame] | 1818 | } |
| 1819 | } |
Bill Wendling | 73e16b2 | 2009-01-30 02:49:26 +0000 | [diff] [blame] | 1820 | |
Chris Lattner | a1deca3 | 2006-03-04 23:33:26 +0000 | [diff] [blame] | 1821 | // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1822 | if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() && |
Bill Wendling | 9c8148a | 2009-01-30 02:45:56 +0000 | [diff] [blame] | 1823 | isa<ConstantSDNode>(N0.getOperand(1))) |
| 1824 | return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, |
| 1825 | DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT, |
| 1826 | N0.getOperand(0), N1), |
| 1827 | DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT, |
| 1828 | N0.getOperand(1), N1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1829 | |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1830 | // reassociate mul |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 1831 | SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1832 | if (RMUL.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 1833 | return RMUL; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1834 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 1835 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1836 | } |
| 1837 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1838 | SDValue DAGCombiner::visitSDIV(SDNode *N) { |
| 1839 | SDValue N0 = N->getOperand(0); |
| 1840 | SDValue N1 = N->getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1841 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode()); |
| 1842 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1843 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1844 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1845 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1846 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1847 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1848 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1849 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1850 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1851 | // fold (sdiv c1, c2) -> c1/c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1852 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1853 | return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C); |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1854 | // fold (sdiv X, 1) -> X |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1855 | if (N1C && N1C->getAPIntValue() == 1LL) |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1856 | return N0; |
| 1857 | // fold (sdiv X, -1) -> 0-X |
| 1858 | if (N1C && N1C->isAllOnesValue()) |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1859 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1860 | DAG.getConstant(0, VT), N0); |
Chris Lattner | 094c8fc | 2005-10-07 06:10:46 +0000 | [diff] [blame] | 1861 | // If we know the sign bits of both operands are zero, strength reduce to a |
| 1862 | // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2 |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1863 | if (!VT.isVector()) { |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1864 | if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1865 | return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(), |
| 1866 | N0, N1); |
Chris Lattner | f32aac3 | 2008-01-27 23:32:17 +0000 | [diff] [blame] | 1867 | } |
Nate Begeman | cd6a6ed | 2006-02-17 07:26:20 +0000 | [diff] [blame] | 1868 | // fold (sdiv X, pow2) -> simple ops after legalize |
Eli Friedman | 1c663fe | 2011-12-07 03:55:52 +0000 | [diff] [blame] | 1869 | if (N1C && !N1C->isNullValue() && |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1870 | (N1C->getAPIntValue().isPowerOf2() || |
| 1871 | (-N1C->getAPIntValue()).isPowerOf2())) { |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1872 | // If dividing by powers of two is cheap, then don't perform the following |
| 1873 | // fold. |
| 1874 | if (TLI.isPow2DivCheap()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1875 | return SDValue(); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1876 | |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1877 | unsigned lg2 = N1C->getAPIntValue().countTrailingZeros(); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1878 | |
Chris Lattner | 8f4880b | 2006-02-16 08:02:36 +0000 | [diff] [blame] | 1879 | // Splat the sign bit into the register |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1880 | SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0, |
| 1881 | DAG.getConstant(VT.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1882 | getShiftAmountTy(N0.getValueType()))); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1883 | AddToWorkList(SGN.getNode()); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1884 | |
Chris Lattner | 8f4880b | 2006-02-16 08:02:36 +0000 | [diff] [blame] | 1885 | // Add (N0 < 0) ? abs2 - 1 : 0; |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1886 | SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN, |
| 1887 | DAG.getConstant(VT.getSizeInBits() - lg2, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1888 | getShiftAmountTy(SGN.getValueType()))); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1889 | SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1890 | AddToWorkList(SRL.getNode()); |
| 1891 | AddToWorkList(ADD.getNode()); // Divide by pow2 |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1892 | SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1893 | DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType()))); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1894 | |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1895 | // If we're dividing by a positive value, we're done. Otherwise, we must |
| 1896 | // negate the result. |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1897 | if (N1C->getAPIntValue().isNonNegative()) |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1898 | return SRA; |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1899 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1900 | AddToWorkList(SRA.getNode()); |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1901 | return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, |
| 1902 | DAG.getConstant(0, VT), SRA); |
Nate Begeman | 405e3ec | 2005-10-21 00:02:42 +0000 | [diff] [blame] | 1903 | } |
Bill Wendling | 944d34b | 2009-01-30 02:52:17 +0000 | [diff] [blame] | 1904 | |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 1905 | // if integer divide is expensive and we satisfy the requirements, emit an |
| 1906 | // alternate sequence. |
Eli Friedman | fd58cd7 | 2011-10-27 02:06:39 +0000 | [diff] [blame] | 1907 | if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1908 | SDValue Op = BuildSDIV(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1909 | if (Op.getNode()) return Op; |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 1910 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1911 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1912 | // undef / X -> 0 |
| 1913 | if (N0.getOpcode() == ISD::UNDEF) |
| 1914 | return DAG.getConstant(0, VT); |
| 1915 | // X / undef -> undef |
| 1916 | if (N1.getOpcode() == ISD::UNDEF) |
| 1917 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1918 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1919 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1920 | } |
| 1921 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1922 | SDValue DAGCombiner::visitUDIV(SDNode *N) { |
| 1923 | SDValue N0 = N->getOperand(0); |
| 1924 | SDValue N1 = N->getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1925 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode()); |
| 1926 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1927 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1928 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1929 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1930 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1931 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1932 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 1933 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1934 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1935 | // fold (udiv c1, c2) -> c1/c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1936 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1937 | return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1938 | // fold (udiv x, (1 << c)) -> x >>u c |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1939 | if (N1C && N1C->getAPIntValue().isPowerOf2()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1940 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1941 | DAG.getConstant(N1C->getAPIntValue().logBase2(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1942 | getShiftAmountTy(N0.getValueType()))); |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1943 | // 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] | 1944 | if (N1.getOpcode() == ISD::SHL) { |
| 1945 | if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1946 | if (SHC->getAPIntValue().isPowerOf2()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1947 | EVT ADDVT = N1.getOperand(1).getValueType(); |
Bill Wendling | 07d8514 | 2009-01-30 02:55:25 +0000 | [diff] [blame] | 1948 | SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT, |
| 1949 | N1.getOperand(1), |
| 1950 | DAG.getConstant(SHC->getAPIntValue() |
| 1951 | .logBase2(), |
| 1952 | ADDVT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1953 | AddToWorkList(Add.getNode()); |
Bill Wendling | 07d8514 | 2009-01-30 02:55:25 +0000 | [diff] [blame] | 1954 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add); |
Nate Begeman | fb5e4bd | 2006-02-05 07:20:23 +0000 | [diff] [blame] | 1955 | } |
| 1956 | } |
| 1957 | } |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 1958 | // fold (udiv x, c) -> alternate |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 1959 | if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1960 | SDValue Op = BuildUDIV(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1961 | if (Op.getNode()) return Op; |
Chris Lattner | e9936d1 | 2005-10-22 18:50:15 +0000 | [diff] [blame] | 1962 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1963 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 1964 | // undef / X -> 0 |
| 1965 | if (N0.getOpcode() == ISD::UNDEF) |
| 1966 | return DAG.getConstant(0, VT); |
| 1967 | // X / undef -> undef |
| 1968 | if (N1.getOpcode() == ISD::UNDEF) |
| 1969 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1970 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1971 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1972 | } |
| 1973 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1974 | SDValue DAGCombiner::visitSREM(SDNode *N) { |
| 1975 | SDValue N0 = N->getOperand(0); |
| 1976 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1977 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 1978 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1979 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1980 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 1981 | // fold (srem c1, c2) -> c1%c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 1982 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 1983 | return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C); |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 1984 | // If we know the sign bits of both operands are zero, strength reduce to a |
| 1985 | // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15 |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1986 | if (!VT.isVector()) { |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1987 | if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 1988 | return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1); |
Chris Lattner | ee339f4 | 2008-01-27 23:21:58 +0000 | [diff] [blame] | 1989 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1990 | |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 1991 | // If X/C can be simplified by the division-by-constant logic, lower |
| 1992 | // X%C to the equivalent of X-X/C*C. |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 1993 | if (N1C && !N1C->isNullValue()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 1994 | SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1995 | AddToWorkList(Div.getNode()); |
| 1996 | SDValue OptimizedDiv = combine(Div.getNode()); |
| 1997 | if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 1998 | SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 1999 | OptimizedDiv, N1); |
| 2000 | SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2001 | AddToWorkList(Mul.getNode()); |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 2002 | return Sub; |
| 2003 | } |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 2004 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2005 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2006 | // undef % X -> 0 |
| 2007 | if (N0.getOpcode() == ISD::UNDEF) |
| 2008 | return DAG.getConstant(0, VT); |
| 2009 | // X % undef -> undef |
| 2010 | if (N1.getOpcode() == ISD::UNDEF) |
| 2011 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2012 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2013 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2014 | } |
| 2015 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2016 | SDValue DAGCombiner::visitUREM(SDNode *N) { |
| 2017 | SDValue N0 = N->getOperand(0); |
| 2018 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2019 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 2020 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2021 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2022 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2023 | // fold (urem c1, c2) -> c1%c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2024 | if (N0C && N1C && !N1C->isNullValue()) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 2025 | return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C); |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 2026 | // fold (urem x, pow2) -> (and x, pow2-1) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2027 | if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2()) |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2028 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2029 | DAG.getConstant(N1C->getAPIntValue()-1,VT)); |
Nate Begeman | c031e33 | 2006-02-05 07:36:48 +0000 | [diff] [blame] | 2030 | // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1)) |
| 2031 | if (N1.getOpcode() == ISD::SHL) { |
| 2032 | if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2033 | if (SHC->getAPIntValue().isPowerOf2()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2034 | SDValue Add = |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2035 | DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2036 | DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2037 | VT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2038 | AddToWorkList(Add.getNode()); |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2039 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add); |
Nate Begeman | c031e33 | 2006-02-05 07:36:48 +0000 | [diff] [blame] | 2040 | } |
| 2041 | } |
| 2042 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2043 | |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 2044 | // If X/C can be simplified by the division-by-constant logic, lower |
| 2045 | // X%C to the equivalent of X-X/C*C. |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 2046 | if (N1C && !N1C->isNullValue()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2047 | SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1); |
Dan Gohman | 942ca7f | 2008-09-08 16:59:01 +0000 | [diff] [blame] | 2048 | AddToWorkList(Div.getNode()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2049 | SDValue OptimizedDiv = combine(Div.getNode()); |
| 2050 | if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) { |
Bill Wendling | 6d3bf8c | 2009-01-30 02:57:00 +0000 | [diff] [blame] | 2051 | SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, |
| 2052 | OptimizedDiv, N1); |
| 2053 | SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2054 | AddToWorkList(Mul.getNode()); |
Dan Gohman | 7700304 | 2007-11-26 23:46:11 +0000 | [diff] [blame] | 2055 | return Sub; |
| 2056 | } |
Chris Lattner | 26d2990 | 2006-10-12 20:58:32 +0000 | [diff] [blame] | 2057 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2058 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2059 | // undef % X -> 0 |
| 2060 | if (N0.getOpcode() == ISD::UNDEF) |
| 2061 | return DAG.getConstant(0, VT); |
| 2062 | // X % undef -> undef |
| 2063 | if (N1.getOpcode() == ISD::UNDEF) |
| 2064 | return N1; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2065 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2066 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2067 | } |
| 2068 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2069 | SDValue DAGCombiner::visitMULHS(SDNode *N) { |
| 2070 | SDValue N0 = N->getOperand(0); |
| 2071 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2072 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2073 | EVT VT = N->getValueType(0); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2074 | DebugLoc DL = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2075 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2076 | // fold (mulhs x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2077 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2078 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2079 | // fold (mulhs x, 1) -> (sra x, size(x)-1) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2080 | if (N1C && N1C->getAPIntValue() == 1) |
Bill Wendling | 326411d | 2009-01-30 03:00:18 +0000 | [diff] [blame] | 2081 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0, |
| 2082 | DAG.getConstant(N0.getValueType().getSizeInBits() - 1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2083 | getShiftAmountTy(N0.getValueType()))); |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2084 | // fold (mulhs x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 2085 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2086 | return DAG.getConstant(0, VT); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2087 | |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2088 | // If the type twice as wide is legal, transform the mulhs to a wider multiply |
| 2089 | // plus a shift. |
| 2090 | if (VT.isSimple() && !VT.isVector()) { |
| 2091 | MVT Simple = VT.getSimpleVT(); |
| 2092 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2093 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2094 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2095 | N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0); |
| 2096 | N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1); |
| 2097 | N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); |
Chris Lattner | 1a0fbe2 | 2010-12-15 05:51:39 +0000 | [diff] [blame] | 2098 | N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2099 | DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType()))); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2100 | return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); |
| 2101 | } |
| 2102 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2103 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2104 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2105 | } |
| 2106 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2107 | SDValue DAGCombiner::visitMULHU(SDNode *N) { |
| 2108 | SDValue N0 = N->getOperand(0); |
| 2109 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2110 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2111 | EVT VT = N->getValueType(0); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2112 | DebugLoc DL = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2113 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2114 | // fold (mulhu x, 0) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2115 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2116 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2117 | // fold (mulhu x, 1) -> 0 |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2118 | if (N1C && N1C->getAPIntValue() == 1) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2119 | return DAG.getConstant(0, N0.getValueType()); |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2120 | // fold (mulhu x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 2121 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2122 | return DAG.getConstant(0, VT); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2123 | |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2124 | // If the type twice as wide is legal, transform the mulhu to a wider multiply |
| 2125 | // plus a shift. |
| 2126 | if (VT.isSimple() && !VT.isVector()) { |
| 2127 | MVT Simple = VT.getSimpleVT(); |
| 2128 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2129 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2130 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2131 | N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0); |
| 2132 | N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1); |
| 2133 | N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); |
| 2134 | N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2135 | DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType()))); |
Chris Lattner | de1c360 | 2010-12-13 08:39:01 +0000 | [diff] [blame] | 2136 | return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); |
| 2137 | } |
| 2138 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2139 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2140 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2141 | } |
| 2142 | |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2143 | /// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that |
| 2144 | /// compute two values. LoOp and HiOp give the opcodes for the two computations |
| 2145 | /// that are being performed. Return true if a simplification was made. |
| 2146 | /// |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2147 | SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2148 | unsigned HiOp) { |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2149 | // If the high half is not needed, just compute the low half. |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2150 | bool HiExists = N->hasAnyUseOfValue(1); |
| 2151 | if (!HiExists && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2152 | (!LegalOperations || |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2153 | TLI.isOperationLegal(LoOp, N->getValueType(0)))) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2154 | SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0), |
| 2155 | N->op_begin(), N->getNumOperands()); |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2156 | return CombineTo(N, Res, Res); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2157 | } |
| 2158 | |
| 2159 | // If the low half is not needed, just compute the high half. |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2160 | bool LoExists = N->hasAnyUseOfValue(0); |
| 2161 | if (!LoExists && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2162 | (!LegalOperations || |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2163 | TLI.isOperationLegal(HiOp, N->getValueType(1)))) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2164 | SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1), |
| 2165 | N->op_begin(), N->getNumOperands()); |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2166 | return CombineTo(N, Res, Res); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2167 | } |
| 2168 | |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2169 | // If both halves are used, return as it is. |
| 2170 | if (LoExists && HiExists) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2171 | return SDValue(); |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2172 | |
| 2173 | // If the two computed results can be simplified separately, separate them. |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2174 | if (LoExists) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2175 | SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0), |
| 2176 | N->op_begin(), N->getNumOperands()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2177 | AddToWorkList(Lo.getNode()); |
| 2178 | SDValue LoOpt = combine(Lo.getNode()); |
| 2179 | if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2180 | (!LegalOperations || |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 2181 | TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()))) |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2182 | return CombineTo(N, LoOpt, LoOpt); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2183 | } |
| 2184 | |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2185 | if (HiExists) { |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2186 | SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2187 | N->op_begin(), N->getNumOperands()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2188 | AddToWorkList(Hi.getNode()); |
| 2189 | SDValue HiOpt = combine(Hi.getNode()); |
| 2190 | if (HiOpt.getNode() && HiOpt != Hi && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2191 | (!LegalOperations || |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 2192 | TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType()))) |
Chris Lattner | 5eee427 | 2008-01-26 01:09:19 +0000 | [diff] [blame] | 2193 | return CombineTo(N, HiOpt, HiOpt); |
Evan Cheng | 4471194 | 2007-11-08 09:25:29 +0000 | [diff] [blame] | 2194 | } |
Bill Wendling | 826d114 | 2009-01-30 03:08:40 +0000 | [diff] [blame] | 2195 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2196 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2197 | } |
| 2198 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2199 | SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) { |
| 2200 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2201 | if (Res.getNode()) return Res; |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2202 | |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2203 | EVT VT = N->getValueType(0); |
| 2204 | DebugLoc DL = N->getDebugLoc(); |
| 2205 | |
| 2206 | // If the type twice as wide is legal, transform the mulhu to a wider multiply |
| 2207 | // plus a shift. |
| 2208 | if (VT.isSimple() && !VT.isVector()) { |
| 2209 | MVT Simple = VT.getSimpleVT(); |
| 2210 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2211 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2212 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2213 | SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0)); |
| 2214 | SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1)); |
| 2215 | Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); |
| 2216 | // Compute the high part as N1. |
| 2217 | Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2218 | DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType()))); |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2219 | Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); |
| 2220 | // Compute the low part as N0. |
| 2221 | Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); |
| 2222 | return CombineTo(N, Lo, Hi); |
| 2223 | } |
| 2224 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2225 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2226 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2227 | } |
| 2228 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2229 | SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) { |
| 2230 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2231 | if (Res.getNode()) return Res; |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2232 | |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2233 | EVT VT = N->getValueType(0); |
| 2234 | DebugLoc DL = N->getDebugLoc(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2235 | |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2236 | // If the type twice as wide is legal, transform the mulhu to a wider multiply |
| 2237 | // plus a shift. |
| 2238 | if (VT.isSimple() && !VT.isVector()) { |
| 2239 | MVT Simple = VT.getSimpleVT(); |
| 2240 | unsigned SimpleSize = Simple.getSizeInBits(); |
| 2241 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); |
| 2242 | if (TLI.isOperationLegal(ISD::MUL, NewVT)) { |
| 2243 | SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0)); |
| 2244 | SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1)); |
| 2245 | Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); |
| 2246 | // Compute the high part as N1. |
| 2247 | Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2248 | DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType()))); |
Chris Lattner | 33e77d3 | 2010-12-15 06:04:19 +0000 | [diff] [blame] | 2249 | Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); |
| 2250 | // Compute the low part as N0. |
| 2251 | Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); |
| 2252 | return CombineTo(N, Lo, Hi); |
| 2253 | } |
| 2254 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2255 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2256 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2257 | } |
| 2258 | |
Benjamin Kramer | f55d26e | 2011-05-21 18:31:55 +0000 | [diff] [blame] | 2259 | SDValue DAGCombiner::visitSMULO(SDNode *N) { |
| 2260 | // (smulo x, 2) -> (saddo x, x) |
| 2261 | if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) |
| 2262 | if (C2->getAPIntValue() == 2) |
| 2263 | return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(), |
| 2264 | N->getOperand(0), N->getOperand(0)); |
| 2265 | |
| 2266 | return SDValue(); |
| 2267 | } |
| 2268 | |
| 2269 | SDValue DAGCombiner::visitUMULO(SDNode *N) { |
| 2270 | // (umulo x, 2) -> (uaddo x, x) |
| 2271 | if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) |
| 2272 | if (C2->getAPIntValue() == 2) |
| 2273 | return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(), |
| 2274 | N->getOperand(0), N->getOperand(0)); |
| 2275 | |
| 2276 | return SDValue(); |
| 2277 | } |
| 2278 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2279 | SDValue DAGCombiner::visitSDIVREM(SDNode *N) { |
| 2280 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2281 | if (Res.getNode()) return Res; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2282 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2283 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2284 | } |
| 2285 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2286 | SDValue DAGCombiner::visitUDIVREM(SDNode *N) { |
| 2287 | SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2288 | if (Res.getNode()) return Res; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2289 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2290 | return SDValue(); |
Dan Gohman | 389079b | 2007-10-08 17:57:15 +0000 | [diff] [blame] | 2291 | } |
| 2292 | |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2293 | /// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with |
| 2294 | /// two operands of the same opcode, try to simplify it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2295 | SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) { |
| 2296 | SDValue N0 = N->getOperand(0), N1 = N->getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2297 | EVT VT = N0.getValueType(); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2298 | assert(N0.getOpcode() == N1.getOpcode() && "Bad input!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2299 | |
Dan Gohman | ff00a55 | 2010-01-14 03:08:49 +0000 | [diff] [blame] | 2300 | // Bail early if none of these transforms apply. |
| 2301 | if (N0.getNode()->getNumOperands() == 0) return SDValue(); |
| 2302 | |
Chris Lattner | 540121f | 2006-05-05 06:31:05 +0000 | [diff] [blame] | 2303 | // For each of OP in AND/OR/XOR: |
| 2304 | // fold (OP (zext x), (zext y)) -> (zext (OP x, y)) |
| 2305 | // fold (OP (sext x), (sext y)) -> (sext (OP x, y)) |
| 2306 | // fold (OP (aext x), (aext y)) -> (aext (OP x, y)) |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 2307 | // 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] | 2308 | // |
| 2309 | // do not sink logical op inside of a vector extend, since it may combine |
| 2310 | // into a vsetcc. |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2311 | EVT Op0VT = N0.getOperand(0).getValueType(); |
| 2312 | if ((N0.getOpcode() == ISD::ZERO_EXTEND || |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 2313 | N0.getOpcode() == ISD::SIGN_EXTEND || |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 2314 | // Avoid infinite looping with PromoteIntBinOp. |
| 2315 | (N0.getOpcode() == ISD::ANY_EXTEND && |
| 2316 | (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) || |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 2317 | (N0.getOpcode() == ISD::TRUNCATE && |
| 2318 | (!TLI.isZExtFree(VT, Op0VT) || |
| 2319 | !TLI.isTruncateFree(Op0VT, VT)) && |
| 2320 | TLI.isTypeLegal(Op0VT))) && |
Nate Begeman | 93e0ed3 | 2009-12-03 07:11:29 +0000 | [diff] [blame] | 2321 | !VT.isVector() && |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2322 | Op0VT == N1.getOperand(0).getValueType() && |
| 2323 | (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) { |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2324 | SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), |
| 2325 | N0.getOperand(0).getValueType(), |
| 2326 | N0.getOperand(0), N1.getOperand(0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2327 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2328 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2329 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2330 | |
Chris Lattner | a3dc3f6 | 2006-05-05 06:10:43 +0000 | [diff] [blame] | 2331 | // For each of OP in SHL/SRL/SRA/AND... |
| 2332 | // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z) |
| 2333 | // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z) |
| 2334 | // 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] | 2335 | if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL || |
Chris Lattner | a3dc3f6 | 2006-05-05 06:10:43 +0000 | [diff] [blame] | 2336 | N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) && |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2337 | N0.getOperand(1) == N1.getOperand(1)) { |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2338 | SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), |
| 2339 | N0.getOperand(0).getValueType(), |
| 2340 | N0.getOperand(0), N1.getOperand(0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2341 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | b74c867 | 2009-01-30 19:25:47 +0000 | [diff] [blame] | 2342 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 2343 | ORNode, N0.getOperand(1)); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2344 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2345 | |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2346 | // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B)) |
| 2347 | // Only perform this optimization after type legalization and before |
| 2348 | // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by |
| 2349 | // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and |
| 2350 | // we don't want to undo this promotion. |
| 2351 | // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper |
| 2352 | // on scalars. |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 2353 | if ((N0.getOpcode() == ISD::BITCAST || |
| 2354 | N0.getOpcode() == ISD::SCALAR_TO_VECTOR) && |
| 2355 | Level == AfterLegalizeTypes) { |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2356 | SDValue In0 = N0.getOperand(0); |
| 2357 | SDValue In1 = N1.getOperand(0); |
| 2358 | EVT In0Ty = In0.getValueType(); |
| 2359 | EVT In1Ty = In1.getValueType(); |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 2360 | DebugLoc DL = N->getDebugLoc(); |
| 2361 | // If both incoming values are integers, and the original types are the |
| 2362 | // same. |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2363 | if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) { |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 2364 | SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1); |
| 2365 | SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2366 | AddToWorkList(Op.getNode()); |
| 2367 | return BC; |
| 2368 | } |
| 2369 | } |
| 2370 | |
| 2371 | // Xor/and/or are indifferent to the swizzle operation (shuffle of one value). |
| 2372 | // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B)) |
| 2373 | // If both shuffles use the same mask, and both shuffle within a single |
| 2374 | // vector, then it is worthwhile to move the swizzle after the operation. |
| 2375 | // The type-legalizer generates this pattern when loading illegal |
| 2376 | // vector types from memory. In many cases this allows additional shuffle |
| 2377 | // optimizations. |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2378 | if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG && |
| 2379 | N0.getOperand(1).getOpcode() == ISD::UNDEF && |
| 2380 | N1.getOperand(1).getOpcode() == ISD::UNDEF) { |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2381 | ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0); |
| 2382 | ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1); |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2383 | |
| 2384 | assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() && |
| 2385 | "Inputs to shuffles are not the same type"); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2386 | |
| 2387 | unsigned NumElts = VT.getVectorNumElements(); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2388 | |
| 2389 | // Check that both shuffles use the same mask. The masks are known to be of |
| 2390 | // the same length because the result vector type is the same. |
| 2391 | bool SameMask = true; |
| 2392 | for (unsigned i = 0; i != NumElts; ++i) { |
| 2393 | int Idx0 = SVN0->getMaskElt(i); |
| 2394 | int Idx1 = SVN1->getMaskElt(i); |
| 2395 | if (Idx0 != Idx1) { |
| 2396 | SameMask = false; |
| 2397 | break; |
| 2398 | } |
| 2399 | } |
| 2400 | |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2401 | if (SameMask) { |
| 2402 | SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT, |
| 2403 | N0.getOperand(0), N1.getOperand(0)); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2404 | AddToWorkList(Op.getNode()); |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2405 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op, |
| 2406 | DAG.getUNDEF(VT), &SVN0->getMask()[0]); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 2407 | } |
| 2408 | } |
Craig Topper | f920423 | 2012-04-09 07:19:09 +0000 | [diff] [blame] | 2409 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2410 | return SDValue(); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2411 | } |
| 2412 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2413 | SDValue DAGCombiner::visitAND(SDNode *N) { |
| 2414 | SDValue N0 = N->getOperand(0); |
| 2415 | SDValue N1 = N->getOperand(1); |
| 2416 | SDValue LL, LR, RL, RR, CC0, CC1; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2417 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 2418 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2419 | EVT VT = N1.getValueType(); |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2420 | unsigned BitWidth = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2421 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2422 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2423 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2424 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2425 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 2426 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2427 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2428 | // fold (and x, undef) -> 0 |
Dan Gohman | d595b5f | 2007-07-10 14:20:37 +0000 | [diff] [blame] | 2429 | if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 2430 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2431 | // fold (and c1, c2) -> c1&c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2432 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 2433 | return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 2434 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 2435 | if (N0C && !N1C) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 2436 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2437 | // fold (and x, -1) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 2438 | if (N1C && N1C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2439 | return N0; |
| 2440 | // if (and x, c) is known to be zero, return 0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2441 | if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2442 | APInt::getAllOnesValue(BitWidth))) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2443 | return DAG.getConstant(0, VT); |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 2444 | // reassociate and |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 2445 | SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2446 | if (RAND.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 2447 | return RAND; |
Bill Wendling | 7d9f2b9 | 2010-03-03 00:35:56 +0000 | [diff] [blame] | 2448 | // fold (and (or x, C), D) -> D if (C & D) == D |
Nate Begeman | 5dc7e86 | 2005-11-02 18:42:59 +0000 | [diff] [blame] | 2449 | if (N1C && N0.getOpcode() == ISD::OR) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2450 | if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2451 | if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 2452 | return N1; |
Chris Lattner | 3603cd6 | 2006-02-02 07:17:31 +0000 | [diff] [blame] | 2453 | // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits. |
| 2454 | if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2455 | SDValue N0Op0 = N0.getOperand(0); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2456 | APInt Mask = ~N1C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 2457 | Mask = Mask.trunc(N0Op0.getValueSizeInBits()); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2458 | if (DAG.MaskedValueIsZero(N0Op0, Mask)) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2459 | SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), |
| 2460 | N0.getValueType(), N0Op0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2461 | |
Chris Lattner | 1ec05d1 | 2006-03-01 21:47:21 +0000 | [diff] [blame] | 2462 | // Replace uses of the AND with uses of the Zero extend node. |
| 2463 | CombineTo(N, Zext); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2464 | |
Chris Lattner | 3603cd6 | 2006-02-02 07:17:31 +0000 | [diff] [blame] | 2465 | // We actually want to replace all uses of the any_extend with the |
| 2466 | // zero_extend, to avoid duplicating things. This will later cause this |
| 2467 | // AND to be folded. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2468 | CombineTo(N0.getNode(), Zext); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2469 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | 3603cd6 | 2006-02-02 07:17:31 +0000 | [diff] [blame] | 2470 | } |
| 2471 | } |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2472 | // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) -> |
| 2473 | // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must |
| 2474 | // already be zero by virtue of the width of the base type of the load. |
| 2475 | // |
| 2476 | // the 'X' node here can either be nothing or an extract_vector_elt to catch |
| 2477 | // more cases. |
| 2478 | if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && |
| 2479 | N0.getOperand(0).getOpcode() == ISD::LOAD) || |
| 2480 | N0.getOpcode() == ISD::LOAD) { |
| 2481 | LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ? |
| 2482 | N0 : N0.getOperand(0) ); |
| 2483 | |
| 2484 | // Get the constant (if applicable) the zero'th operand is being ANDed with. |
| 2485 | // This can be a pure constant or a vector splat, in which case we treat the |
| 2486 | // vector as a scalar and use the splat value. |
| 2487 | APInt Constant = APInt::getNullValue(1); |
| 2488 | if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) { |
| 2489 | Constant = C->getAPIntValue(); |
| 2490 | } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) { |
| 2491 | APInt SplatValue, SplatUndef; |
| 2492 | unsigned SplatBitSize; |
| 2493 | bool HasAnyUndefs; |
| 2494 | bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef, |
| 2495 | SplatBitSize, HasAnyUndefs); |
| 2496 | if (IsSplat) { |
| 2497 | // Undef bits can contribute to a possible optimisation if set, so |
| 2498 | // set them. |
| 2499 | SplatValue |= SplatUndef; |
| 2500 | |
| 2501 | // The splat value may be something like "0x00FFFFFF", which means 0 for |
| 2502 | // the first vector value and FF for the rest, repeating. We need a mask |
| 2503 | // that will apply equally to all members of the vector, so AND all the |
| 2504 | // lanes of the constant together. |
| 2505 | EVT VT = Vector->getValueType(0); |
| 2506 | unsigned BitWidth = VT.getVectorElementType().getSizeInBits(); |
Silviu Baranga | 3d5e161 | 2012-09-05 08:57:21 +0000 | [diff] [blame] | 2507 | |
| 2508 | // If the splat value has been compressed to a bitlength lower |
| 2509 | // than the size of the vector lane, we need to re-expand it to |
| 2510 | // the lane size. |
| 2511 | if (BitWidth > SplatBitSize) |
| 2512 | for (SplatValue = SplatValue.zextOrTrunc(BitWidth); |
| 2513 | SplatBitSize < BitWidth; |
| 2514 | SplatBitSize = SplatBitSize * 2) |
| 2515 | SplatValue |= SplatValue.shl(SplatBitSize); |
| 2516 | |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2517 | Constant = APInt::getAllOnesValue(BitWidth); |
Silviu Baranga | 3d5e161 | 2012-09-05 08:57:21 +0000 | [diff] [blame] | 2518 | for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i) |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2519 | Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth); |
| 2520 | } |
| 2521 | } |
| 2522 | |
| 2523 | // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is |
| 2524 | // actually legal and isn't going to get expanded, else this is a false |
| 2525 | // optimisation. |
| 2526 | bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD, |
| 2527 | Load->getMemoryVT()); |
| 2528 | |
| 2529 | // Resize the constant to the same size as the original memory access before |
| 2530 | // extension. If it is still the AllOnesValue then this AND is completely |
| 2531 | // unneeded. |
| 2532 | Constant = |
| 2533 | Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits()); |
| 2534 | |
| 2535 | bool B; |
| 2536 | switch (Load->getExtensionType()) { |
| 2537 | default: B = false; break; |
| 2538 | case ISD::EXTLOAD: B = CanZextLoadProfitably; break; |
| 2539 | case ISD::ZEXTLOAD: |
| 2540 | case ISD::NON_EXTLOAD: B = true; break; |
| 2541 | } |
| 2542 | |
| 2543 | if (B && Constant.isAllOnesValue()) { |
| 2544 | // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to |
| 2545 | // preserve semantics once we get rid of the AND. |
| 2546 | SDValue NewLoad(Load, 0); |
| 2547 | if (Load->getExtensionType() == ISD::EXTLOAD) { |
| 2548 | NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD, |
| 2549 | Load->getValueType(0), Load->getDebugLoc(), |
| 2550 | Load->getChain(), Load->getBasePtr(), |
| 2551 | Load->getOffset(), Load->getMemoryVT(), |
| 2552 | Load->getMemOperand()); |
| 2553 | // Replace uses of the EXTLOAD with the new ZEXTLOAD. |
Hal Finkel | d65e463 | 2012-06-20 15:42:48 +0000 | [diff] [blame] | 2554 | if (Load->getNumValues() == 3) { |
| 2555 | // PRE/POST_INC loads have 3 values. |
| 2556 | SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1), |
| 2557 | NewLoad.getValue(2) }; |
| 2558 | CombineTo(Load, To, 3, true); |
| 2559 | } else { |
| 2560 | CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1)); |
| 2561 | } |
James Molloy | 6259dcd | 2012-02-20 12:02:38 +0000 | [diff] [blame] | 2562 | } |
| 2563 | |
| 2564 | // Fold the AND away, taking care not to fold to the old load node if we |
| 2565 | // replaced it. |
| 2566 | CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0); |
| 2567 | |
| 2568 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 2569 | } |
| 2570 | } |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2571 | // fold (and (setcc x), (setcc y)) -> (setcc (and x, y)) |
| 2572 | if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ |
| 2573 | ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); |
| 2574 | ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2575 | |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2576 | if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2577 | LL.getValueType().isInteger()) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2578 | // 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] | 2579 | if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2580 | SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(), |
| 2581 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2582 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2583 | return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2584 | } |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2585 | // 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] | 2586 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2587 | SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(), |
| 2588 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2589 | AddToWorkList(ANDNode.getNode()); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2590 | return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2591 | } |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2592 | // 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] | 2593 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) { |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2594 | SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(), |
| 2595 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2596 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2597 | return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2598 | } |
| 2599 | } |
| 2600 | // canonicalize equivalent to ll == rl |
| 2601 | if (LL == RR && LR == RL) { |
| 2602 | Op1 = ISD::getSetCCSwappedOperands(Op1); |
| 2603 | std::swap(RL, RR); |
| 2604 | } |
| 2605 | if (LL == RL && LR == RR) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2606 | bool isInteger = LL.getValueType().isInteger(); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2607 | ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger); |
Chris Lattner | 6e1c623 | 2008-10-28 07:11:07 +0000 | [diff] [blame] | 2608 | if (Result != ISD::SETCC_INVALID && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2609 | (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType()))) |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2610 | return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(), |
| 2611 | LL, LR, Result); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2612 | } |
| 2613 | } |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2614 | |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2615 | // Simplify: (and (op x...), (op y...)) -> (op (and x, y)) |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 2616 | if (N0.getOpcode() == N1.getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2617 | SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2618 | if (Tmp.getNode()) return Tmp; |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 2619 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2620 | |
Nate Begeman | de99629 | 2006-02-03 22:24:05 +0000 | [diff] [blame] | 2621 | // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1) |
| 2622 | // fold (and (sra)) -> (and (srl)) when possible. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2623 | if (!VT.isVector() && |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2624 | SimplifyDemandedBits(SDValue(N, 0))) |
| 2625 | return SDValue(N, 0); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2626 | |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 2627 | // fold (zext_inreg (extload x)) -> (zextload x) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2628 | if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2629 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2630 | EVT MemVT = LN0->getMemoryVT(); |
Nate Begeman | bfd65a0 | 2005-10-13 18:34:58 +0000 | [diff] [blame] | 2631 | // If we zero all the possible extended bits, then we can turn this into |
| 2632 | // 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] | 2633 | unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits(); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2634 | if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2635 | BitWidth - MemVT.getScalarType().getSizeInBits())) && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2636 | ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2637 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2638 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT, |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2639 | LN0->getChain(), LN0->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2640 | LN0->getPointerInfo(), MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2641 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 2642 | LN0->getAlignment()); |
Chris Lattner | 5750df9 | 2006-03-01 04:03:14 +0000 | [diff] [blame] | 2643 | AddToWorkList(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2644 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2645 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 2646 | } |
| 2647 | } |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2648 | // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2649 | if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 2650 | N0.hasOneUse()) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2651 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2652 | EVT MemVT = LN0->getMemoryVT(); |
Nate Begeman | bfd65a0 | 2005-10-13 18:34:58 +0000 | [diff] [blame] | 2653 | // If we zero all the possible extended bits, then we can turn this into |
| 2654 | // 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] | 2655 | unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits(); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2656 | if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, |
Dan Gohman | 6900a39 | 2010-03-04 00:23:16 +0000 | [diff] [blame] | 2657 | BitWidth - MemVT.getScalarType().getSizeInBits())) && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 2658 | ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 2659 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2660 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT, |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2661 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2662 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 2663 | MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2664 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 2665 | LN0->getAlignment()); |
Chris Lattner | 5750df9 | 2006-03-01 04:03:14 +0000 | [diff] [blame] | 2666 | AddToWorkList(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2667 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2668 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 2669 | } |
| 2670 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2671 | |
Chris Lattner | 35a9f5a | 2006-02-28 06:49:37 +0000 | [diff] [blame] | 2672 | // fold (and (load x), 255) -> (zextload x, i8) |
| 2673 | // fold (and (extload x, i16), 255) -> (zextload x, i8) |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2674 | // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8) |
| 2675 | if (N1C && (N0.getOpcode() == ISD::LOAD || |
| 2676 | (N0.getOpcode() == ISD::ANY_EXTEND && |
| 2677 | N0.getOperand(0).getOpcode() == ISD::LOAD))) { |
| 2678 | bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND; |
| 2679 | LoadSDNode *LN0 = HasAnyExt |
| 2680 | ? cast<LoadSDNode>(N0.getOperand(0)) |
| 2681 | : cast<LoadSDNode>(N0); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2682 | if (LN0->getExtensionType() != ISD::SEXTLOAD && |
Chris Lattner | bd1fccf | 2010-01-07 21:59:23 +0000 | [diff] [blame] | 2683 | LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) { |
Duncan Sands | 8eab8a2 | 2008-06-09 11:32:28 +0000 | [diff] [blame] | 2684 | uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits(); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2685 | if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){ |
| 2686 | EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits); |
| 2687 | EVT LoadedVT = LN0->getMemoryVT(); |
Duncan Sands | 8eab8a2 | 2008-06-09 11:32:28 +0000 | [diff] [blame] | 2688 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2689 | if (ExtVT == LoadedVT && |
| 2690 | (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) { |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2691 | EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2692 | |
| 2693 | SDValue NewLoad = |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2694 | DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy, |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2695 | LN0->getChain(), LN0->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2696 | LN0->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2697 | ExtVT, LN0->isVolatile(), LN0->isNonTemporal(), |
| 2698 | LN0->getAlignment()); |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2699 | AddToWorkList(N); |
| 2700 | CombineTo(LN0, NewLoad, NewLoad.getValue(1)); |
| 2701 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 2702 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2703 | |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2704 | // Do not change the width of a volatile load. |
| 2705 | // Do not generate loads of non-round integer types since these can |
| 2706 | // be expensive (and would be wrong if the type is not byte sized). |
| 2707 | if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() && |
| 2708 | (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) { |
| 2709 | EVT PtrType = LN0->getOperand(1).getValueType(); |
Bill Wendling | 2627a88 | 2009-01-30 20:43:18 +0000 | [diff] [blame] | 2710 | |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2711 | unsigned Alignment = LN0->getAlignment(); |
| 2712 | SDValue NewPtr = LN0->getBasePtr(); |
| 2713 | |
| 2714 | // For big endian targets, we need to add an offset to the pointer |
| 2715 | // to load the correct bytes. For little endian systems, we merely |
| 2716 | // need to read fewer bytes from the same pointer. |
| 2717 | if (TLI.isBigEndian()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2718 | unsigned LVTStoreBytes = LoadedVT.getStoreSize(); |
| 2719 | unsigned EVTStoreBytes = ExtVT.getStoreSize(); |
| 2720 | unsigned PtrOff = LVTStoreBytes - EVTStoreBytes; |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2721 | NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType, |
| 2722 | NewPtr, DAG.getConstant(PtrOff, PtrType)); |
| 2723 | Alignment = MinAlign(Alignment, PtrOff); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2724 | } |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2725 | |
| 2726 | AddToWorkList(NewPtr.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2727 | |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2728 | EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT; |
| 2729 | SDValue Load = |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 2730 | DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy, |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2731 | LN0->getChain(), NewPtr, |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 2732 | LN0->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 2733 | ExtVT, LN0->isVolatile(), LN0->isNonTemporal(), |
| 2734 | Alignment); |
Chris Lattner | ef7634c | 2010-01-07 21:53:27 +0000 | [diff] [blame] | 2735 | AddToWorkList(N); |
| 2736 | CombineTo(LN0, Load, Load.getValue(1)); |
| 2737 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2738 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2739 | } |
Chris Lattner | 15045b6 | 2006-02-28 06:35:35 +0000 | [diff] [blame] | 2740 | } |
| 2741 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2742 | |
Evan Cheng | a9e13ba | 2012-07-17 18:54:11 +0000 | [diff] [blame] | 2743 | if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL && |
| 2744 | VT.getSizeInBits() <= 64) { |
| 2745 | if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
| 2746 | APInt ADDC = ADDI->getAPIntValue(); |
| 2747 | if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) { |
| 2748 | // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal |
| 2749 | // immediate for an add, but it is legal if its top c2 bits are set, |
| 2750 | // transform the ADD so the immediate doesn't need to be materialized |
| 2751 | // in a register. |
| 2752 | if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) { |
| 2753 | APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(), |
| 2754 | SRLI->getZExtValue()); |
| 2755 | if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) { |
| 2756 | ADDC |= Mask; |
| 2757 | if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) { |
| 2758 | SDValue NewAdd = |
| 2759 | DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, |
| 2760 | N0.getOperand(0), DAG.getConstant(ADDC, VT)); |
| 2761 | CombineTo(N0.getNode(), NewAdd); |
| 2762 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 2763 | } |
| 2764 | } |
| 2765 | } |
| 2766 | } |
| 2767 | } |
| 2768 | } |
| 2769 | |
| 2770 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 2771 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 2772 | } |
| 2773 | |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 2774 | /// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16 |
| 2775 | /// |
| 2776 | SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1, |
| 2777 | bool DemandHighBits) { |
| 2778 | if (!LegalOperations) |
| 2779 | return SDValue(); |
| 2780 | |
| 2781 | EVT VT = N->getValueType(0); |
| 2782 | if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16) |
| 2783 | return SDValue(); |
| 2784 | if (!TLI.isOperationLegal(ISD::BSWAP, VT)) |
| 2785 | return SDValue(); |
| 2786 | |
| 2787 | // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00) |
| 2788 | bool LookPassAnd0 = false; |
| 2789 | bool LookPassAnd1 = false; |
| 2790 | if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL) |
| 2791 | std::swap(N0, N1); |
| 2792 | if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL) |
| 2793 | std::swap(N0, N1); |
| 2794 | if (N0.getOpcode() == ISD::AND) { |
| 2795 | if (!N0.getNode()->hasOneUse()) |
| 2796 | return SDValue(); |
| 2797 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2798 | if (!N01C || N01C->getZExtValue() != 0xFF00) |
| 2799 | return SDValue(); |
| 2800 | N0 = N0.getOperand(0); |
| 2801 | LookPassAnd0 = true; |
| 2802 | } |
| 2803 | |
| 2804 | if (N1.getOpcode() == ISD::AND) { |
| 2805 | if (!N1.getNode()->hasOneUse()) |
| 2806 | return SDValue(); |
| 2807 | ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); |
| 2808 | if (!N11C || N11C->getZExtValue() != 0xFF) |
| 2809 | return SDValue(); |
| 2810 | N1 = N1.getOperand(0); |
| 2811 | LookPassAnd1 = true; |
| 2812 | } |
| 2813 | |
| 2814 | if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL) |
| 2815 | std::swap(N0, N1); |
| 2816 | if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL) |
| 2817 | return SDValue(); |
| 2818 | if (!N0.getNode()->hasOneUse() || |
| 2819 | !N1.getNode()->hasOneUse()) |
| 2820 | return SDValue(); |
| 2821 | |
| 2822 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2823 | ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); |
| 2824 | if (!N01C || !N11C) |
| 2825 | return SDValue(); |
| 2826 | if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8) |
| 2827 | return SDValue(); |
| 2828 | |
| 2829 | // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8) |
| 2830 | SDValue N00 = N0->getOperand(0); |
| 2831 | if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) { |
| 2832 | if (!N00.getNode()->hasOneUse()) |
| 2833 | return SDValue(); |
| 2834 | ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1)); |
| 2835 | if (!N001C || N001C->getZExtValue() != 0xFF) |
| 2836 | return SDValue(); |
| 2837 | N00 = N00.getOperand(0); |
| 2838 | LookPassAnd0 = true; |
| 2839 | } |
| 2840 | |
| 2841 | SDValue N10 = N1->getOperand(0); |
| 2842 | if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) { |
| 2843 | if (!N10.getNode()->hasOneUse()) |
| 2844 | return SDValue(); |
| 2845 | ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1)); |
| 2846 | if (!N101C || N101C->getZExtValue() != 0xFF00) |
| 2847 | return SDValue(); |
| 2848 | N10 = N10.getOperand(0); |
| 2849 | LookPassAnd1 = true; |
| 2850 | } |
| 2851 | |
| 2852 | if (N00 != N10) |
| 2853 | return SDValue(); |
| 2854 | |
| 2855 | // Make sure everything beyond the low halfword is zero since the SRL 16 |
| 2856 | // will clear the top bits. |
| 2857 | unsigned OpSizeInBits = VT.getSizeInBits(); |
| 2858 | if (DemandHighBits && OpSizeInBits > 16 && |
| 2859 | (!LookPassAnd0 || !LookPassAnd1) && |
| 2860 | !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16))) |
| 2861 | return SDValue(); |
Eric Christopher | 7332e6e | 2011-07-14 01:12:15 +0000 | [diff] [blame] | 2862 | |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 2863 | SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00); |
| 2864 | if (OpSizeInBits > 16) |
| 2865 | Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res, |
| 2866 | DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT))); |
| 2867 | return Res; |
| 2868 | } |
| 2869 | |
| 2870 | /// isBSwapHWordElement - Return true if the specified node is an element |
| 2871 | /// that makes up a 32-bit packed halfword byteswap. i.e. |
| 2872 | /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8) |
| 2873 | static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) { |
| 2874 | if (!N.getNode()->hasOneUse()) |
| 2875 | return false; |
| 2876 | |
| 2877 | unsigned Opc = N.getOpcode(); |
| 2878 | if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL) |
| 2879 | return false; |
| 2880 | |
| 2881 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1)); |
| 2882 | if (!N1C) |
| 2883 | return false; |
| 2884 | |
| 2885 | unsigned Num; |
| 2886 | switch (N1C->getZExtValue()) { |
| 2887 | default: |
| 2888 | return false; |
| 2889 | case 0xFF: Num = 0; break; |
| 2890 | case 0xFF00: Num = 1; break; |
| 2891 | case 0xFF0000: Num = 2; break; |
| 2892 | case 0xFF000000: Num = 3; break; |
| 2893 | } |
| 2894 | |
| 2895 | // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00). |
| 2896 | SDValue N0 = N.getOperand(0); |
| 2897 | if (Opc == ISD::AND) { |
| 2898 | if (Num == 0 || Num == 2) { |
| 2899 | // (x >> 8) & 0xff |
| 2900 | // (x >> 8) & 0xff0000 |
| 2901 | if (N0.getOpcode() != ISD::SRL) |
| 2902 | return false; |
| 2903 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2904 | if (!C || C->getZExtValue() != 8) |
| 2905 | return false; |
| 2906 | } else { |
| 2907 | // (x << 8) & 0xff00 |
| 2908 | // (x << 8) & 0xff000000 |
| 2909 | if (N0.getOpcode() != ISD::SHL) |
| 2910 | return false; |
| 2911 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 2912 | if (!C || C->getZExtValue() != 8) |
| 2913 | return false; |
| 2914 | } |
| 2915 | } else if (Opc == ISD::SHL) { |
| 2916 | // (x & 0xff) << 8 |
| 2917 | // (x & 0xff0000) << 8 |
| 2918 | if (Num != 0 && Num != 2) |
| 2919 | return false; |
| 2920 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); |
| 2921 | if (!C || C->getZExtValue() != 8) |
| 2922 | return false; |
| 2923 | } else { // Opc == ISD::SRL |
| 2924 | // (x & 0xff00) >> 8 |
| 2925 | // (x & 0xff000000) >> 8 |
| 2926 | if (Num != 1 && Num != 3) |
| 2927 | return false; |
| 2928 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); |
| 2929 | if (!C || C->getZExtValue() != 8) |
| 2930 | return false; |
| 2931 | } |
| 2932 | |
| 2933 | if (Parts[Num]) |
| 2934 | return false; |
| 2935 | |
| 2936 | Parts[Num] = N0.getOperand(0).getNode(); |
| 2937 | return true; |
| 2938 | } |
| 2939 | |
| 2940 | /// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is |
| 2941 | /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8) |
| 2942 | /// => (rotl (bswap x), 16) |
| 2943 | SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) { |
| 2944 | if (!LegalOperations) |
| 2945 | return SDValue(); |
| 2946 | |
| 2947 | EVT VT = N->getValueType(0); |
| 2948 | if (VT != MVT::i32) |
| 2949 | return SDValue(); |
| 2950 | if (!TLI.isOperationLegal(ISD::BSWAP, VT)) |
| 2951 | return SDValue(); |
| 2952 | |
| 2953 | SmallVector<SDNode*,4> Parts(4, (SDNode*)0); |
| 2954 | // Look for either |
| 2955 | // (or (or (and), (and)), (or (and), (and))) |
| 2956 | // (or (or (or (and), (and)), (and)), (and)) |
| 2957 | if (N0.getOpcode() != ISD::OR) |
| 2958 | return SDValue(); |
| 2959 | SDValue N00 = N0.getOperand(0); |
| 2960 | SDValue N01 = N0.getOperand(1); |
| 2961 | |
| 2962 | if (N1.getOpcode() == ISD::OR) { |
| 2963 | // (or (or (and), (and)), (or (and), (and))) |
| 2964 | SDValue N000 = N00.getOperand(0); |
| 2965 | if (!isBSwapHWordElement(N000, Parts)) |
| 2966 | return SDValue(); |
| 2967 | |
| 2968 | SDValue N001 = N00.getOperand(1); |
| 2969 | if (!isBSwapHWordElement(N001, Parts)) |
| 2970 | return SDValue(); |
| 2971 | SDValue N010 = N01.getOperand(0); |
| 2972 | if (!isBSwapHWordElement(N010, Parts)) |
| 2973 | return SDValue(); |
| 2974 | SDValue N011 = N01.getOperand(1); |
| 2975 | if (!isBSwapHWordElement(N011, Parts)) |
| 2976 | return SDValue(); |
| 2977 | } else { |
| 2978 | // (or (or (or (and), (and)), (and)), (and)) |
| 2979 | if (!isBSwapHWordElement(N1, Parts)) |
| 2980 | return SDValue(); |
| 2981 | if (!isBSwapHWordElement(N01, Parts)) |
| 2982 | return SDValue(); |
| 2983 | if (N00.getOpcode() != ISD::OR) |
| 2984 | return SDValue(); |
| 2985 | SDValue N000 = N00.getOperand(0); |
| 2986 | if (!isBSwapHWordElement(N000, Parts)) |
| 2987 | return SDValue(); |
| 2988 | SDValue N001 = N00.getOperand(1); |
| 2989 | if (!isBSwapHWordElement(N001, Parts)) |
| 2990 | return SDValue(); |
| 2991 | } |
| 2992 | |
| 2993 | // Make sure the parts are all coming from the same node. |
| 2994 | if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3]) |
| 2995 | return SDValue(); |
| 2996 | |
| 2997 | SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, |
| 2998 | SDValue(Parts[0],0)); |
| 2999 | |
| 3000 | // Result of the bswap should be rotated by 16. If it's not legal, than |
| 3001 | // do (x << 16) | (x >> 16). |
| 3002 | SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT)); |
| 3003 | if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT)) |
| 3004 | return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt); |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 3005 | if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT)) |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 3006 | return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt); |
| 3007 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, |
| 3008 | DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt), |
| 3009 | DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt)); |
| 3010 | } |
| 3011 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3012 | SDValue DAGCombiner::visitOR(SDNode *N) { |
| 3013 | SDValue N0 = N->getOperand(0); |
| 3014 | SDValue N1 = N->getOperand(1); |
| 3015 | SDValue LL, LR, RL, RR, CC0, CC1; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3016 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3017 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3018 | EVT VT = N1.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3019 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3020 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3021 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3022 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3023 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 3024 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3025 | |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 3026 | // fold (or x, undef) -> -1 |
Bob Wilson | 8674949 | 2010-06-28 23:40:25 +0000 | [diff] [blame] | 3027 | if (!LegalOperations && |
| 3028 | (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) { |
Nate Begeman | 93e0ed3 | 2009-12-03 07:11:29 +0000 | [diff] [blame] | 3029 | EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT; |
| 3030 | return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT); |
| 3031 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3032 | // fold (or c1, c2) -> c1|c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3033 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3034 | return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3035 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 3036 | if (N0C && !N1C) |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3037 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3038 | // fold (or x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3039 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3040 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3041 | // fold (or x, -1) -> -1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3042 | if (N1C && N1C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3043 | return N1; |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3044 | // fold (or x, c) -> c iff (x & ~c) == 0 |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 3045 | if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue())) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3046 | return N1; |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 3047 | |
| 3048 | // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16) |
| 3049 | SDValue BSwap = MatchBSwapHWord(N, N0, N1); |
| 3050 | if (BSwap.getNode() != 0) |
| 3051 | return BSwap; |
| 3052 | BSwap = MatchBSwapHWordLow(N, N0, N1); |
| 3053 | if (BSwap.getNode() != 0) |
| 3054 | return BSwap; |
| 3055 | |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3056 | // reassociate or |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 3057 | SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3058 | if (ROR.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3059 | return ROR; |
| 3060 | // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2) |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3061 | // iff (c1 & c2) == 0. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3062 | if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() && |
Chris Lattner | 731d348 | 2005-10-27 05:06:38 +0000 | [diff] [blame] | 3063 | isa<ConstantSDNode>(N0.getOperand(1))) { |
Chris Lattner | 731d348 | 2005-10-27 05:06:38 +0000 | [diff] [blame] | 3064 | ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1)); |
Bill Wendling | 32f9eb2 | 2010-03-03 01:58:01 +0000 | [diff] [blame] | 3065 | if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0) |
Bill Wendling | 7d9f2b9 | 2010-03-03 00:35:56 +0000 | [diff] [blame] | 3066 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 3067 | DAG.getNode(ISD::OR, N0.getDebugLoc(), VT, |
| 3068 | N0.getOperand(0), N1), |
| 3069 | DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1)); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3070 | } |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3071 | // fold (or (setcc x), (setcc y)) -> (setcc (or x, y)) |
| 3072 | if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ |
| 3073 | ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); |
| 3074 | ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3075 | |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3076 | if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3077 | LL.getValueType().isInteger()) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3078 | // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0) |
| 3079 | // 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] | 3080 | if (cast<ConstantSDNode>(LR)->isNullValue() && |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3081 | (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3082 | SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(), |
| 3083 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3084 | AddToWorkList(ORNode.getNode()); |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3085 | return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3086 | } |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3087 | // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1) |
| 3088 | // 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] | 3089 | if (cast<ConstantSDNode>(LR)->isAllOnesValue() && |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3090 | (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3091 | SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(), |
| 3092 | LR.getValueType(), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3093 | AddToWorkList(ANDNode.getNode()); |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3094 | return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3095 | } |
| 3096 | } |
| 3097 | // canonicalize equivalent to ll == rl |
| 3098 | if (LL == RR && LR == RL) { |
| 3099 | Op1 = ISD::getSetCCSwappedOperands(Op1); |
| 3100 | std::swap(RL, RR); |
| 3101 | } |
| 3102 | if (LL == RL && LR == RR) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3103 | bool isInteger = LL.getValueType().isInteger(); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3104 | ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger); |
Chris Lattner | 6e1c623 | 2008-10-28 07:11:07 +0000 | [diff] [blame] | 3105 | if (Result != ISD::SETCC_INVALID && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 3106 | (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType()))) |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3107 | return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(), |
| 3108 | LL, LR, Result); |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3109 | } |
| 3110 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3111 | |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3112 | // Simplify: (or (op x...), (op y...)) -> (op (or x, y)) |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 3113 | if (N0.getOpcode() == N1.getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3114 | SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3115 | if (Tmp.getNode()) return Tmp; |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3116 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3117 | |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3118 | // (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] | 3119 | if (N0.getOpcode() == ISD::AND && |
| 3120 | N1.getOpcode() == ISD::AND && |
| 3121 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 3122 | N1.getOperand(1).getOpcode() == ISD::Constant && |
| 3123 | // Don't increase # computations. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3124 | (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) { |
Chris Lattner | 1ec7273 | 2006-09-14 21:11:37 +0000 | [diff] [blame] | 3125 | // We can only do this xform if we know that bits from X that are set in C2 |
| 3126 | // but not in C1 are already zero. Likewise for Y. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 3127 | const APInt &LHSMask = |
| 3128 | cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 3129 | const APInt &RHSMask = |
| 3130 | cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3131 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 3132 | if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) && |
| 3133 | DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) { |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3134 | SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT, |
| 3135 | N0.getOperand(0), N1.getOperand(0)); |
| 3136 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X, |
| 3137 | DAG.getConstant(LHSMask | RHSMask, VT)); |
Chris Lattner | 1ec7273 | 2006-09-14 21:11:37 +0000 | [diff] [blame] | 3138 | } |
| 3139 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3140 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3141 | // See if this is some rotate idiom. |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3142 | if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3143 | return SDValue(Rot, 0); |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 3144 | |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 3145 | // Simplify the operands using demanded-bits information. |
| 3146 | if (!VT.isVector() && |
| 3147 | SimplifyDemandedBits(SDValue(N, 0))) |
| 3148 | return SDValue(N, 0); |
| 3149 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3150 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3151 | } |
| 3152 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3153 | /// 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] | 3154 | static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) { |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3155 | if (Op.getOpcode() == ISD::AND) { |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 3156 | if (isa<ConstantSDNode>(Op.getOperand(1))) { |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3157 | Mask = Op.getOperand(1); |
| 3158 | Op = Op.getOperand(0); |
| 3159 | } else { |
| 3160 | return false; |
| 3161 | } |
| 3162 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3163 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3164 | if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) { |
| 3165 | Shift = Op; |
| 3166 | return true; |
| 3167 | } |
Bill Wendling | 0902564 | 2009-01-30 20:59:34 +0000 | [diff] [blame] | 3168 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3169 | return false; |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3170 | } |
| 3171 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3172 | // MatchRotate - Handle an 'or' of two operands. If this is one of the many |
| 3173 | // idioms for rotate, and if the target supports rotation instructions, generate |
| 3174 | // a rot[lr]. |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3175 | SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) { |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3176 | // 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] | 3177 | EVT VT = LHS.getValueType(); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3178 | if (!TLI.isTypeLegal(VT)) return 0; |
| 3179 | |
| 3180 | // The target must have at least one rotate flavor. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3181 | bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT); |
| 3182 | bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3183 | if (!HasROTL && !HasROTR) return 0; |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3184 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3185 | // Match "(X shl/srl V1) & V2" where V2 may not be present. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3186 | SDValue LHSShift; // The shift. |
| 3187 | SDValue LHSMask; // AND value if any. |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3188 | if (!MatchRotateHalf(LHS, LHSShift, LHSMask)) |
| 3189 | return 0; // Not part of a rotate. |
| 3190 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3191 | SDValue RHSShift; // The shift. |
| 3192 | SDValue RHSMask; // AND value if any. |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3193 | if (!MatchRotateHalf(RHS, RHSShift, RHSMask)) |
| 3194 | return 0; // Not part of a rotate. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3195 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3196 | if (LHSShift.getOperand(0) != RHSShift.getOperand(0)) |
| 3197 | return 0; // Not shifting the same value. |
| 3198 | |
| 3199 | if (LHSShift.getOpcode() == RHSShift.getOpcode()) |
| 3200 | return 0; // Shifts must disagree. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3201 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3202 | // Canonicalize shl to left side in a shl/srl pair. |
| 3203 | if (RHSShift.getOpcode() == ISD::SHL) { |
| 3204 | std::swap(LHS, RHS); |
| 3205 | std::swap(LHSShift, RHSShift); |
| 3206 | std::swap(LHSMask , RHSMask ); |
| 3207 | } |
| 3208 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3209 | unsigned OpSizeInBits = VT.getSizeInBits(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3210 | SDValue LHSShiftArg = LHSShift.getOperand(0); |
| 3211 | SDValue LHSShiftAmt = LHSShift.getOperand(1); |
| 3212 | SDValue RHSShiftAmt = RHSShift.getOperand(1); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3213 | |
| 3214 | // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1) |
| 3215 | // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2) |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3216 | if (LHSShiftAmt.getOpcode() == ISD::Constant && |
| 3217 | RHSShiftAmt.getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3218 | uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue(); |
| 3219 | uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue(); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3220 | if ((LShVal + RShVal) != OpSizeInBits) |
| 3221 | return 0; |
| 3222 | |
Craig Topper | 32b7343 | 2012-09-29 06:54:22 +0000 | [diff] [blame] | 3223 | SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, |
| 3224 | LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3225 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3226 | // 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] | 3227 | if (LHSMask.getNode() || RHSMask.getNode()) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3228 | APInt Mask = APInt::getAllOnesValue(OpSizeInBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3229 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3230 | if (LHSMask.getNode()) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3231 | APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal); |
| 3232 | Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits; |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3233 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3234 | if (RHSMask.getNode()) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3235 | APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal); |
| 3236 | Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits; |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3237 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3238 | |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3239 | Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT)); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3240 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3241 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3242 | return Rot.getNode(); |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3243 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3244 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3245 | // If there is a mask here, and we have a variable shift, we can't be sure |
| 3246 | // that we're masking out the right stuff. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3247 | if (LHSMask.getNode() || RHSMask.getNode()) |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3248 | return 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3249 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3250 | // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y) |
| 3251 | // 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] | 3252 | if (RHSShiftAmt.getOpcode() == ISD::SUB && |
| 3253 | LHSShiftAmt == RHSShiftAmt.getOperand(1)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3254 | if (ConstantSDNode *SUBC = |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3255 | dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3256 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Craig Topper | 32b7343 | 2012-09-29 06:54:22 +0000 | [diff] [blame] | 3257 | return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg, |
| 3258 | HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode(); |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 3259 | } |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3260 | } |
| 3261 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3262 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3263 | // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y) |
| 3264 | // 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] | 3265 | if (LHSShiftAmt.getOpcode() == ISD::SUB && |
| 3266 | RHSShiftAmt == LHSShiftAmt.getOperand(1)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3267 | if (ConstantSDNode *SUBC = |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3268 | dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3269 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Craig Topper | 32b7343 | 2012-09-29 06:54:22 +0000 | [diff] [blame] | 3270 | return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg, |
| 3271 | HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode(); |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 3272 | } |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3273 | } |
| 3274 | } |
| 3275 | |
Dan Gohman | 74feef2 | 2008-10-17 01:23:35 +0000 | [diff] [blame] | 3276 | // Look for sign/zext/any-extended or truncate cases: |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 3277 | if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || |
| 3278 | LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || |
| 3279 | LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || |
| 3280 | LHSShiftAmt.getOpcode() == ISD::TRUNCATE) && |
| 3281 | (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || |
| 3282 | RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || |
| 3283 | RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || |
| 3284 | RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3285 | SDValue LExtOp0 = LHSShiftAmt.getOperand(0); |
| 3286 | SDValue RExtOp0 = RHSShiftAmt.getOperand(0); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3287 | if (RExtOp0.getOpcode() == ISD::SUB && |
| 3288 | RExtOp0.getOperand(1) == LExtOp0) { |
| 3289 | // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) -> |
Bill Wendling | c5cbda1 | 2008-08-31 00:37:27 +0000 | [diff] [blame] | 3290 | // (rotl x, y) |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 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 | // (rotr x, (sub 32, y)) |
Dan Gohman | 74feef2 | 2008-10-17 01:23:35 +0000 | [diff] [blame] | 3293 | if (ConstantSDNode *SUBC = |
| 3294 | dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3295 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3296 | return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, |
| 3297 | LHSShiftArg, |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 3298 | HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode(); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3299 | } |
| 3300 | } |
| 3301 | } else if (LExtOp0.getOpcode() == ISD::SUB && |
| 3302 | RExtOp0 == LExtOp0.getOperand(1)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3303 | // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) -> |
Bill Wendling | c5cbda1 | 2008-08-31 00:37:27 +0000 | [diff] [blame] | 3304 | // (rotr x, y) |
Bill Wendling | 353dea2 | 2008-08-31 01:04:56 +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 | // (rotl x, (sub 32, y)) |
Dan Gohman | 74feef2 | 2008-10-17 01:23:35 +0000 | [diff] [blame] | 3307 | if (ConstantSDNode *SUBC = |
| 3308 | dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3309 | if (SUBC->getAPIntValue() == OpSizeInBits) { |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3310 | return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, |
| 3311 | LHSShiftArg, |
Bill Wendling | 353dea2 | 2008-08-31 01:04:56 +0000 | [diff] [blame] | 3312 | HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode(); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3313 | } |
| 3314 | } |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3315 | } |
| 3316 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3317 | |
Chris Lattner | 516b962 | 2006-09-14 20:50:57 +0000 | [diff] [blame] | 3318 | return 0; |
| 3319 | } |
| 3320 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3321 | SDValue DAGCombiner::visitXOR(SDNode *N) { |
| 3322 | SDValue N0 = N->getOperand(0); |
| 3323 | SDValue N1 = N->getOperand(1); |
| 3324 | SDValue LHS, RHS, CC; |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3325 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3326 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3327 | EVT VT = N0.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3328 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3329 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3330 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3331 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3332 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 3333 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3334 | |
Evan Cheng | 26471c4 | 2008-03-25 20:08:07 +0000 | [diff] [blame] | 3335 | // fold (xor undef, undef) -> 0. This is a common idiom (misuse). |
| 3336 | if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF) |
| 3337 | return DAG.getConstant(0, VT); |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 3338 | // fold (xor x, undef) -> undef |
Dan Gohman | 70fb1ae | 2007-07-10 15:19:29 +0000 | [diff] [blame] | 3339 | if (N0.getOpcode() == ISD::UNDEF) |
| 3340 | return N0; |
| 3341 | if (N1.getOpcode() == ISD::UNDEF) |
Dan Gohman | 613e0d8 | 2007-07-03 14:03:57 +0000 | [diff] [blame] | 3342 | return N1; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3343 | // fold (xor c1, c2) -> c1^c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3344 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3345 | return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3346 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 3347 | if (N0C && !N1C) |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3348 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3349 | // fold (xor x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3350 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3351 | return N0; |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3352 | // reassociate xor |
Bill Wendling | 35247c3 | 2009-01-30 00:45:56 +0000 | [diff] [blame] | 3353 | SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3354 | if (RXOR.getNode() != 0) |
Nate Begeman | cd4d58c | 2006-02-03 06:46:56 +0000 | [diff] [blame] | 3355 | return RXOR; |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3356 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3357 | // fold !(x cc y) -> (x !cc y) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3358 | if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3359 | bool isInt = LHS.getValueType().isInteger(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3360 | ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(), |
| 3361 | isInt); |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3362 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 3363 | if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) { |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3364 | switch (N0.getOpcode()) { |
| 3365 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 3366 | llvm_unreachable("Unhandled SetCC Equivalent!"); |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3367 | case ISD::SETCC: |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3368 | return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC); |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3369 | case ISD::SELECT_CC: |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3370 | return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2), |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3371 | N0.getOperand(3), NotCC); |
| 3372 | } |
| 3373 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3374 | } |
Bill Wendling | ae89bb1 | 2008-11-11 08:25:46 +0000 | [diff] [blame] | 3375 | |
Chris Lattner | 61c5ff4 | 2007-09-10 21:39:07 +0000 | [diff] [blame] | 3376 | // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y))) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3377 | if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND && |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 3378 | N0.getNode()->hasOneUse() && |
| 3379 | isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){ |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3380 | SDValue V = N0.getOperand(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3381 | V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V, |
Duncan Sands | 272dce0 | 2007-10-10 09:54:50 +0000 | [diff] [blame] | 3382 | DAG.getConstant(1, V.getValueType())); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3383 | AddToWorkList(V.getNode()); |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3384 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V); |
Chris Lattner | 61c5ff4 | 2007-09-10 21:39:07 +0000 | [diff] [blame] | 3385 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3386 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3387 | // 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] | 3388 | if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 && |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3389 | (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3390 | SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3391 | if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) { |
| 3392 | unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3393 | LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS |
| 3394 | RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3395 | AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode()); |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3396 | return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3397 | } |
| 3398 | } |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3399 | // 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] | 3400 | if (N1C && N1C->isAllOnesValue() && |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3401 | (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3402 | SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); |
Nate Begeman | 9980119 | 2005-09-07 23:25:52 +0000 | [diff] [blame] | 3403 | if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) { |
| 3404 | unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3405 | LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS |
| 3406 | RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3407 | AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode()); |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3408 | return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3409 | } |
| 3410 | } |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3411 | // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2)) |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3412 | if (N1C && N0.getOpcode() == ISD::XOR) { |
| 3413 | ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0)); |
| 3414 | ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 3415 | if (N00C) |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3416 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1), |
| 3417 | DAG.getConstant(N1C->getAPIntValue() ^ |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3418 | N00C->getAPIntValue(), VT)); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3419 | if (N01C) |
Bill Wendling | 317bd70 | 2009-01-30 21:14:50 +0000 | [diff] [blame] | 3420 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3421 | DAG.getConstant(N1C->getAPIntValue() ^ |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 3422 | N01C->getAPIntValue(), VT)); |
Nate Begeman | 223df22 | 2005-09-08 20:18:10 +0000 | [diff] [blame] | 3423 | } |
| 3424 | // fold (xor x, x) -> 0 |
Eric Christopher | 7bccf6a | 2011-02-16 04:50:12 +0000 | [diff] [blame] | 3425 | if (N0 == N1) |
| 3426 | return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3427 | |
Chris Lattner | 35e5c14 | 2006-05-05 05:51:50 +0000 | [diff] [blame] | 3428 | // Simplify: xor (op x...), (op y...) -> (op (xor x, y)) |
| 3429 | if (N0.getOpcode() == N1.getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3430 | SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3431 | if (Tmp.getNode()) return Tmp; |
Nate Begeman | 39ee1ac | 2005-09-09 19:49:52 +0000 | [diff] [blame] | 3432 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3433 | |
Chris Lattner | 3e104b1 | 2006-04-08 04:15:24 +0000 | [diff] [blame] | 3434 | // Simplify the expression using non-local knowledge. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3435 | if (!VT.isVector() && |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3436 | SimplifyDemandedBits(SDValue(N, 0))) |
| 3437 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3438 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3439 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3440 | } |
| 3441 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3442 | /// visitShiftByConstant - Handle transforms common to the three shifts, when |
| 3443 | /// the shift amount is a constant. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3444 | SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3445 | SDNode *LHS = N->getOperand(0).getNode(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3446 | if (!LHS->hasOneUse()) return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3447 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3448 | // We want to pull some binops through shifts, so that we have (and (shift)) |
| 3449 | // instead of (shift (and)), likewise for add, or, xor, etc. This sort of |
| 3450 | // thing happens with address calculations, so it's important to canonicalize |
| 3451 | // it. |
| 3452 | 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] | 3453 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3454 | switch (LHS->getOpcode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3455 | default: return SDValue(); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3456 | case ISD::OR: |
| 3457 | case ISD::XOR: |
| 3458 | HighBitSet = false; // We can only transform sra if the high bit is clear. |
| 3459 | break; |
| 3460 | case ISD::AND: |
| 3461 | HighBitSet = true; // We can only transform sra if the high bit is set. |
| 3462 | break; |
| 3463 | case ISD::ADD: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3464 | if (N->getOpcode() != ISD::SHL) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3465 | return SDValue(); // only shl(add) not sr[al](add). |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3466 | HighBitSet = false; // We can only transform sra if the high bit is clear. |
| 3467 | break; |
| 3468 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3469 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3470 | // We require the RHS of the binop to be a constant as well. |
| 3471 | ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3472 | if (!BinOpCst) return SDValue(); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3473 | |
| 3474 | // FIXME: disable this unless the input to the binop is a shift by a constant. |
| 3475 | // If it is not a shift, it pessimizes some common cases like: |
Chris Lattner | d3fd6d2 | 2007-12-06 07:47:55 +0000 | [diff] [blame] | 3476 | // |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3477 | // void foo(int *X, int i) { X[i & 1235] = 1; } |
| 3478 | // int bar(int *X, int i) { return X[i & 255]; } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3479 | SDNode *BinOpLHSVal = LHS->getOperand(0).getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3480 | if ((BinOpLHSVal->getOpcode() != ISD::SHL && |
Chris Lattner | d3fd6d2 | 2007-12-06 07:47:55 +0000 | [diff] [blame] | 3481 | BinOpLHSVal->getOpcode() != ISD::SRA && |
| 3482 | BinOpLHSVal->getOpcode() != ISD::SRL) || |
| 3483 | !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1))) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3484 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3485 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3486 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3487 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3488 | // If this is a signed shift right, and the high bit is modified by the |
| 3489 | // logical operation, do not perform the transformation. The highBitSet |
| 3490 | // boolean indicates the value of the high bit of the constant which would |
| 3491 | // cause it to be modified for this operation. |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3492 | if (N->getOpcode() == ISD::SRA) { |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 3493 | bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative(); |
| 3494 | if (BinOpRHSSignSet != HighBitSet) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3495 | return SDValue(); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3496 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3497 | |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3498 | // Fold the constants, shifting the binop RHS by the shift amount. |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3499 | SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(), |
| 3500 | N->getValueType(0), |
| 3501 | LHS->getOperand(1), N->getOperand(1)); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3502 | |
| 3503 | // Create the new shift. |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 3504 | SDValue NewShift = DAG.getNode(N->getOpcode(), |
| 3505 | LHS->getOperand(0).getDebugLoc(), |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3506 | VT, LHS->getOperand(0), N->getOperand(1)); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3507 | |
| 3508 | // Create the new binop. |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3509 | return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3510 | } |
| 3511 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3512 | SDValue DAGCombiner::visitSHL(SDNode *N) { |
| 3513 | SDValue N0 = N->getOperand(0); |
| 3514 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3515 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3516 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3517 | EVT VT = N0.getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3518 | unsigned OpSizeInBits = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3519 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3520 | // fold (shl c1, c2) -> c1<<c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3521 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3522 | return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3523 | // fold (shl 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3524 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3525 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3526 | // fold (shl x, c >= size(x)) -> undef |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3527 | if (N1C && N1C->getZExtValue() >= OpSizeInBits) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3528 | return DAG.getUNDEF(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3529 | // fold (shl x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3530 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3531 | return N0; |
Chad Rosier | 92bcd96 | 2011-06-14 22:29:10 +0000 | [diff] [blame] | 3532 | // fold (shl undef, x) -> 0 |
| 3533 | if (N0.getOpcode() == ISD::UNDEF) |
| 3534 | return DAG.getConstant(0, VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3535 | // if (shl x, c) is known to be zero, return 0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3536 | if (DAG.MaskedValueIsZero(SDValue(N, 0), |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3537 | APInt::getAllOnesValue(OpSizeInBits))) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3538 | return DAG.getConstant(0, VT); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3539 | // 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] | 3540 | if (N1.getOpcode() == ISD::TRUNCATE && |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3541 | N1.getOperand(0).getOpcode() == ISD::AND && |
| 3542 | N1.hasOneUse() && N1.getOperand(0).hasOneUse()) { |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3543 | SDValue N101 = N1.getOperand(0).getOperand(1); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3544 | if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3545 | EVT TruncVT = N1.getValueType(); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3546 | SDValue N100 = N1.getOperand(0).getOperand(0); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3547 | APInt TruncC = N101C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 3548 | TruncC = TruncC.trunc(TruncVT.getSizeInBits()); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3549 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0, |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 3550 | DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT, |
| 3551 | DAG.getNode(ISD::TRUNCATE, |
| 3552 | N->getDebugLoc(), |
| 3553 | TruncVT, N100), |
Dan Gohman | ce9bc12 | 2009-01-27 20:39:34 +0000 | [diff] [blame] | 3554 | DAG.getConstant(TruncC, TruncVT))); |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3555 | } |
| 3556 | } |
| 3557 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3558 | if (N1C && SimplifyDemandedBits(SDValue(N, 0))) |
| 3559 | return SDValue(N, 0); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3560 | |
| 3561 | // 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] | 3562 | if (N1C && N0.getOpcode() == ISD::SHL && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3563 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3564 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue(); |
| 3565 | uint64_t c2 = N1C->getZExtValue(); |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3566 | if (c1 + c2 >= OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3567 | return DAG.getConstant(0, VT); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3568 | return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3569 | DAG.getConstant(c1 + c2, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3570 | } |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3571 | |
| 3572 | // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2))) |
| 3573 | // For this to be valid, the second form must not preserve any of the bits |
| 3574 | // that are shifted out by the inner shift in the first form. This means |
| 3575 | // the outer shift size must be >= the number of bits added by the ext. |
| 3576 | // As a corollary, we don't care what kind of ext it is. |
| 3577 | if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND || |
| 3578 | N0.getOpcode() == ISD::ANY_EXTEND || |
| 3579 | N0.getOpcode() == ISD::SIGN_EXTEND) && |
| 3580 | N0.getOperand(0).getOpcode() == ISD::SHL && |
| 3581 | isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) { |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3582 | uint64_t c1 = |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3583 | cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue(); |
| 3584 | uint64_t c2 = N1C->getZExtValue(); |
| 3585 | EVT InnerShiftVT = N0.getOperand(0).getValueType(); |
| 3586 | uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits(); |
| 3587 | if (c2 >= OpSizeInBits - InnerShiftSize) { |
| 3588 | if (c1 + c2 >= OpSizeInBits) |
| 3589 | return DAG.getConstant(0, VT); |
| 3590 | return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT, |
| 3591 | DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT, |
| 3592 | N0.getOperand(0)->getOperand(0)), |
| 3593 | DAG.getConstant(c1 + c2, N1.getValueType())); |
| 3594 | } |
| 3595 | } |
| 3596 | |
Eli Friedman | 2a6d9eb | 2011-06-09 22:14:44 +0000 | [diff] [blame] | 3597 | // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or |
| 3598 | // (and (srl x, (sub c1, c2), MASK) |
Chandler Carruth | 62dfc51 | 2012-01-05 11:05:55 +0000 | [diff] [blame] | 3599 | // Only fold this if the inner shift has no other uses -- if it does, folding |
| 3600 | // this will increase the total number of instructions. |
| 3601 | if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3602 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3603 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue(); |
Evan Cheng | d101a72 | 2009-07-21 05:40:15 +0000 | [diff] [blame] | 3604 | if (c1 < VT.getSizeInBits()) { |
| 3605 | uint64_t c2 = N1C->getZExtValue(); |
Eli Friedman | 2a6d9eb | 2011-06-09 22:14:44 +0000 | [diff] [blame] | 3606 | APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(), |
| 3607 | VT.getSizeInBits() - c1); |
| 3608 | SDValue Shift; |
| 3609 | if (c2 > c1) { |
| 3610 | Mask = Mask.shl(c2-c1); |
| 3611 | Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3612 | DAG.getConstant(c2-c1, N1.getValueType())); |
| 3613 | } else { |
| 3614 | Mask = Mask.lshr(c1-c2); |
| 3615 | Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3616 | DAG.getConstant(c1-c2, N1.getValueType())); |
| 3617 | } |
| 3618 | return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift, |
| 3619 | DAG.getConstant(Mask, VT)); |
Evan Cheng | d101a72 | 2009-07-21 05:40:15 +0000 | [diff] [blame] | 3620 | } |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3621 | } |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3622 | // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1)) |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 3623 | if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) { |
| 3624 | SDValue HiBitsMask = |
| 3625 | DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(), |
| 3626 | VT.getSizeInBits() - |
| 3627 | N1C->getZExtValue()), |
| 3628 | VT); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3629 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0), |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 3630 | HiBitsMask); |
| 3631 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3632 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3633 | if (N1C) { |
| 3634 | SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue()); |
| 3635 | if (NewSHL.getNode()) |
| 3636 | return NewSHL; |
| 3637 | } |
| 3638 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3639 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3640 | } |
| 3641 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3642 | SDValue DAGCombiner::visitSRA(SDNode *N) { |
| 3643 | SDValue N0 = N->getOperand(0); |
| 3644 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3645 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3646 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3647 | EVT VT = N0.getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3648 | unsigned OpSizeInBits = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3649 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3650 | // fold (sra c1, c2) -> (sra c1, c2) |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3651 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3652 | return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3653 | // fold (sra 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3654 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3655 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3656 | // fold (sra -1, x) -> -1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3657 | if (N0C && N0C->isAllOnesValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3658 | return N0; |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3659 | // fold (sra x, (setge c, size(x))) -> undef |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3660 | if (N1C && N1C->getZExtValue() >= OpSizeInBits) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3661 | return DAG.getUNDEF(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3662 | // fold (sra x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3663 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3664 | return N0; |
Nate Begeman | fb7217b | 2006-02-17 19:54:08 +0000 | [diff] [blame] | 3665 | // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports |
| 3666 | // sext_inreg. |
| 3667 | if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) { |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3668 | unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 3669 | EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits); |
| 3670 | if (VT.isVector()) |
| 3671 | ExtVT = EVT::getVectorVT(*DAG.getContext(), |
| 3672 | ExtVT, VT.getVectorNumElements()); |
| 3673 | if ((!LegalOperations || |
| 3674 | TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT))) |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3675 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 3676 | N0.getOperand(0), DAG.getValueType(ExtVT)); |
Nate Begeman | fb7217b | 2006-02-17 19:54:08 +0000 | [diff] [blame] | 3677 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3678 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3679 | // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2)) |
Chris Lattner | 71d9ebc | 2006-02-28 06:23:04 +0000 | [diff] [blame] | 3680 | if (N1C && N0.getOpcode() == ISD::SRA) { |
| 3681 | if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3682 | unsigned Sum = N1C->getZExtValue() + C1->getZExtValue(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3683 | if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1; |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3684 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0), |
Chris Lattner | 71d9ebc | 2006-02-28 06:23:04 +0000 | [diff] [blame] | 3685 | DAG.getConstant(Sum, N1C->getValueType(0))); |
| 3686 | } |
| 3687 | } |
Christopher Lamb | 15cbde3 | 2008-03-19 08:30:06 +0000 | [diff] [blame] | 3688 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3689 | // fold (sra (shl X, m), (sub result_size, n)) |
| 3690 | // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3691 | // result_size - n != m. |
| 3692 | // 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] | 3693 | // code. |
Christopher Lamb | 15cbde3 | 2008-03-19 08:30:06 +0000 | [diff] [blame] | 3694 | if (N0.getOpcode() == ISD::SHL) { |
| 3695 | // Get the two constanst of the shifts, CN0 = m, CN = n. |
| 3696 | const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 3697 | if (N01C && N1C) { |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3698 | // Determine what the truncate's result bitsize and type would be. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3699 | EVT TruncVT = |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 3700 | EVT::getIntegerVT(*DAG.getContext(), |
| 3701 | OpSizeInBits - N1C->getZExtValue()); |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3702 | // Determine the residual right-shift amount. |
Torok Edwin | 6bb4958 | 2009-05-23 17:29:48 +0000 | [diff] [blame] | 3703 | signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue(); |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 3704 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3705 | // If the shift is not a no-op (in which case this should be just a sign |
| 3706 | // extend already), the truncated to type is legal, sign_extend is legal |
Dan Gohman | f451cb8 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 3707 | // 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] | 3708 | // perform the transform. |
Torok Edwin | 6bb4958 | 2009-05-23 17:29:48 +0000 | [diff] [blame] | 3709 | if ((ShiftAmt > 0) && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3710 | TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) && |
| 3711 | TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) && |
Evan Cheng | 260e07e | 2008-03-20 02:18:41 +0000 | [diff] [blame] | 3712 | TLI.isTruncateFree(VT, TruncVT)) { |
Christopher Lamb | b9b0428 | 2008-03-20 04:31:39 +0000 | [diff] [blame] | 3713 | |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3714 | SDValue Amt = DAG.getConstant(ShiftAmt, |
| 3715 | getShiftAmountTy(N0.getOperand(0).getValueType())); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3716 | SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, |
| 3717 | N0.getOperand(0), Amt); |
| 3718 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT, |
| 3719 | Shift); |
| 3720 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), |
| 3721 | N->getValueType(0), Trunc); |
Christopher Lamb | 15cbde3 | 2008-03-19 08:30:06 +0000 | [diff] [blame] | 3722 | } |
| 3723 | } |
| 3724 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3725 | |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3726 | // 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] | 3727 | if (N1.getOpcode() == ISD::TRUNCATE && |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3728 | N1.getOperand(0).getOpcode() == ISD::AND && |
| 3729 | N1.hasOneUse() && N1.getOperand(0).hasOneUse()) { |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3730 | SDValue N101 = N1.getOperand(0).getOperand(1); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3731 | if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3732 | EVT TruncVT = N1.getValueType(); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3733 | SDValue N100 = N1.getOperand(0).getOperand(0); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3734 | APInt TruncC = N101C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 3735 | TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits()); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3736 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3737 | DAG.getNode(ISD::AND, N->getDebugLoc(), |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3738 | TruncVT, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3739 | DAG.getNode(ISD::TRUNCATE, |
| 3740 | N->getDebugLoc(), |
| 3741 | TruncVT, N100), |
Dan Gohman | ce9bc12 | 2009-01-27 20:39:34 +0000 | [diff] [blame] | 3742 | DAG.getConstant(TruncC, TruncVT))); |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3743 | } |
| 3744 | } |
| 3745 | |
Benjamin Kramer | 9b108a3 | 2011-01-30 16:38:43 +0000 | [diff] [blame] | 3746 | // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2)) |
| 3747 | // if c1 is equal to the number of bits the trunc removes |
| 3748 | if (N0.getOpcode() == ISD::TRUNCATE && |
| 3749 | (N0.getOperand(0).getOpcode() == ISD::SRL || |
| 3750 | N0.getOperand(0).getOpcode() == ISD::SRA) && |
| 3751 | N0.getOperand(0).hasOneUse() && |
| 3752 | N0.getOperand(0).getOperand(1).hasOneUse() && |
| 3753 | N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) { |
| 3754 | EVT LargeVT = N0.getOperand(0).getValueType(); |
| 3755 | ConstantSDNode *LargeShiftAmt = |
| 3756 | cast<ConstantSDNode>(N0.getOperand(0).getOperand(1)); |
| 3757 | |
| 3758 | if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits == |
| 3759 | LargeShiftAmt->getZExtValue()) { |
| 3760 | SDValue Amt = |
| 3761 | DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3762 | getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType())); |
Benjamin Kramer | 9b108a3 | 2011-01-30 16:38:43 +0000 | [diff] [blame] | 3763 | SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT, |
| 3764 | N0.getOperand(0).getOperand(0), Amt); |
| 3765 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA); |
| 3766 | } |
| 3767 | } |
| 3768 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3769 | // Simplify, based on bits shifted out of the LHS. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3770 | if (N1C && SimplifyDemandedBits(SDValue(N, 0))) |
| 3771 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3772 | |
| 3773 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3774 | // 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] | 3775 | if (DAG.SignBitIsZero(N0)) |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3776 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1); |
Chris Lattner | e70da20 | 2007-12-06 07:33:36 +0000 | [diff] [blame] | 3777 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3778 | if (N1C) { |
| 3779 | SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue()); |
| 3780 | if (NewSRA.getNode()) |
| 3781 | return NewSRA; |
| 3782 | } |
| 3783 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3784 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3785 | } |
| 3786 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3787 | SDValue DAGCombiner::visitSRL(SDNode *N) { |
| 3788 | SDValue N0 = N->getOperand(0); |
| 3789 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3790 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 3791 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3792 | EVT VT = N0.getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 3793 | unsigned OpSizeInBits = VT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3794 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3795 | // fold (srl c1, c2) -> c1 >>u c2 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3796 | if (N0C && N1C) |
Bill Wendling | f3cbca2 | 2008-09-24 10:25:02 +0000 | [diff] [blame] | 3797 | return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3798 | // fold (srl 0, x) -> 0 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3799 | if (N0C && N0C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3800 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3801 | // fold (srl x, c >= size(x)) -> undef |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3802 | if (N1C && N1C->getZExtValue() >= OpSizeInBits) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3803 | return DAG.getUNDEF(VT); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3804 | // fold (srl x, 0) -> x |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 3805 | if (N1C && N1C->isNullValue()) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3806 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3807 | // if (srl x, c) is known to be zero, return 0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3808 | if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 3809 | APInt::getAllOnesValue(OpSizeInBits))) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3810 | return DAG.getConstant(0, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3811 | |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3812 | // 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] | 3813 | if (N1C && N0.getOpcode() == ISD::SRL && |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3814 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3815 | uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue(); |
| 3816 | uint64_t c2 = N1C->getZExtValue(); |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3817 | if (c1 + c2 >= OpSizeInBits) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3818 | return DAG.getConstant(0, VT); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3819 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 3820 | DAG.getConstant(c1 + c2, N1.getValueType())); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3821 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3822 | |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3823 | // 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] | 3824 | if (N1C && N0.getOpcode() == ISD::TRUNCATE && |
| 3825 | N0.getOperand(0).getOpcode() == ISD::SRL && |
Dale Johannesen | 025cc6e | 2010-12-20 20:10:50 +0000 | [diff] [blame] | 3826 | isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) { |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3827 | uint64_t c1 = |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3828 | cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue(); |
| 3829 | uint64_t c2 = N1C->getZExtValue(); |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3830 | EVT InnerShiftVT = N0.getOperand(0).getValueType(); |
| 3831 | EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType(); |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3832 | uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits(); |
Dale Johannesen | 025cc6e | 2010-12-20 20:10:50 +0000 | [diff] [blame] | 3833 | // This is only valid if the OpSizeInBits + c1 = size of inner shift. |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3834 | if (c1 + OpSizeInBits == InnerShiftSize) { |
| 3835 | if (c1 + c2 >= InnerShiftSize) |
| 3836 | return DAG.getConstant(0, VT); |
| 3837 | return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3838 | DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT, |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3839 | N0.getOperand(0)->getOperand(0), |
Dale Johannesen | c72b18c | 2010-12-21 21:55:50 +0000 | [diff] [blame] | 3840 | DAG.getConstant(c1 + c2, ShiftCountVT))); |
Dale Johannesen | f5daf8b | 2010-12-17 21:45:49 +0000 | [diff] [blame] | 3841 | } |
| 3842 | } |
| 3843 | |
Chris Lattner | efcddc3 | 2010-04-15 05:28:43 +0000 | [diff] [blame] | 3844 | // fold (srl (shl x, c), c) -> (and x, cst2) |
| 3845 | if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 && |
| 3846 | N0.getValueSizeInBits() <= 64) { |
| 3847 | uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits(); |
| 3848 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0), |
| 3849 | DAG.getConstant(~0ULL >> ShAmt, VT)); |
| 3850 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3851 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3852 | |
Chris Lattner | 06afe07 | 2006-05-05 22:53:17 +0000 | [diff] [blame] | 3853 | // fold (srl (anyextend x), c) -> (anyextend (srl x, c)) |
| 3854 | if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { |
| 3855 | // Shifting in all undef bits? |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3856 | EVT SmallVT = N0.getOperand(0).getValueType(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3857 | if (N1C->getZExtValue() >= SmallVT.getSizeInBits()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3858 | return DAG.getUNDEF(VT); |
Chris Lattner | 06afe07 | 2006-05-05 22:53:17 +0000 | [diff] [blame] | 3859 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3860 | if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) { |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 3861 | uint64_t ShiftAmt = N1C->getZExtValue(); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3862 | SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT, |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 3863 | N0.getOperand(0), |
| 3864 | DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT))); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 3865 | AddToWorkList(SmallShift.getNode()); |
| 3866 | return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift); |
| 3867 | } |
Chris Lattner | 06afe07 | 2006-05-05 22:53:17 +0000 | [diff] [blame] | 3868 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3869 | |
Chris Lattner | 3657ffe | 2006-10-12 20:23:19 +0000 | [diff] [blame] | 3870 | // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign |
| 3871 | // bit, which is unmodified by sra. |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3872 | if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) { |
Chris Lattner | 3657ffe | 2006-10-12 20:23:19 +0000 | [diff] [blame] | 3873 | if (N0.getOpcode() == ISD::SRA) |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3874 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1); |
Chris Lattner | 3657ffe | 2006-10-12 20:23:19 +0000 | [diff] [blame] | 3875 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3876 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 3877 | // 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] | 3878 | if (N1C && N0.getOpcode() == ISD::CTLZ && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3879 | N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) { |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 3880 | APInt KnownZero, KnownOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 3881 | DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3882 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3883 | // If any of the input bits are KnownOne, then the input couldn't be all |
| 3884 | // zeros, thus the result of the srl will always be zero. |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 3885 | if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3886 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3887 | // If all of the bits input the to ctlz node are known to be zero, then |
| 3888 | // 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] | 3889 | APInt UnknownBits = ~KnownZero; |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3890 | if (UnknownBits == 0) return DAG.getConstant(1, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3891 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3892 | // 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] | 3893 | if ((UnknownBits & (UnknownBits - 1)) == 0) { |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3894 | // Okay, we know that only that the single bit specified by UnknownBits |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3895 | // could be set on input to the CTLZ node. If this bit is set, the SRL |
| 3896 | // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair |
| 3897 | // to an SRL/XOR pair, which is likely to simplify more. |
Dan Gohman | 948d8ea | 2008-02-20 16:33:30 +0000 | [diff] [blame] | 3898 | unsigned ShAmt = UnknownBits.countTrailingZeros(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3899 | SDValue Op = N0.getOperand(0); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3900 | |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3901 | if (ShAmt) { |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3902 | Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 3903 | DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType()))); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3904 | AddToWorkList(Op.getNode()); |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3905 | } |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3906 | |
| 3907 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, |
| 3908 | Op, DAG.getConstant(1, VT)); |
Chris Lattner | 350bec0 | 2006-04-02 06:11:11 +0000 | [diff] [blame] | 3909 | } |
| 3910 | } |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3911 | |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3912 | // 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] | 3913 | if (N1.getOpcode() == ISD::TRUNCATE && |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3914 | N1.getOperand(0).getOpcode() == ISD::AND && |
| 3915 | N1.hasOneUse() && N1.getOperand(0).hasOneUse()) { |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3916 | SDValue N101 = N1.getOperand(0).getOperand(1); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3917 | if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3918 | EVT TruncVT = N1.getValueType(); |
Evan Cheng | 242ebd1 | 2008-09-22 18:19:24 +0000 | [diff] [blame] | 3919 | SDValue N100 = N1.getOperand(0).getOperand(0); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3920 | APInt TruncC = N101C->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 3921 | TruncC = TruncC.trunc(TruncVT.getSizeInBits()); |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3922 | return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3923 | DAG.getNode(ISD::AND, N->getDebugLoc(), |
Bill Wendling | 8810337 | 2009-01-30 21:37:17 +0000 | [diff] [blame] | 3924 | TruncVT, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 3925 | DAG.getNode(ISD::TRUNCATE, |
| 3926 | N->getDebugLoc(), |
| 3927 | TruncVT, N100), |
Dan Gohman | ce9bc12 | 2009-01-27 20:39:34 +0000 | [diff] [blame] | 3928 | DAG.getConstant(TruncC, TruncVT))); |
Evan Cheng | eb9f892 | 2008-08-30 02:03:58 +0000 | [diff] [blame] | 3929 | } |
| 3930 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3931 | |
Chris Lattner | 61a4c07 | 2007-04-18 03:06:49 +0000 | [diff] [blame] | 3932 | // fold operands of srl based on knowledge that the low bits are not |
| 3933 | // demanded. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3934 | if (N1C && SimplifyDemandedBits(SDValue(N, 0))) |
| 3935 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3936 | |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3937 | if (N1C) { |
| 3938 | SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue()); |
| 3939 | if (NewSRL.getNode()) |
| 3940 | return NewSRL; |
| 3941 | } |
| 3942 | |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 3943 | // Attempt to convert a srl of a load into a narrower zero-extending load. |
| 3944 | SDValue NarrowLoad = ReduceLoadWidth(N); |
| 3945 | if (NarrowLoad.getNode()) |
| 3946 | return NarrowLoad; |
| 3947 | |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3948 | // Here is a common situation. We want to optimize: |
| 3949 | // |
| 3950 | // %a = ... |
| 3951 | // %b = and i32 %a, 2 |
| 3952 | // %c = srl i32 %b, 1 |
| 3953 | // brcond i32 %c ... |
| 3954 | // |
| 3955 | // into |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3956 | // |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3957 | // %a = ... |
| 3958 | // %b = and %a, 2 |
| 3959 | // %c = setcc eq %b, 0 |
| 3960 | // brcond %c ... |
| 3961 | // |
| 3962 | // However when after the source operand of SRL is optimized into AND, the SRL |
| 3963 | // itself may not be optimized further. Look for it and add the BRCOND into |
| 3964 | // the worklist. |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 3965 | if (N->hasOneUse()) { |
| 3966 | SDNode *Use = *N->use_begin(); |
| 3967 | if (Use->getOpcode() == ISD::BRCOND) |
| 3968 | AddToWorkList(Use); |
| 3969 | else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) { |
| 3970 | // Also look pass the truncate. |
| 3971 | Use = *Use->use_begin(); |
| 3972 | if (Use->getOpcode() == ISD::BRCOND) |
| 3973 | AddToWorkList(Use); |
| 3974 | } |
| 3975 | } |
Evan Cheng | 9ab2b98 | 2009-12-18 21:31:31 +0000 | [diff] [blame] | 3976 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 3977 | return SDValue(); |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 3978 | } |
| 3979 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3980 | SDValue DAGCombiner::visitCTLZ(SDNode *N) { |
| 3981 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3982 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3983 | |
| 3984 | // fold (ctlz c1) -> c2 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 3985 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 3986 | return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3987 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 3988 | } |
| 3989 | |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 3990 | SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) { |
| 3991 | SDValue N0 = N->getOperand(0); |
| 3992 | EVT VT = N->getValueType(0); |
| 3993 | |
| 3994 | // fold (ctlz_zero_undef c1) -> c2 |
| 3995 | if (isa<ConstantSDNode>(N0)) |
| 3996 | return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0); |
| 3997 | return SDValue(); |
| 3998 | } |
| 3999 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4000 | SDValue DAGCombiner::visitCTTZ(SDNode *N) { |
| 4001 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4002 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4003 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4004 | // fold (cttz c1) -> c2 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4005 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4006 | return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4007 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4008 | } |
| 4009 | |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 4010 | SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) { |
| 4011 | SDValue N0 = N->getOperand(0); |
| 4012 | EVT VT = N->getValueType(0); |
| 4013 | |
| 4014 | // fold (cttz_zero_undef c1) -> c2 |
| 4015 | if (isa<ConstantSDNode>(N0)) |
| 4016 | return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0); |
| 4017 | return SDValue(); |
| 4018 | } |
| 4019 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4020 | SDValue DAGCombiner::visitCTPOP(SDNode *N) { |
| 4021 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4022 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4023 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4024 | // fold (ctpop c1) -> c2 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4025 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4026 | return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4027 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4028 | } |
| 4029 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4030 | SDValue DAGCombiner::visitSELECT(SDNode *N) { |
| 4031 | SDValue N0 = N->getOperand(0); |
| 4032 | SDValue N1 = N->getOperand(1); |
| 4033 | SDValue N2 = N->getOperand(2); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4034 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
| 4035 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 4036 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4037 | EVT VT = N->getValueType(0); |
| 4038 | EVT VT0 = N0.getValueType(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4039 | |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4040 | // fold (select C, X, X) -> X |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4041 | if (N1 == N2) |
| 4042 | return N1; |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4043 | // fold (select true, X, Y) -> X |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4044 | if (N0C && !N0C->isNullValue()) |
| 4045 | return N1; |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4046 | // fold (select false, X, Y) -> Y |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4047 | if (N0C && N0C->isNullValue()) |
| 4048 | return N2; |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4049 | // fold (select C, 1, X) -> (or C, X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4050 | if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4051 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2); |
| 4052 | // fold (select C, 0, 1) -> (xor C, 1) |
Bob Wilson | 67ba223 | 2009-01-22 22:05:48 +0000 | [diff] [blame] | 4053 | if (VT.isInteger() && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4054 | (VT0 == MVT::i1 || |
Bob Wilson | 67ba223 | 2009-01-22 22:05:48 +0000 | [diff] [blame] | 4055 | (VT0.isInteger() && |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 4056 | TLI.getBooleanContents(false) == |
| 4057 | TargetLowering::ZeroOrOneBooleanContent)) && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4058 | N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) { |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4059 | SDValue XORNode; |
Evan Cheng | 571c478 | 2007-08-18 05:57:05 +0000 | [diff] [blame] | 4060 | if (VT == VT0) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4061 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0, |
| 4062 | N0, DAG.getConstant(1, VT0)); |
| 4063 | XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0, |
| 4064 | N0, DAG.getConstant(1, VT0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4065 | AddToWorkList(XORNode.getNode()); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4066 | if (VT.bitsGT(VT0)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4067 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode); |
| 4068 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode); |
Evan Cheng | 571c478 | 2007-08-18 05:57:05 +0000 | [diff] [blame] | 4069 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4070 | // fold (select C, 0, X) -> (and (not C), X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4071 | if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) { |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 4072 | SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT); |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 4073 | AddToWorkList(NOTNode.getNode()); |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 4074 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4075 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4076 | // fold (select C, X, 1) -> (or (not C), X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4077 | if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) { |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4078 | SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT); |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 4079 | AddToWorkList(NOTNode.getNode()); |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 4080 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4081 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4082 | // fold (select C, X, 0) -> (and C, X) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4083 | if (VT == MVT::i1 && N2C && N2C->isNullValue()) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4084 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1); |
| 4085 | // fold (select X, X, Y) -> (or X, Y) |
| 4086 | // fold (select X, 1, Y) -> (or X, Y) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4087 | if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1))) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4088 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2); |
| 4089 | // fold (select X, Y, X) -> (and X, Y) |
| 4090 | // fold (select X, Y, 0) -> (and X, Y) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4091 | if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0))) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4092 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4093 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 4094 | // If we can fold this based on the true/false value, do so. |
| 4095 | if (SimplifySelectOps(N, N1, N2)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4096 | return SDValue(N, 0); // Don't revisit N. |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4097 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4098 | // 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] | 4099 | if (N0.getOpcode() == ISD::SETCC) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4100 | // FIXME: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4101 | // 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] | 4102 | // having to say they don't support SELECT_CC on every type the DAG knows |
| 4103 | // 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] | 4104 | if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) && |
Dan Gohman | 4ea4804 | 2009-08-02 16:19:38 +0000 | [diff] [blame] | 4105 | TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT)) |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4106 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, |
| 4107 | N0.getOperand(0), N0.getOperand(1), |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4108 | N1, N2, N0.getOperand(2)); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 4109 | return SimplifySelect(N->getDebugLoc(), N0, N1, N2); |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 4110 | } |
Bill Wendling | 34584e6 | 2009-01-30 22:02:18 +0000 | [diff] [blame] | 4111 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4112 | return SDValue(); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4113 | } |
| 4114 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4115 | SDValue DAGCombiner::visitSELECT_CC(SDNode *N) { |
| 4116 | SDValue N0 = N->getOperand(0); |
| 4117 | SDValue N1 = N->getOperand(1); |
| 4118 | SDValue N2 = N->getOperand(2); |
| 4119 | SDValue N3 = N->getOperand(3); |
| 4120 | SDValue N4 = N->getOperand(4); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4121 | ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4122 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4123 | // fold select_cc lhs, rhs, x, x, cc -> x |
| 4124 | if (N2 == N3) |
| 4125 | return N2; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4126 | |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4127 | // Determine if the condition we're dealing with is constant |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 4128 | SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 4129 | N0, N1, CC, N->getDebugLoc(), false); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4130 | if (SCC.getNode()) AddToWorkList(SCC.getNode()); |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4131 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4132 | if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4133 | if (!SCCC->isNullValue()) |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4134 | return N2; // cond always true -> true val |
| 4135 | else |
| 4136 | return N3; // cond always false -> false val |
| 4137 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4138 | |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4139 | // Fold to a simpler select_cc |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4140 | if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4141 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(), |
| 4142 | SCC.getOperand(0), SCC.getOperand(1), N2, N3, |
Chris Lattner | 5f42a24 | 2006-09-20 06:19:26 +0000 | [diff] [blame] | 4143 | SCC.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4144 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 4145 | // If we can fold this based on the true/false value, do so. |
| 4146 | if (SimplifySelectOps(N, N2, N3)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4147 | return SDValue(N, 0); // Don't revisit N. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4148 | |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 4149 | // fold select_cc into other things, such as min/max/abs |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4150 | return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4151 | } |
| 4152 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4153 | SDValue DAGCombiner::visitSETCC(SDNode *N) { |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4154 | return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 4155 | cast<CondCodeSDNode>(N->getOperand(2))->get(), |
| 4156 | N->getDebugLoc()); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 4157 | } |
| 4158 | |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4159 | // ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this: |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4160 | // "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] | 4161 | // transformation. Returns true if extension are possible and the above |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4162 | // mentioned transformation is profitable. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4163 | static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0, |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4164 | unsigned ExtOpc, |
| 4165 | SmallVector<SDNode*, 4> &ExtendNodes, |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 4166 | const TargetLowering &TLI) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4167 | bool HasCopyToRegUses = false; |
| 4168 | bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType()); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 4169 | for (SDNode::use_iterator UI = N0.getNode()->use_begin(), |
| 4170 | UE = N0.getNode()->use_end(); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4171 | UI != UE; ++UI) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 4172 | SDNode *User = *UI; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4173 | if (User == N) |
| 4174 | continue; |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4175 | if (UI.getUse().getResNo() != N0.getResNo()) |
| 4176 | continue; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4177 | // FIXME: Only extend SETCC N, N and SETCC N, c for now. |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4178 | if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4179 | ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get(); |
| 4180 | if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC)) |
| 4181 | // Sign bits will be lost after a zext. |
| 4182 | return false; |
| 4183 | bool Add = false; |
| 4184 | for (unsigned i = 0; i != 2; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4185 | SDValue UseOp = User->getOperand(i); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4186 | if (UseOp == N0) |
| 4187 | continue; |
| 4188 | if (!isa<ConstantSDNode>(UseOp)) |
| 4189 | return false; |
| 4190 | Add = true; |
| 4191 | } |
| 4192 | if (Add) |
| 4193 | ExtendNodes.push_back(User); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4194 | continue; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4195 | } |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4196 | // If truncates aren't free and there are users we can't |
| 4197 | // extend, it isn't worthwhile. |
| 4198 | if (!isTruncFree) |
| 4199 | return false; |
| 4200 | // Remember if this value is live-out. |
| 4201 | if (User->getOpcode() == ISD::CopyToReg) |
| 4202 | HasCopyToRegUses = true; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4203 | } |
| 4204 | |
| 4205 | if (HasCopyToRegUses) { |
| 4206 | bool BothLiveOut = false; |
| 4207 | for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); |
| 4208 | UI != UE; ++UI) { |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4209 | SDUse &Use = UI.getUse(); |
| 4210 | if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) { |
| 4211 | BothLiveOut = true; |
| 4212 | break; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4213 | } |
| 4214 | } |
| 4215 | if (BothLiveOut) |
| 4216 | // Both unextended and extended values are live out. There had better be |
Bob Wilson | bebfbc5 | 2010-11-28 06:51:19 +0000 | [diff] [blame] | 4217 | // a good reason for the transformation. |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4218 | return ExtendNodes.size(); |
| 4219 | } |
| 4220 | return true; |
| 4221 | } |
| 4222 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4223 | void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs, |
| 4224 | SDValue Trunc, SDValue ExtLoad, DebugLoc DL, |
| 4225 | ISD::NodeType ExtType) { |
| 4226 | // Extend SetCC uses if necessary. |
| 4227 | for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) { |
| 4228 | SDNode *SetCC = SetCCs[i]; |
| 4229 | SmallVector<SDValue, 4> Ops; |
| 4230 | |
| 4231 | for (unsigned j = 0; j != 2; ++j) { |
| 4232 | SDValue SOp = SetCC->getOperand(j); |
| 4233 | if (SOp == Trunc) |
| 4234 | Ops.push_back(ExtLoad); |
| 4235 | else |
| 4236 | Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp)); |
| 4237 | } |
| 4238 | |
| 4239 | Ops.push_back(SetCC->getOperand(2)); |
| 4240 | CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0), |
| 4241 | &Ops[0], Ops.size())); |
| 4242 | } |
| 4243 | } |
| 4244 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4245 | SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) { |
| 4246 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4247 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4248 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4249 | // fold (sext c1) -> c1 |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 4250 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4251 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4252 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4253 | // fold (sext (sext x)) -> (sext x) |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4254 | // fold (sext (aext x)) -> (sext x) |
| 4255 | if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4256 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, |
| 4257 | N0.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4258 | |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4259 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Dan Gohman | 1fdfa6a | 2008-05-20 20:56:33 +0000 | [diff] [blame] | 4260 | // fold (sext (truncate (load x))) -> (sext (smaller load x)) |
| 4261 | // 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] | 4262 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4263 | if (NarrowLoad.getNode()) { |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4264 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4265 | if (NarrowLoad.getNode() != N0.getNode()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4266 | CombineTo(N0.getNode(), NarrowLoad); |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4267 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4268 | AddToWorkList(oye); |
| 4269 | } |
Dan Gohman | c7b3444 | 2009-04-27 02:00:55 +0000 | [diff] [blame] | 4270 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 0b063de | 2007-03-23 02:16:52 +0000 | [diff] [blame] | 4271 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4272 | |
Dan Gohman | 1fdfa6a | 2008-05-20 20:56:33 +0000 | [diff] [blame] | 4273 | // See if the value being truncated is already sign extended. If so, just |
| 4274 | // eliminate the trunc/sext pair. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4275 | SDValue Op = N0.getOperand(0); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4276 | unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits(); |
| 4277 | unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits(); |
| 4278 | unsigned DestBits = VT.getScalarType().getSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 4279 | unsigned NumSignBits = DAG.ComputeNumSignBits(Op); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4280 | |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4281 | if (OpBits == DestBits) { |
| 4282 | // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign |
| 4283 | // bits, it is already ready. |
| 4284 | if (NumSignBits > DestBits-MidBits) |
| 4285 | return Op; |
| 4286 | } else if (OpBits < DestBits) { |
| 4287 | // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign |
| 4288 | // bits, just sext from i32. |
| 4289 | if (NumSignBits > OpBits-MidBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4290 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op); |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4291 | } else { |
| 4292 | // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign |
| 4293 | // bits, just truncate to i32. |
| 4294 | if (NumSignBits > OpBits-MidBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4295 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4296 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4297 | |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4298 | // fold (sext (truncate x)) -> (sextinreg x). |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4299 | if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, |
| 4300 | N0.getValueType())) { |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4301 | if (OpBits < DestBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4302 | Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4303 | else if (OpBits > DestBits) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4304 | Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op); |
| 4305 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op, |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4306 | DAG.getValueType(N0.getValueType())); |
Chris Lattner | 2255887 | 2007-02-26 03:13:59 +0000 | [diff] [blame] | 4307 | } |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4308 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4309 | |
Evan Cheng | 110dec2 | 2005-12-14 02:19:23 +0000 | [diff] [blame] | 4310 | // fold (sext (load x)) -> (sext (truncate (sextload x))) |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4311 | // 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] | 4312 | // on vectors in one instruction. We only perform this transformation on |
| 4313 | // scalars. |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4314 | if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4315 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 4316 | TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4317 | bool DoXform = true; |
| 4318 | SmallVector<SDNode*, 4> SetCCs; |
| 4319 | if (!N0.hasOneUse()) |
| 4320 | DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI); |
| 4321 | if (DoXform) { |
| 4322 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4323 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4324 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4325 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4326 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4327 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4328 | LN0->getAlignment()); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4329 | CombineTo(N, ExtLoad); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4330 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4331 | N0.getValueType(), ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4332 | CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4333 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4334 | ISD::SIGN_EXTEND); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4335 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4336 | } |
Nate Begeman | 3df4d52 | 2005-10-12 20:40:40 +0000 | [diff] [blame] | 4337 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4338 | |
| 4339 | // fold (sext (sextload x)) -> (sext (truncate (sextload x))) |
| 4340 | // fold (sext ( extload x)) -> (sext (truncate (sextload x))) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4341 | if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && |
| 4342 | ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4343 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4344 | EVT MemVT = LN0->getMemoryVT(); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4345 | if ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4346 | TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4347 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4348 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4349 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 4350 | MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4351 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4352 | LN0->getAlignment()); |
Jim Laskey | f6c4ccf | 2006-12-15 21:38:30 +0000 | [diff] [blame] | 4353 | CombineTo(N, ExtLoad); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 4354 | CombineTo(N0.getNode(), |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4355 | DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4356 | N0.getValueType(), ExtLoad), |
Jim Laskey | f6c4ccf | 2006-12-15 21:38:30 +0000 | [diff] [blame] | 4357 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4358 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Jim Laskey | f6c4ccf | 2006-12-15 21:38:30 +0000 | [diff] [blame] | 4359 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4360 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4361 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4362 | // fold (sext (and/or/xor (load x), cst)) -> |
| 4363 | // (and/or/xor (sextload x), (sext cst)) |
| 4364 | if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || |
| 4365 | N0.getOpcode() == ISD::XOR) && |
| 4366 | isa<LoadSDNode>(N0.getOperand(0)) && |
| 4367 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4368 | TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) && |
| 4369 | (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { |
| 4370 | LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); |
| 4371 | if (LN0->getExtensionType() != ISD::ZEXTLOAD) { |
| 4372 | bool DoXform = true; |
| 4373 | SmallVector<SDNode*, 4> SetCCs; |
| 4374 | if (!N0.hasOneUse()) |
| 4375 | DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND, |
| 4376 | SetCCs, TLI); |
| 4377 | if (DoXform) { |
| 4378 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT, |
| 4379 | LN0->getChain(), LN0->getBasePtr(), |
| 4380 | LN0->getPointerInfo(), |
| 4381 | LN0->getMemoryVT(), |
| 4382 | LN0->isVolatile(), |
| 4383 | LN0->isNonTemporal(), |
| 4384 | LN0->getAlignment()); |
| 4385 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 4386 | Mask = Mask.sext(VT.getSizeInBits()); |
| 4387 | SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 4388 | ExtLoad, DAG.getConstant(Mask, VT)); |
| 4389 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, |
| 4390 | N0.getOperand(0).getDebugLoc(), |
| 4391 | N0.getOperand(0).getValueType(), ExtLoad); |
| 4392 | CombineTo(N, And); |
| 4393 | CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1)); |
| 4394 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4395 | ISD::SIGN_EXTEND); |
| 4396 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4397 | } |
| 4398 | } |
| 4399 | } |
| 4400 | |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4401 | if (N0.getOpcode() == ISD::SETCC) { |
Chris Lattner | 2b7a271 | 2009-07-08 00:31:33 +0000 | [diff] [blame] | 4402 | // sext(setcc) -> sext_in_reg(vsetcc) for vectors. |
Dan Gohman | 3ce89f4 | 2010-04-30 17:19:19 +0000 | [diff] [blame] | 4403 | // Only do this before legalize for now. |
| 4404 | if (VT.isVector() && !LegalOperations) { |
| 4405 | EVT N0VT = N0.getOperand(0).getValueType(); |
Nadav Rotem | 2e50619 | 2012-04-11 08:26:11 +0000 | [diff] [blame] | 4406 | // On some architectures (such as SSE/NEON/etc) the SETCC result type is |
| 4407 | // of the same size as the compared operands. Only optimize sext(setcc()) |
| 4408 | // if this is the case. |
| 4409 | EVT SVT = TLI.getSetCCResultType(N0VT); |
| 4410 | |
| 4411 | // We know that the # elements of the results is the same as the |
| 4412 | // # elements of the compare (and the # elements of the compare result |
| 4413 | // for that matter). Check to see that they are the same size. If so, |
| 4414 | // we know that the element size of the sext'd result matches the |
| 4415 | // element size of the compare operands. |
| 4416 | if (VT.getSizeInBits() == SVT.getSizeInBits()) |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4417 | return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0), |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4418 | N0.getOperand(1), |
| 4419 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
Dan Gohman | 3ce89f4 | 2010-04-30 17:19:19 +0000 | [diff] [blame] | 4420 | // If the desired elements are smaller or larger than the source |
| 4421 | // elements we can use a matching integer vector type and then |
| 4422 | // truncate/sign extend |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 4423 | EVT MatchingElementType = |
| 4424 | EVT::getIntegerVT(*DAG.getContext(), |
| 4425 | N0VT.getScalarType().getSizeInBits()); |
| 4426 | EVT MatchingVectorType = |
| 4427 | EVT::getVectorVT(*DAG.getContext(), MatchingElementType, |
| 4428 | N0VT.getVectorNumElements()); |
Nadav Rotem | 2e50619 | 2012-04-11 08:26:11 +0000 | [diff] [blame] | 4429 | |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 4430 | if (SVT == MatchingVectorType) { |
| 4431 | SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, |
| 4432 | N0.getOperand(0), N0.getOperand(1), |
| 4433 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
| 4434 | return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT); |
Dan Gohman | 3ce89f4 | 2010-04-30 17:19:19 +0000 | [diff] [blame] | 4435 | } |
Chris Lattner | 2b7a271 | 2009-07-08 00:31:33 +0000 | [diff] [blame] | 4436 | } |
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 | // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc) |
Dan Gohman | a7bcef1 | 2010-04-24 01:17:30 +0000 | [diff] [blame] | 4439 | unsigned ElementWidth = VT.getScalarType().getSizeInBits(); |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 4440 | SDValue NegOne = |
Dan Gohman | a7bcef1 | 2010-04-24 01:17:30 +0000 | [diff] [blame] | 4441 | DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4442 | SDValue SCC = |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4443 | SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1), |
Dan Gohman | 5cbd37e | 2009-08-06 09:18:59 +0000 | [diff] [blame] | 4444 | NegOne, DAG.getConstant(0, VT), |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 4445 | cast<CondCodeSDNode>(N0.getOperand(2))->get(), true); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4446 | if (SCC.getNode()) return SCC; |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 4447 | if (!LegalOperations || |
| 4448 | TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT))) |
| 4449 | return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT, |
| 4450 | DAG.getSetCC(N->getDebugLoc(), |
| 4451 | TLI.getSetCCResultType(VT), |
| 4452 | N0.getOperand(0), N0.getOperand(1), |
| 4453 | cast<CondCodeSDNode>(N0.getOperand(2))->get()), |
| 4454 | NegOne, DAG.getConstant(0, VT)); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4455 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4456 | |
Dan Gohman | 8f0ad58 | 2008-04-28 16:58:24 +0000 | [diff] [blame] | 4457 | // fold (sext x) -> (zext x) if the sign bit is known zero. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4458 | if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) && |
Dan Gohman | 187db7b | 2008-04-28 18:47:17 +0000 | [diff] [blame] | 4459 | DAG.SignBitIsZero(N0)) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4460 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4461 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 4462 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4463 | } |
| 4464 | |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4465 | // isTruncateOf - If N is a truncate of some other value, return true, record |
| 4466 | // the value being truncated in Op and which of Op's bits are zero in KnownZero. |
| 4467 | // This function computes KnownZero to avoid a duplicated call to |
| 4468 | // ComputeMaskedBits in the caller. |
| 4469 | static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op, |
| 4470 | APInt &KnownZero) { |
| 4471 | APInt KnownOne; |
| 4472 | if (N->getOpcode() == ISD::TRUNCATE) { |
| 4473 | Op = N->getOperand(0); |
| 4474 | DAG.ComputeMaskedBits(Op, KnownZero, KnownOne); |
| 4475 | return true; |
| 4476 | } |
| 4477 | |
| 4478 | if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 || |
| 4479 | cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE) |
| 4480 | return false; |
| 4481 | |
| 4482 | SDValue Op0 = N->getOperand(0); |
| 4483 | SDValue Op1 = N->getOperand(1); |
| 4484 | assert(Op0.getValueType() == Op1.getValueType()); |
| 4485 | |
| 4486 | ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0); |
| 4487 | ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1); |
Rafael Espindola | fdb230a | 2012-04-10 00:16:22 +0000 | [diff] [blame] | 4488 | if (COp0 && COp0->isNullValue()) |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4489 | Op = Op1; |
Rafael Espindola | fdb230a | 2012-04-10 00:16:22 +0000 | [diff] [blame] | 4490 | else if (COp1 && COp1->isNullValue()) |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4491 | Op = Op0; |
| 4492 | else |
| 4493 | return false; |
| 4494 | |
| 4495 | DAG.ComputeMaskedBits(Op, KnownZero, KnownOne); |
| 4496 | |
| 4497 | if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue()) |
| 4498 | return false; |
| 4499 | |
| 4500 | return true; |
| 4501 | } |
| 4502 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4503 | SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) { |
| 4504 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4505 | EVT VT = N->getValueType(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4506 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4507 | // fold (zext c1) -> c1 |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 4508 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4509 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4510 | // fold (zext (zext x)) -> (zext x) |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4511 | // fold (zext (aext x)) -> (zext x) |
| 4512 | if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4513 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, |
| 4514 | N0.getOperand(0)); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4515 | |
Chandler Carruth | f103b3d | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 4516 | // fold (zext (truncate x)) -> (zext x) or |
| 4517 | // (zext (truncate x)) -> (truncate x) |
| 4518 | // This is valid when the truncated bits of x are already zero. |
| 4519 | // FIXME: We should extend this to work for vectors too. |
Rafael Espindola | decbc43 | 2012-04-09 16:06:03 +0000 | [diff] [blame] | 4520 | SDValue Op; |
| 4521 | APInt KnownZero; |
| 4522 | if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) { |
| 4523 | APInt TruncatedBits = |
| 4524 | (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ? |
| 4525 | APInt(Op.getValueSizeInBits(), 0) : |
| 4526 | APInt::getBitsSet(Op.getValueSizeInBits(), |
| 4527 | N0.getValueSizeInBits(), |
| 4528 | std::min(Op.getValueSizeInBits(), |
| 4529 | VT.getSizeInBits())); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 4530 | if (TruncatedBits == (KnownZero & TruncatedBits)) { |
Chandler Carruth | f103b3d | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 4531 | if (VT.bitsGT(Op.getValueType())) |
| 4532 | return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op); |
| 4533 | if (VT.bitsLT(Op.getValueType())) |
| 4534 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op); |
| 4535 | |
| 4536 | return Op; |
| 4537 | } |
| 4538 | } |
| 4539 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4540 | // fold (zext (truncate (load x))) -> (zext (smaller load x)) |
| 4541 | // 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] | 4542 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4543 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4544 | if (NarrowLoad.getNode()) { |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4545 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4546 | if (NarrowLoad.getNode() != N0.getNode()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4547 | CombineTo(N0.getNode(), NarrowLoad); |
Dale Johannesen | 61734eb | 2010-05-25 17:50:03 +0000 | [diff] [blame] | 4548 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4549 | AddToWorkList(oye); |
| 4550 | } |
Eli Friedman | e545d38 | 2011-04-16 23:25:34 +0000 | [diff] [blame] | 4551 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 0b063de | 2007-03-23 02:16:52 +0000 | [diff] [blame] | 4552 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4553 | } |
| 4554 | |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4555 | // fold (zext (truncate x)) -> (and x, mask) |
| 4556 | if (N0.getOpcode() == ISD::TRUNCATE && |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4557 | (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) { |
Dan Gohman | 394d629 | 2010-11-03 01:47:46 +0000 | [diff] [blame] | 4558 | |
| 4559 | // fold (zext (truncate (load x))) -> (zext (smaller load x)) |
| 4560 | // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n))) |
| 4561 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4562 | if (NarrowLoad.getNode()) { |
| 4563 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4564 | if (NarrowLoad.getNode() != N0.getNode()) { |
| 4565 | CombineTo(N0.getNode(), NarrowLoad); |
| 4566 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4567 | AddToWorkList(oye); |
| 4568 | } |
| 4569 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4570 | } |
| 4571 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4572 | SDValue Op = N0.getOperand(0); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4573 | if (Op.getValueType().bitsLT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4574 | Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op); |
Elena Demikhovsky | 1da5867 | 2012-04-22 09:39:03 +0000 | [diff] [blame] | 4575 | AddToWorkList(Op.getNode()); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4576 | } else if (Op.getValueType().bitsGT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4577 | Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op); |
Elena Demikhovsky | 1da5867 | 2012-04-22 09:39:03 +0000 | [diff] [blame] | 4578 | AddToWorkList(Op.getNode()); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4579 | } |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 4580 | return DAG.getZeroExtendInReg(Op, N->getDebugLoc(), |
| 4581 | N0.getValueType().getScalarType()); |
Chris Lattner | 6007b84 | 2006-09-21 06:00:20 +0000 | [diff] [blame] | 4582 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4583 | |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4584 | // Fold (zext (and (trunc x), cst)) -> (and x, cst), |
| 4585 | // if either of the casts is not free. |
Chris Lattner | 111c228 | 2006-09-21 06:14:31 +0000 | [diff] [blame] | 4586 | if (N0.getOpcode() == ISD::AND && |
| 4587 | N0.getOperand(0).getOpcode() == ISD::TRUNCATE && |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4588 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4589 | (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), |
| 4590 | N0.getValueType()) || |
| 4591 | !TLI.isZExtFree(N0.getValueType(), VT))) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4592 | SDValue X = N0.getOperand(0).getOperand(0); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4593 | if (X.getValueType().bitsLT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4594 | X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4595 | } else if (X.getValueType().bitsGT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4596 | X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X); |
Chris Lattner | 111c228 | 2006-09-21 06:14:31 +0000 | [diff] [blame] | 4597 | } |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 4598 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 4599 | Mask = Mask.zext(VT.getSizeInBits()); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4600 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 4601 | X, DAG.getConstant(Mask, VT)); |
Chris Lattner | 111c228 | 2006-09-21 06:14:31 +0000 | [diff] [blame] | 4602 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4603 | |
Evan Cheng | 110dec2 | 2005-12-14 02:19:23 +0000 | [diff] [blame] | 4604 | // fold (zext (load x)) -> (zext (truncate (zextload x))) |
Nadav Rotem | ed9b934 | 2011-02-20 12:37:50 +0000 | [diff] [blame] | 4605 | // 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] | 4606 | // on vectors in one instruction. We only perform this transformation on |
| 4607 | // scalars. |
Nadav Rotem | ed9b934 | 2011-02-20 12:37:50 +0000 | [diff] [blame] | 4608 | if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4609 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 4610 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) { |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4611 | bool DoXform = true; |
| 4612 | SmallVector<SDNode*, 4> SetCCs; |
| 4613 | if (!N0.hasOneUse()) |
| 4614 | DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI); |
| 4615 | if (DoXform) { |
| 4616 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4617 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4618 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4619 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4620 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4621 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4622 | LN0->getAlignment()); |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4623 | CombineTo(N, ExtLoad); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4624 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4625 | N0.getValueType(), ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4626 | CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4627 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4628 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4629 | ISD::ZERO_EXTEND); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4630 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 4631 | } |
Evan Cheng | 110dec2 | 2005-12-14 02:19:23 +0000 | [diff] [blame] | 4632 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4633 | |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4634 | // fold (zext (and/or/xor (load x), cst)) -> |
| 4635 | // (and/or/xor (zextload x), (zext cst)) |
| 4636 | if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || |
| 4637 | N0.getOpcode() == ISD::XOR) && |
| 4638 | isa<LoadSDNode>(N0.getOperand(0)) && |
| 4639 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4640 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) && |
| 4641 | (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { |
| 4642 | LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); |
| 4643 | if (LN0->getExtensionType() != ISD::SEXTLOAD) { |
| 4644 | bool DoXform = true; |
| 4645 | SmallVector<SDNode*, 4> SetCCs; |
| 4646 | if (!N0.hasOneUse()) |
| 4647 | DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND, |
| 4648 | SetCCs, TLI); |
| 4649 | if (DoXform) { |
| 4650 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT, |
| 4651 | LN0->getChain(), LN0->getBasePtr(), |
| 4652 | LN0->getPointerInfo(), |
| 4653 | LN0->getMemoryVT(), |
| 4654 | LN0->isVolatile(), |
| 4655 | LN0->isNonTemporal(), |
| 4656 | LN0->getAlignment()); |
| 4657 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 4658 | Mask = Mask.zext(VT.getSizeInBits()); |
| 4659 | SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 4660 | ExtLoad, DAG.getConstant(Mask, VT)); |
| 4661 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, |
| 4662 | N0.getOperand(0).getDebugLoc(), |
| 4663 | N0.getOperand(0).getValueType(), ExtLoad); |
| 4664 | CombineTo(N, And); |
| 4665 | CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1)); |
| 4666 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4667 | ISD::ZERO_EXTEND); |
| 4668 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4669 | } |
| 4670 | } |
| 4671 | } |
| 4672 | |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4673 | // fold (zext (zextload x)) -> (zext (truncate (zextload x))) |
| 4674 | // fold (zext ( extload x)) -> (zext (truncate (zextload x))) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4675 | if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && |
| 4676 | ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4677 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4678 | EVT MemVT = LN0->getMemoryVT(); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4679 | if ((!LegalOperations && !LN0->isVolatile()) || |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4680 | TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4681 | SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4682 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4683 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 4684 | MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4685 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4686 | LN0->getAlignment()); |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4687 | CombineTo(N, ExtLoad); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 4688 | CombineTo(N0.getNode(), |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 4689 | DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(), |
| 4690 | ExtLoad), |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4691 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4692 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 4693 | } |
Chris Lattner | ad25d4e | 2005-12-14 19:05:06 +0000 | [diff] [blame] | 4694 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4695 | |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4696 | if (N0.getOpcode() == ISD::SETCC) { |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4697 | if (!LegalOperations && VT.isVector()) { |
| 4698 | // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors. |
| 4699 | // Only do this before legalize for now. |
| 4700 | EVT N0VT = N0.getOperand(0).getValueType(); |
| 4701 | EVT EltVT = VT.getVectorElementType(); |
| 4702 | SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(), |
| 4703 | DAG.getConstant(1, EltVT)); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 4704 | if (VT.getSizeInBits() == N0VT.getSizeInBits()) |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4705 | // We know that the # elements of the results is the same as the |
| 4706 | // # elements of the compare (and the # elements of the compare result |
| 4707 | // for that matter). Check to see that they are the same size. If so, |
| 4708 | // we know that the element size of the sext'd result matches the |
| 4709 | // element size of the compare operands. |
| 4710 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4711 | DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0), |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4712 | N0.getOperand(1), |
| 4713 | cast<CondCodeSDNode>(N0.getOperand(2))->get()), |
| 4714 | DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT, |
| 4715 | &OneOps[0], OneOps.size())); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 4716 | |
| 4717 | // If the desired elements are smaller or larger than the source |
| 4718 | // elements we can use a matching integer vector type and then |
| 4719 | // truncate/sign extend |
| 4720 | EVT MatchingElementType = |
| 4721 | EVT::getIntegerVT(*DAG.getContext(), |
| 4722 | N0VT.getScalarType().getSizeInBits()); |
| 4723 | EVT MatchingVectorType = |
| 4724 | EVT::getVectorVT(*DAG.getContext(), MatchingElementType, |
| 4725 | N0VT.getVectorNumElements()); |
| 4726 | SDValue VsetCC = |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4727 | DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0), |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 4728 | N0.getOperand(1), |
| 4729 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
| 4730 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 4731 | DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT), |
| 4732 | DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT, |
| 4733 | &OneOps[0], OneOps.size())); |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4734 | } |
| 4735 | |
| 4736 | // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4737 | SDValue SCC = |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4738 | SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1), |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4739 | DAG.getConstant(1, VT), DAG.getConstant(0, VT), |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 4740 | cast<CondCodeSDNode>(N0.getOperand(2))->get(), true); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4741 | if (SCC.getNode()) return SCC; |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4742 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4743 | |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4744 | // (zext (shl (zext x), cst)) -> (shl (zext x), cst) |
Evan Cheng | 99b653c | 2009-12-15 00:41:36 +0000 | [diff] [blame] | 4745 | if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) && |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4746 | isa<ConstantSDNode>(N0.getOperand(1)) && |
Evan Cheng | 99b653c | 2009-12-15 00:41:36 +0000 | [diff] [blame] | 4747 | N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND && |
| 4748 | N0.hasOneUse()) { |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4749 | SDValue ShAmt = N0.getOperand(1); |
| 4750 | unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue(); |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4751 | if (N0.getOpcode() == ISD::SHL) { |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4752 | SDValue InnerZExt = N0.getOperand(0); |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4753 | // If the original shl may be shifting out bits, do not perform this |
| 4754 | // transformation. |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4755 | unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() - |
| 4756 | InnerZExt.getOperand(0).getValueType().getSizeInBits(); |
| 4757 | if (ShAmtVal > KnownZeroBits) |
Evan Cheng | 9818c04 | 2009-12-15 03:00:32 +0000 | [diff] [blame] | 4758 | return SDValue(); |
| 4759 | } |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4760 | |
| 4761 | DebugLoc DL = N->getDebugLoc(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 4762 | |
| 4763 | // Ensure that the shift amount is wide enough for the shifted value. |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4764 | if (VT.getSizeInBits() >= 256) |
| 4765 | ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 4766 | |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 4767 | return DAG.getNode(N0.getOpcode(), DL, VT, |
| 4768 | DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)), |
| 4769 | ShAmt); |
Evan Cheng | 99b653c | 2009-12-15 00:41:36 +0000 | [diff] [blame] | 4770 | } |
| 4771 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 4772 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 4773 | } |
| 4774 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4775 | SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) { |
| 4776 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4777 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4778 | |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4779 | // fold (aext c1) -> c1 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 4780 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 4781 | return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4782 | // fold (aext (aext x)) -> (aext x) |
| 4783 | // fold (aext (zext x)) -> (zext x) |
| 4784 | // fold (aext (sext x)) -> (sext x) |
| 4785 | if (N0.getOpcode() == ISD::ANY_EXTEND || |
| 4786 | N0.getOpcode() == ISD::ZERO_EXTEND || |
| 4787 | N0.getOpcode() == ISD::SIGN_EXTEND) |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4788 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4789 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4790 | // fold (aext (truncate (load x))) -> (aext (smaller load x)) |
| 4791 | // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n))) |
| 4792 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4793 | SDValue NarrowLoad = ReduceLoadWidth(N0.getNode()); |
| 4794 | if (NarrowLoad.getNode()) { |
Dale Johannesen | 86234c3 | 2010-05-25 18:47:23 +0000 | [diff] [blame] | 4795 | SDNode* oye = N0.getNode()->getOperand(0).getNode(); |
| 4796 | if (NarrowLoad.getNode() != N0.getNode()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4797 | CombineTo(N0.getNode(), NarrowLoad); |
Dale Johannesen | 86234c3 | 2010-05-25 18:47:23 +0000 | [diff] [blame] | 4798 | // CombineTo deleted the truncate, if needed, but not what's under it. |
| 4799 | AddToWorkList(oye); |
| 4800 | } |
Eli Friedman | e545d38 | 2011-04-16 23:25:34 +0000 | [diff] [blame] | 4801 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 0b063de | 2007-03-23 02:16:52 +0000 | [diff] [blame] | 4802 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4803 | } |
| 4804 | |
Chris Lattner | 8475058 | 2006-09-20 06:29:17 +0000 | [diff] [blame] | 4805 | // fold (aext (truncate x)) |
| 4806 | if (N0.getOpcode() == ISD::TRUNCATE) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4807 | SDValue TruncOp = N0.getOperand(0); |
Chris Lattner | 8475058 | 2006-09-20 06:29:17 +0000 | [diff] [blame] | 4808 | if (TruncOp.getValueType() == VT) |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 4809 | return TruncOp; // x iff x size == zext size. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4810 | if (TruncOp.getValueType().bitsGT(VT)) |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4811 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp); |
| 4812 | return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp); |
Chris Lattner | 8475058 | 2006-09-20 06:29:17 +0000 | [diff] [blame] | 4813 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4814 | |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4815 | // Fold (aext (and (trunc x), cst)) -> (and x, cst) |
| 4816 | // if the trunc is not free. |
Chris Lattner | 0e4b922 | 2006-09-21 06:40:43 +0000 | [diff] [blame] | 4817 | if (N0.getOpcode() == ISD::AND && |
| 4818 | N0.getOperand(0).getOpcode() == ISD::TRUNCATE && |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 4819 | N0.getOperand(1).getOpcode() == ISD::Constant && |
| 4820 | !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), |
| 4821 | N0.getValueType())) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4822 | SDValue X = N0.getOperand(0).getOperand(0); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4823 | if (X.getValueType().bitsLT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4824 | X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4825 | } else if (X.getValueType().bitsGT(VT)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 4826 | X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X); |
Chris Lattner | 0e4b922 | 2006-09-21 06:40:43 +0000 | [diff] [blame] | 4827 | } |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 4828 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 4829 | Mask = Mask.zext(VT.getSizeInBits()); |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4830 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 4831 | X, DAG.getConstant(Mask, VT)); |
Chris Lattner | 0e4b922 | 2006-09-21 06:40:43 +0000 | [diff] [blame] | 4832 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4833 | |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4834 | // fold (aext (load x)) -> (aext (truncate (extload x))) |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4835 | // 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] | 4836 | // on vectors in one instruction. We only perform this transformation on |
| 4837 | // scalars. |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 4838 | if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 4839 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 4840 | TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) { |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4841 | bool DoXform = true; |
| 4842 | SmallVector<SDNode*, 4> SetCCs; |
| 4843 | if (!N0.hasOneUse()) |
| 4844 | DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI); |
| 4845 | if (DoXform) { |
| 4846 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4847 | SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT, |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4848 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4849 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4850 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4851 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4852 | LN0->getAlignment()); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4853 | CombineTo(N, ExtLoad); |
| 4854 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4855 | N0.getValueType(), ExtLoad); |
| 4856 | CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); |
Nick Lewycky | c06b5bf | 2011-06-16 01:15:49 +0000 | [diff] [blame] | 4857 | ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(), |
| 4858 | ISD::ANY_EXTEND); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 4859 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
| 4860 | } |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4861 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4862 | |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4863 | // fold (aext (zextload x)) -> (aext (truncate (zextload x))) |
| 4864 | // fold (aext (sextload x)) -> (aext (truncate (sextload x))) |
| 4865 | // fold (aext ( extload x)) -> (aext (truncate (extload x))) |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 4866 | if (N0.getOpcode() == ISD::LOAD && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4867 | !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4868 | N0.hasOneUse()) { |
| 4869 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4870 | EVT MemVT = LN0->getMemoryVT(); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 4871 | SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(), |
| 4872 | VT, LN0->getChain(), LN0->getBasePtr(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 4873 | LN0->getPointerInfo(), MemVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4874 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 4875 | LN0->getAlignment()); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4876 | CombineTo(N, ExtLoad); |
Evan Cheng | 4529966 | 2008-08-29 23:20:46 +0000 | [diff] [blame] | 4877 | CombineTo(N0.getNode(), |
Bill Wendling | 683c957 | 2009-01-30 22:27:33 +0000 | [diff] [blame] | 4878 | DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), |
| 4879 | N0.getValueType(), ExtLoad), |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4880 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4881 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4882 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4883 | |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4884 | if (N0.getOpcode() == ISD::SETCC) { |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4885 | // aext(setcc) -> sext_in_reg(vsetcc) for vectors. |
| 4886 | // Only do this before legalize for now. |
| 4887 | if (VT.isVector() && !LegalOperations) { |
| 4888 | EVT N0VT = N0.getOperand(0).getValueType(); |
| 4889 | // We know that the # elements of the results is the same as the |
| 4890 | // # elements of the compare (and the # elements of the compare result |
| 4891 | // for that matter). Check to see that they are the same size. If so, |
| 4892 | // we know that the element size of the sext'd result matches the |
| 4893 | // element size of the compare operands. |
| 4894 | if (VT.getSizeInBits() == N0VT.getSizeInBits()) |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4895 | return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0), |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4896 | N0.getOperand(1), |
| 4897 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4898 | // If the desired elements are smaller or larger than the source |
| 4899 | // elements we can use a matching integer vector type and then |
| 4900 | // truncate/sign extend |
| 4901 | else { |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4902 | EVT MatchingElementType = |
| 4903 | EVT::getIntegerVT(*DAG.getContext(), |
| 4904 | N0VT.getScalarType().getSizeInBits()); |
| 4905 | EVT MatchingVectorType = |
| 4906 | EVT::getVectorVT(*DAG.getContext(), MatchingElementType, |
| 4907 | N0VT.getVectorNumElements()); |
| 4908 | SDValue VsetCC = |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 4909 | DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0), |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 4910 | N0.getOperand(1), |
| 4911 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
| 4912 | return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT); |
Evan Cheng | 0a942db | 2010-05-19 01:08:17 +0000 | [diff] [blame] | 4913 | } |
| 4914 | } |
| 4915 | |
| 4916 | // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4917 | SDValue SCC = |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 4918 | SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1), |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 4919 | DAG.getConstant(1, VT), DAG.getConstant(0, VT), |
Chris Lattner | c24bbad | 2007-04-11 16:51:53 +0000 | [diff] [blame] | 4920 | cast<CondCodeSDNode>(N0.getOperand(2))->get(), true); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4921 | if (SCC.getNode()) |
Chris Lattner | c56a81d | 2007-04-11 06:43:25 +0000 | [diff] [blame] | 4922 | return SCC; |
Chris Lattner | 20a35c3 | 2007-04-11 05:32:27 +0000 | [diff] [blame] | 4923 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4924 | |
Evan Cheng | b3a3d5e | 2010-04-28 07:10:39 +0000 | [diff] [blame] | 4925 | return SDValue(); |
Chris Lattner | 5ffc066 | 2006-05-05 05:58:59 +0000 | [diff] [blame] | 4926 | } |
| 4927 | |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4928 | /// GetDemandedBits - See if the specified operand can be simplified with the |
| 4929 | /// 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] | 4930 | /// simpler operand, otherwise return a null SDValue. |
| 4931 | SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) { |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4932 | switch (V.getOpcode()) { |
| 4933 | default: break; |
Lang Hames | 5207bf2 | 2011-11-08 18:56:23 +0000 | [diff] [blame] | 4934 | case ISD::Constant: { |
| 4935 | const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode()); |
| 4936 | assert(CV != 0 && "Const value should be ConstSDNode."); |
| 4937 | const APInt &CVal = CV->getAPIntValue(); |
| 4938 | APInt NewVal = CVal & Mask; |
| 4939 | if (NewVal != CVal) { |
| 4940 | return DAG.getConstant(NewVal, V.getValueType()); |
| 4941 | } |
| 4942 | break; |
| 4943 | } |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4944 | case ISD::OR: |
| 4945 | case ISD::XOR: |
| 4946 | // If the LHS or RHS don't contribute bits to the or, drop them. |
| 4947 | if (DAG.MaskedValueIsZero(V.getOperand(0), Mask)) |
| 4948 | return V.getOperand(1); |
| 4949 | if (DAG.MaskedValueIsZero(V.getOperand(1), Mask)) |
| 4950 | return V.getOperand(0); |
| 4951 | break; |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4952 | case ISD::SRL: |
| 4953 | // Only look at single-use SRLs. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4954 | if (!V.getNode()->hasOneUse()) |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4955 | break; |
| 4956 | if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) { |
| 4957 | // See if we can recursively simplify the LHS. |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 4958 | unsigned Amt = RHSC->getZExtValue(); |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 4959 | |
Dan Gohman | cc91d63 | 2009-01-03 19:22:06 +0000 | [diff] [blame] | 4960 | // Watch out for shift count overflow though. |
| 4961 | if (Amt >= Mask.getBitWidth()) break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 4962 | APInt NewMask = Mask << Amt; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4963 | SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask); |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 4964 | if (SimplifyLHS.getNode()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4965 | return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(), |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4966 | SimplifyLHS, V.getOperand(1)); |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 4967 | } |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4968 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4969 | return SDValue(); |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 4970 | } |
| 4971 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4972 | /// ReduceLoadWidth - If the result of a wider load is shifted to right of N |
| 4973 | /// bits and then truncated to a narrower type and where N is a multiple |
| 4974 | /// of number of bits of the narrower type, transform it to a narrower load |
| 4975 | /// from address + N / num of bits of new type. If the result is to be |
| 4976 | /// extended, also fold the extension to form a extending load. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4977 | SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) { |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4978 | unsigned Opc = N->getOpcode(); |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4979 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4980 | ISD::LoadExtType ExtType = ISD::NON_EXTLOAD; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4981 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4982 | EVT VT = N->getValueType(0); |
| 4983 | EVT ExtVT = VT; |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4984 | |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 4985 | // This transformation isn't valid for vector loads. |
| 4986 | if (VT.isVector()) |
| 4987 | return SDValue(); |
| 4988 | |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4989 | // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then |
Evan Cheng | e177e30 | 2007-03-23 22:13:36 +0000 | [diff] [blame] | 4990 | // extended to VT. |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 4991 | if (Opc == ISD::SIGN_EXTEND_INREG) { |
| 4992 | ExtType = ISD::SEXTLOAD; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4993 | ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT(); |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4994 | } else if (Opc == ISD::SRL) { |
Chris Lattner | 90b0364 | 2010-12-21 18:05:22 +0000 | [diff] [blame] | 4995 | // Another special-case: SRL is basically zero-extending a narrower value. |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 4996 | ExtType = ISD::ZEXTLOAD; |
| 4997 | N0 = SDValue(N, 0); |
| 4998 | ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 4999 | if (!N01) return SDValue(); |
| 5000 | ExtVT = EVT::getIntegerVT(*DAG.getContext(), |
| 5001 | VT.getSizeInBits() - N01->getZExtValue()); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5002 | } |
Richard Osborne | 4e3740e | 2011-01-31 17:41:44 +0000 | [diff] [blame] | 5003 | if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT)) |
| 5004 | return SDValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5005 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5006 | unsigned EVTBits = ExtVT.getSizeInBits(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5007 | |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5008 | // Do not generate loads of non-round integer types since these can |
| 5009 | // be expensive (and would be wrong if the type is not byte sized). |
| 5010 | if (!ExtVT.isRound()) |
| 5011 | return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5012 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5013 | unsigned ShAmt = 0; |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5014 | if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5015 | if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5016 | ShAmt = N01->getZExtValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5017 | // Is the shift amount a multiple of size of VT? |
| 5018 | if ((ShAmt & (EVTBits-1)) == 0) { |
| 5019 | N0 = N0.getOperand(0); |
Eli Friedman | d68eea2 | 2009-08-19 08:46:10 +0000 | [diff] [blame] | 5020 | // Is the load width a multiple of size of VT? |
| 5021 | if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5022 | return SDValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5023 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5024 | |
Chris Lattner | cbf68df | 2010-12-22 08:02:57 +0000 | [diff] [blame] | 5025 | // At this point, we must have a load or else we can't do the transform. |
| 5026 | if (!isa<LoadSDNode>(N0)) return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5027 | |
Chris Lattner | 2831a19 | 2010-10-01 05:36:09 +0000 | [diff] [blame] | 5028 | // If the shift amount is larger than the input type then we're not |
| 5029 | // accessing any of the loaded bytes. If the load was a zextload/extload |
| 5030 | // then the result of the shift+trunc is zero/undef (handled elsewhere). |
| 5031 | // If the load was a sextload then the result is a splat of the sign bit |
| 5032 | // of the extended byte. This is not worth optimizing for. |
Chris Lattner | cbf68df | 2010-12-22 08:02:57 +0000 | [diff] [blame] | 5033 | if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits()) |
Chris Lattner | 2831a19 | 2010-10-01 05:36:09 +0000 | [diff] [blame] | 5034 | return SDValue(); |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5035 | } |
| 5036 | } |
| 5037 | |
Dan Gohman | 394d629 | 2010-11-03 01:47:46 +0000 | [diff] [blame] | 5038 | // If the load is shifted left (and the result isn't shifted back right), |
| 5039 | // we can fold the truncate through the shift. |
| 5040 | unsigned ShLeftAmt = 0; |
| 5041 | if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() && |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5042 | ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) { |
Dan Gohman | 394d629 | 2010-11-03 01:47:46 +0000 | [diff] [blame] | 5043 | if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
| 5044 | ShLeftAmt = N01->getZExtValue(); |
| 5045 | N0 = N0.getOperand(0); |
| 5046 | } |
| 5047 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5048 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5049 | // If we haven't found a load, we can't narrow it. Don't transform one with |
| 5050 | // multiple uses, this would require adding a new load. |
| 5051 | if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() || |
| 5052 | // Don't change the width of a volatile load. |
| 5053 | cast<LoadSDNode>(N0)->isVolatile()) |
| 5054 | return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5055 | |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5056 | // Verify that we are actually reducing a load width here. |
| 5057 | if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits) |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5058 | return SDValue(); |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5059 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5060 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
| 5061 | EVT PtrType = N0.getOperand(1).getValueType(); |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5062 | |
Evan Cheng | 16436df | 2012-06-26 01:19:33 +0000 | [diff] [blame] | 5063 | if (PtrType == MVT::Untyped || PtrType.isExtended()) |
| 5064 | // It's not possible to generate a constant of extended or untyped type. |
| 5065 | return SDValue(); |
| 5066 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5067 | // For big endian targets, we need to adjust the offset to the pointer to |
| 5068 | // load the correct bytes. |
| 5069 | if (TLI.isBigEndian()) { |
| 5070 | unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits(); |
| 5071 | unsigned EVTStoreBits = ExtVT.getStoreSizeInBits(); |
| 5072 | ShAmt = LVTStoreBits - EVTStoreBits - ShAmt; |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5073 | } |
| 5074 | |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5075 | uint64_t PtrOff = ShAmt / 8; |
| 5076 | unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff); |
| 5077 | SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), |
| 5078 | PtrType, LN0->getBasePtr(), |
| 5079 | DAG.getConstant(PtrOff, PtrType)); |
| 5080 | AddToWorkList(NewPtr.getNode()); |
| 5081 | |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5082 | SDValue Load; |
| 5083 | if (ExtType == ISD::NON_EXTLOAD) |
| 5084 | Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr, |
| 5085 | LN0->getPointerInfo().getWithOffset(PtrOff), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5086 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 5087 | LN0->isInvariant(), NewAlign); |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5088 | else |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 5089 | Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr, |
Chris Lattner | 7a2a7fa | 2010-12-22 08:01:44 +0000 | [diff] [blame] | 5090 | LN0->getPointerInfo().getWithOffset(PtrOff), |
| 5091 | ExtVT, LN0->isVolatile(), LN0->isNonTemporal(), |
| 5092 | NewAlign); |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5093 | |
| 5094 | // Replace the old load's chain with the new load's chain. |
| 5095 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5096 | DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1)); |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5097 | |
| 5098 | // Shift the result left, if we've swallowed a left shift. |
| 5099 | SDValue Result = Load; |
| 5100 | if (ShLeftAmt != 0) { |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 5101 | EVT ShImmTy = getShiftAmountTy(Result.getValueType()); |
Chris Lattner | 4c32bc2 | 2010-12-22 07:36:50 +0000 | [diff] [blame] | 5102 | if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt)) |
| 5103 | ShImmTy = VT; |
| 5104 | Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, |
| 5105 | Result, DAG.getConstant(ShLeftAmt, ShImmTy)); |
| 5106 | } |
| 5107 | |
| 5108 | // Return the new loaded value. |
| 5109 | return Result; |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5110 | } |
| 5111 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5112 | SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) { |
| 5113 | SDValue N0 = N->getOperand(0); |
| 5114 | SDValue N1 = N->getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5115 | EVT VT = N->getValueType(0); |
| 5116 | EVT EVT = cast<VTSDNode>(N1)->getVT(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5117 | unsigned VTBits = VT.getScalarType().getSizeInBits(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 5118 | unsigned EVTBits = EVT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5119 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5120 | // fold (sext_in_reg c1) -> c1 |
Chris Lattner | eaeda56 | 2006-05-08 20:59:41 +0000 | [diff] [blame] | 5121 | if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF) |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5122 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5123 | |
Chris Lattner | 541a24f | 2006-05-06 22:43:44 +0000 | [diff] [blame] | 5124 | // If the input is already sign extended, just drop the extension. |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5125 | if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1) |
Chris Lattner | ee4ea92 | 2006-05-06 09:30:03 +0000 | [diff] [blame] | 5126 | return N0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5127 | |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 5128 | // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2 |
| 5129 | if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5130 | EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) { |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5131 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, |
| 5132 | N0.getOperand(0), N1); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 5133 | } |
Chris Lattner | 4b37e87 | 2006-05-08 21:18:59 +0000 | [diff] [blame] | 5134 | |
Dan Gohman | 75dcf08 | 2008-07-31 00:50:31 +0000 | [diff] [blame] | 5135 | // fold (sext_in_reg (sext x)) -> (sext x) |
| 5136 | // fold (sext_in_reg (aext x)) -> (sext x) |
| 5137 | // if x is small enough. |
| 5138 | if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) { |
| 5139 | SDValue N00 = N0.getOperand(0); |
Evan Cheng | 003d7c4 | 2010-04-16 22:26:19 +0000 | [diff] [blame] | 5140 | if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits && |
| 5141 | (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT))) |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5142 | return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1); |
Dan Gohman | 75dcf08 | 2008-07-31 00:50:31 +0000 | [diff] [blame] | 5143 | } |
| 5144 | |
Chris Lattner | 95a5e05 | 2007-04-17 19:03:21 +0000 | [diff] [blame] | 5145 | // 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] | 5146 | if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits))) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 5147 | return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5148 | |
Chris Lattner | 95a5e05 | 2007-04-17 19:03:21 +0000 | [diff] [blame] | 5149 | // fold operands of sext_in_reg based on knowledge that the top bits are not |
| 5150 | // demanded. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5151 | if (SimplifyDemandedBits(SDValue(N, 0))) |
| 5152 | return SDValue(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5153 | |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5154 | // fold (sext_in_reg (load x)) -> (smaller sextload x) |
| 5155 | // 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] | 5156 | SDValue NarrowLoad = ReduceLoadWidth(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5157 | if (NarrowLoad.getNode()) |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5158 | return NarrowLoad; |
| 5159 | |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5160 | // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24) |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5161 | // 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] | 5162 | // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above. |
| 5163 | if (N0.getOpcode() == ISD::SRL) { |
| 5164 | if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1))) |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5165 | if (ShAmt->getZExtValue()+EVTBits <= VTBits) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5166 | // 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] | 5167 | // extended enough. |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 5168 | unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0)); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 5169 | if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits) |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5170 | return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, |
| 5171 | N0.getOperand(0), N0.getOperand(1)); |
Chris Lattner | 4b37e87 | 2006-05-08 21:18:59 +0000 | [diff] [blame] | 5172 | } |
| 5173 | } |
Evan Cheng | c88138f | 2007-03-22 01:54:19 +0000 | [diff] [blame] | 5174 | |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 5175 | // fold (sext_inreg (extload x)) -> (sextload x) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5176 | if (ISD::isEXTLoad(N0.getNode()) && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5177 | ISD::isUNINDEXEDLoad(N0.getNode()) && |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 5178 | EVT == cast<LoadSDNode>(N0)->getMemoryVT() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5179 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 5180 | TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5181 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 5182 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5183 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 5184 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 5185 | EVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 5186 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 5187 | LN0->getAlignment()); |
Chris Lattner | d477184 | 2005-12-14 19:25:30 +0000 | [diff] [blame] | 5188 | CombineTo(N, ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5189 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5190 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 5191 | } |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5192 | // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5193 | if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 5194 | N0.hasOneUse() && |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 5195 | EVT == cast<LoadSDNode>(N0)->getMemoryVT() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5196 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 5197 | TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5198 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 5199 | SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 8509c90 | 2009-01-30 22:33:24 +0000 | [diff] [blame] | 5200 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 5201 | LN0->getBasePtr(), LN0->getPointerInfo(), |
| 5202 | EVT, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 5203 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 5204 | LN0->getAlignment()); |
Chris Lattner | d477184 | 2005-12-14 19:25:30 +0000 | [diff] [blame] | 5205 | CombineTo(N, ExtLoad); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5206 | CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5207 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Nate Begeman | ded4963 | 2005-10-13 03:11:28 +0000 | [diff] [blame] | 5208 | } |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 5209 | |
| 5210 | // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16)) |
| 5211 | if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) { |
| 5212 | SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0), |
| 5213 | N0.getOperand(1), false); |
| 5214 | if (BSwap.getNode() != 0) |
| 5215 | return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, |
| 5216 | BSwap, N1); |
| 5217 | } |
| 5218 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5219 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5220 | } |
| 5221 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5222 | SDValue DAGCombiner::visitTRUNCATE(SDNode *N) { |
| 5223 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5224 | EVT VT = N->getValueType(0); |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5225 | bool isLE = TLI.isLittleEndian(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5226 | |
| 5227 | // noop truncate |
| 5228 | if (N0.getValueType() == N->getValueType(0)) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 5229 | return N0; |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5230 | // fold (truncate c1) -> c1 |
Chris Lattner | 310b578 | 2006-05-06 23:06:26 +0000 | [diff] [blame] | 5231 | if (isa<ConstantSDNode>(N0)) |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5232 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5233 | // fold (truncate (truncate x)) -> (truncate x) |
| 5234 | if (N0.getOpcode() == ISD::TRUNCATE) |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5235 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0)); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5236 | // fold (truncate (ext x)) -> (ext x) or (truncate x) or x |
Chris Lattner | 7f893c0 | 2010-04-07 18:13:33 +0000 | [diff] [blame] | 5237 | if (N0.getOpcode() == ISD::ZERO_EXTEND || |
| 5238 | N0.getOpcode() == ISD::SIGN_EXTEND || |
Chris Lattner | b72773b | 2006-05-05 22:56:26 +0000 | [diff] [blame] | 5239 | N0.getOpcode() == ISD::ANY_EXTEND) { |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5240 | if (N0.getOperand(0).getValueType().bitsLT(VT)) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5241 | // 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] | 5242 | return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, |
| 5243 | N0.getOperand(0)); |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 5244 | if (N0.getOperand(0).getValueType().bitsGT(VT)) |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5245 | // 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] | 5246 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0)); |
Craig Topper | 0eb5dad | 2012-09-29 07:18:53 +0000 | [diff] [blame] | 5247 | // if the source and dest are the same type, we can drop both the extend |
| 5248 | // and the truncate. |
| 5249 | return N0.getOperand(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5250 | } |
Evan Cheng | 007b69e | 2007-03-21 20:14:05 +0000 | [diff] [blame] | 5251 | |
Nadav Rotem | cc870a8 | 2012-02-05 11:39:23 +0000 | [diff] [blame] | 5252 | // Fold extract-and-trunc into a narrow extract. For example: |
| 5253 | // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1) |
| 5254 | // i32 y = TRUNCATE(i64 x) |
| 5255 | // -- becomes -- |
| 5256 | // v16i8 b = BITCAST (v2i64 val) |
| 5257 | // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8) |
| 5258 | // |
| 5259 | // Note: We only run this optimization after type legalization (which often |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5260 | // creates this pattern) and before operation legalization after which |
| 5261 | // we need to be more careful about the vector instructions that we generate. |
| 5262 | if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && |
| 5263 | LegalTypes && !LegalOperations && N0->hasOneUse()) { |
| 5264 | |
| 5265 | EVT VecTy = N0.getOperand(0).getValueType(); |
| 5266 | EVT ExTy = N0.getValueType(); |
| 5267 | EVT TrTy = N->getValueType(0); |
| 5268 | |
| 5269 | unsigned NumElem = VecTy.getVectorNumElements(); |
| 5270 | unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits(); |
| 5271 | |
| 5272 | EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem); |
| 5273 | assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size"); |
| 5274 | |
| 5275 | SDValue EltNo = N0->getOperand(1); |
| 5276 | if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) { |
| 5277 | int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 5278 | EVT IndexTy = N0->getOperand(1).getValueType(); |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5279 | int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); |
| 5280 | |
| 5281 | SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), |
| 5282 | NVT, N0.getOperand(0)); |
| 5283 | |
| 5284 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, |
| 5285 | N->getDebugLoc(), TrTy, V, |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 5286 | DAG.getConstant(Index, IndexTy)); |
Nadav Rotem | 7e413e9c | 2012-02-03 13:18:25 +0000 | [diff] [blame] | 5287 | } |
| 5288 | } |
| 5289 | |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 5290 | // 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] | 5291 | // only the low bits are being used. |
| 5292 | // For example "trunc (or (shl x, 8), y)" // -> trunc y |
Nadav Rotem | fcd9619 | 2011-02-27 07:40:43 +0000 | [diff] [blame] | 5293 | // Currently we only perform this optimization on scalars because vectors |
Nadav Rotem | 8c20ec5 | 2011-02-24 21:01:34 +0000 | [diff] [blame] | 5294 | // may have different active low bits. |
| 5295 | if (!VT.isVector()) { |
| 5296 | SDValue Shorter = |
| 5297 | GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(), |
| 5298 | VT.getSizeInBits())); |
| 5299 | if (Shorter.getNode()) |
| 5300 | return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter); |
| 5301 | } |
Nate Begeman | 3df4d52 | 2005-10-12 20:40:40 +0000 | [diff] [blame] | 5302 | // fold (truncate (load x)) -> (smaller load x) |
Evan Cheng | 007b69e | 2007-03-21 20:14:05 +0000 | [diff] [blame] | 5303 | // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits)) |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 5304 | if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) { |
| 5305 | SDValue Reduced = ReduceLoadWidth(N); |
| 5306 | if (Reduced.getNode()) |
| 5307 | return Reduced; |
| 5308 | } |
Michael Liao | 07edaf3 | 2012-10-17 23:45:54 +0000 | [diff] [blame] | 5309 | // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)), |
| 5310 | // where ... are all 'undef'. |
| 5311 | if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) { |
| 5312 | SmallVector<EVT, 8> VTs; |
| 5313 | SDValue V; |
| 5314 | unsigned Idx = 0; |
| 5315 | unsigned NumDefs = 0; |
| 5316 | |
| 5317 | for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) { |
| 5318 | SDValue X = N0.getOperand(i); |
| 5319 | if (X.getOpcode() != ISD::UNDEF) { |
| 5320 | V = X; |
| 5321 | Idx = i; |
| 5322 | NumDefs++; |
| 5323 | } |
| 5324 | // Stop if more than one members are non-undef. |
| 5325 | if (NumDefs > 1) |
| 5326 | break; |
| 5327 | VTs.push_back(EVT::getVectorVT(*DAG.getContext(), |
| 5328 | VT.getVectorElementType(), |
| 5329 | X.getValueType().getVectorNumElements())); |
| 5330 | } |
| 5331 | |
| 5332 | if (NumDefs == 0) |
| 5333 | return DAG.getUNDEF(VT); |
| 5334 | |
| 5335 | if (NumDefs == 1) { |
| 5336 | assert(V.getNode() && "The single defined operand is empty!"); |
| 5337 | SmallVector<SDValue, 8> Opnds; |
| 5338 | for (unsigned i = 0, e = VTs.size(); i != e; ++i) { |
| 5339 | if (i != Idx) { |
| 5340 | Opnds.push_back(DAG.getUNDEF(VTs[i])); |
| 5341 | continue; |
| 5342 | } |
| 5343 | SDValue NV = DAG.getNode(ISD::TRUNCATE, V.getDebugLoc(), VTs[i], V); |
| 5344 | AddToWorkList(NV.getNode()); |
| 5345 | Opnds.push_back(NV); |
| 5346 | } |
| 5347 | return DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT, |
| 5348 | &Opnds[0], Opnds.size()); |
| 5349 | } |
| 5350 | } |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 5351 | |
| 5352 | // Simplify the operands using demanded-bits information. |
| 5353 | if (!VT.isVector() && |
| 5354 | SimplifyDemandedBits(SDValue(N, 0))) |
| 5355 | return SDValue(N, 0); |
| 5356 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 5357 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 5358 | } |
| 5359 | |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5360 | static SDNode *getBuildPairElt(SDNode *N, unsigned i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5361 | SDValue Elt = N->getOperand(i); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5362 | if (Elt.getOpcode() != ISD::MERGE_VALUES) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5363 | return Elt.getNode(); |
| 5364 | return Elt.getOperand(Elt.getResNo()).getNode(); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5365 | } |
| 5366 | |
| 5367 | /// CombineConsecutiveLoads - build_pair (load, load) -> load |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5368 | /// if load locations are consecutive. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5369 | SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) { |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5370 | assert(N->getOpcode() == ISD::BUILD_PAIR); |
| 5371 | |
Nate Begeman | abc0199 | 2009-06-05 21:37:30 +0000 | [diff] [blame] | 5372 | LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0)); |
| 5373 | LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1)); |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 5374 | if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() || |
| 5375 | LD1->getPointerInfo().getAddrSpace() != |
| 5376 | LD2->getPointerInfo().getAddrSpace()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5377 | return SDValue(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5378 | EVT LD1VT = LD1->getValueType(0); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5379 | |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5380 | if (ISD::isNON_EXTLoad(LD2) && |
| 5381 | LD2->hasOneUse() && |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5382 | // If both are volatile this would reduce the number of volatile loads. |
| 5383 | // 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] | 5384 | !LD1->isVolatile() && |
| 5385 | !LD2->isVolatile() && |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 5386 | DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) { |
Nate Begeman | abc0199 | 2009-06-05 21:37:30 +0000 | [diff] [blame] | 5387 | unsigned Align = LD1->getAlignment(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 5388 | unsigned NewAlign = TLI.getDataLayout()-> |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5389 | getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext())); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5390 | |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5391 | if (NewAlign <= Align && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5392 | (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) |
Nate Begeman | abc0199 | 2009-06-05 21:37:30 +0000 | [diff] [blame] | 5393 | return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 5394 | LD1->getBasePtr(), LD1->getPointerInfo(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5395 | false, false, false, Align); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5396 | } |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5397 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5398 | return SDValue(); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5399 | } |
| 5400 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5401 | SDValue DAGCombiner::visitBITCAST(SDNode *N) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5402 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5403 | EVT VT = N->getValueType(0); |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5404 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5405 | // If the input is a BUILD_VECTOR with all constant elements, fold this now. |
| 5406 | // Only do this before legalize, since afterward the target may be depending |
| 5407 | // on the bitconvert. |
| 5408 | // First check to see if this is all constant. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5409 | if (!LegalTypes && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5410 | N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5411 | VT.isVector()) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5412 | bool isSimple = true; |
| 5413 | for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) |
| 5414 | if (N0.getOperand(i).getOpcode() != ISD::UNDEF && |
| 5415 | N0.getOperand(i).getOpcode() != ISD::Constant && |
| 5416 | N0.getOperand(i).getOpcode() != ISD::ConstantFP) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5417 | isSimple = false; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5418 | break; |
| 5419 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5420 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5421 | EVT DestEltVT = N->getValueType(0).getVectorElementType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5422 | assert(!DestEltVT.isVector() && |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5423 | "Element type of vector ValueType must not be vector!"); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5424 | if (isSimple) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5425 | return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5426 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5427 | |
Dan Gohman | 3dd168d | 2008-09-05 01:58:21 +0000 | [diff] [blame] | 5428 | // If the input is a constant, let getNode fold it. |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5429 | if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5430 | SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0); |
Dan Gohman | a407ca1 | 2009-08-10 23:15:10 +0000 | [diff] [blame] | 5431 | if (Res.getNode() != N) { |
| 5432 | if (!LegalOperations || |
| 5433 | TLI.isOperationLegal(Res.getNode()->getOpcode(), VT)) |
| 5434 | return Res; |
| 5435 | |
| 5436 | // Folding it resulted in an illegal node, and it's too late to |
| 5437 | // do that. Clean up the old node and forego the transformation. |
| 5438 | // Ideally this won't happen very often, because instcombine |
| 5439 | // and the earlier dagcombine runs (where illegal nodes are |
| 5440 | // permitted) should have folded most of them already. |
| 5441 | DAG.DeleteNode(Res.getNode()); |
| 5442 | } |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5443 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5444 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5445 | // (conv (conv x, t1), t2) -> (conv x, t2) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5446 | if (N0.getOpcode() == ISD::BITCAST) |
| 5447 | return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5448 | N0.getOperand(0)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5449 | |
Chris Lattner | 5710410 | 2005-12-23 05:44:41 +0000 | [diff] [blame] | 5450 | // fold (conv (load x)) -> (load (conv*)x) |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 5451 | // 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] | 5452 | if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5453 | // Do not change the width of a volatile load. |
| 5454 | !cast<LoadSDNode>(N0)->isVolatile() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5455 | (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5456 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 5457 | unsigned Align = TLI.getDataLayout()-> |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5458 | getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext())); |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5459 | unsigned OrigAlign = LN0->getAlignment(); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5460 | |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5461 | if (Align <= OrigAlign) { |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5462 | SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 5463 | LN0->getBasePtr(), LN0->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 5464 | LN0->isVolatile(), LN0->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5465 | LN0->isInvariant(), OrigAlign); |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5466 | AddToWorkList(N); |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 5467 | CombineTo(N0.getNode(), |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5468 | DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5469 | N0.getValueType(), Load), |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 5470 | Load.getValue(1)); |
| 5471 | return Load; |
| 5472 | } |
Chris Lattner | 5710410 | 2005-12-23 05:44:41 +0000 | [diff] [blame] | 5473 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 5474 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5475 | // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit) |
| 5476 | // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit)) |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5477 | // This often reduces constant pool loads. |
Owen Anderson | 29f60f3 | 2012-04-02 22:10:29 +0000 | [diff] [blame] | 5478 | if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) || |
| 5479 | (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) && |
Nadav Rotem | 91a7e01 | 2012-09-13 14:54:28 +0000 | [diff] [blame] | 5480 | N0.getNode()->hasOneUse() && VT.isInteger() && |
| 5481 | !VT.isVector() && !N0.getValueType().isVector()) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5482 | SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5483 | N0.getOperand(0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5484 | AddToWorkList(NewConv.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5485 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5486 | APInt SignBit = APInt::getSignBit(VT.getSizeInBits()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5487 | if (N0.getOpcode() == ISD::FNEG) |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5488 | return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, |
| 5489 | NewConv, DAG.getConstant(SignBit, VT)); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5490 | assert(N0.getOpcode() == ISD::FABS); |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5491 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 5492 | NewConv, DAG.getConstant(~SignBit, VT)); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5493 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5494 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5495 | // fold (bitconvert (fcopysign cst, x)) -> |
| 5496 | // (or (and (bitconvert x), sign), (and cst, (not sign))) |
| 5497 | // Note that we don't handle (copysign x, cst) because this can always be |
| 5498 | // folded to an fneg or fabs. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5499 | if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() && |
Chris Lattner | f32aac3 | 2008-01-27 23:32:17 +0000 | [diff] [blame] | 5500 | isa<ConstantFPSDNode>(N0.getOperand(0)) && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5501 | VT.isInteger() && !VT.isVector()) { |
| 5502 | unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits(); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5503 | EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth); |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 5504 | if (isTypeLegal(IntXVT)) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5505 | SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5506 | IntXVT, N0.getOperand(1)); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5507 | AddToWorkList(X.getNode()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5508 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5509 | // If X has a different width than the result/lhs, sext it or truncate it. |
| 5510 | unsigned VTWidth = VT.getSizeInBits(); |
| 5511 | if (OrigXWidth < VTWidth) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5512 | X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5513 | AddToWorkList(X.getNode()); |
| 5514 | } else if (OrigXWidth > VTWidth) { |
| 5515 | // To get the sign bit in the right place, we have to shift it right |
| 5516 | // before truncating. |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5517 | X = DAG.getNode(ISD::SRL, X.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5518 | X.getValueType(), X, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5519 | DAG.getConstant(OrigXWidth-VTWidth, X.getValueType())); |
| 5520 | AddToWorkList(X.getNode()); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5521 | X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5522 | AddToWorkList(X.getNode()); |
| 5523 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5524 | |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5525 | APInt SignBit = APInt::getSignBit(VT.getSizeInBits()); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5526 | X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5527 | X, DAG.getConstant(SignBit, VT)); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5528 | AddToWorkList(X.getNode()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5529 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5530 | SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5531 | VT, N0.getOperand(0)); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 5532 | Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT, |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5533 | Cst, DAG.getConstant(~SignBit, VT)); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5534 | AddToWorkList(Cst.getNode()); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5535 | |
Bill Wendling | 67a6768 | 2009-01-30 22:44:24 +0000 | [diff] [blame] | 5536 | return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5537 | } |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 5538 | } |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5539 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 5540 | // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive. |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5541 | if (N0.getOpcode() == ISD::BUILD_PAIR) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5542 | SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT); |
| 5543 | if (CombineLD.getNode()) |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5544 | return CombineLD; |
| 5545 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5546 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5547 | return SDValue(); |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 5548 | } |
| 5549 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5550 | SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5551 | EVT VT = N->getValueType(0); |
Evan Cheng | 9bfa03c | 2008-05-12 23:04:07 +0000 | [diff] [blame] | 5552 | return CombineConsecutiveLoads(N, VT); |
| 5553 | } |
| 5554 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5555 | /// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5556 | /// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5557 | /// destination element value type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5558 | SDValue DAGCombiner:: |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5559 | ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5560 | EVT SrcEltVT = BV->getValueType(0).getVectorElementType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5561 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5562 | // If this is already the right type, we're done. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5563 | if (SrcEltVT == DstEltVT) return SDValue(BV, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5564 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5565 | unsigned SrcBitSize = SrcEltVT.getSizeInBits(); |
| 5566 | unsigned DstBitSize = DstEltVT.getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5567 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5568 | // If this is a conversion of N elements of one type to N elements of another |
| 5569 | // type, convert each element. This handles FP<->INT cases. |
| 5570 | if (SrcBitSize == DstBitSize) { |
Nate Begeman | e0efc21 | 2010-07-27 18:02:18 +0000 | [diff] [blame] | 5571 | EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, |
| 5572 | BV->getValueType(0).getVectorNumElements()); |
| 5573 | |
| 5574 | // Due to the FP element handling below calling this routine recursively, |
| 5575 | // we can end up with a scalar-to-vector node here. |
| 5576 | if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5577 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT, |
| 5578 | DAG.getNode(ISD::BITCAST, BV->getDebugLoc(), |
Nate Begeman | e0efc21 | 2010-07-27 18:02:18 +0000 | [diff] [blame] | 5579 | DstEltVT, BV->getOperand(0))); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5580 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5581 | SmallVector<SDValue, 8> Ops; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5582 | for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) { |
Bob Wilson | b1303d0 | 2009-04-13 22:05:19 +0000 | [diff] [blame] | 5583 | SDValue Op = BV->getOperand(i); |
| 5584 | // If the vector element type is not legal, the BUILD_VECTOR operands |
| 5585 | // are promoted and implicitly truncated. Make that explicit here. |
Bob Wilson | c885165 | 2009-04-20 17:27:09 +0000 | [diff] [blame] | 5586 | if (Op.getValueType() != SrcEltVT) |
| 5587 | Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5588 | Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(), |
Bob Wilson | b1303d0 | 2009-04-13 22:05:19 +0000 | [diff] [blame] | 5589 | DstEltVT, Op)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5590 | AddToWorkList(Ops.back().getNode()); |
Chris Lattner | 3e104b1 | 2006-04-08 04:15:24 +0000 | [diff] [blame] | 5591 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 5592 | return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT, |
| 5593 | &Ops[0], Ops.size()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5594 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5595 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5596 | // Otherwise, we're growing or shrinking the elements. To avoid having to |
| 5597 | // handle annoying details of growing/shrinking FP values, we convert them to |
| 5598 | // int first. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5599 | if (SrcEltVT.isFloatingPoint()) { |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5600 | // Convert the input float vector to a int vector where the elements are the |
| 5601 | // same sizes. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5602 | assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!"); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5603 | EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5604 | BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode(); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5605 | SrcEltVT = IntVT; |
| 5606 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5607 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5608 | // Now we know the input is an integer vector. If the output is a FP type, |
| 5609 | // convert to integer first, then to FP of the right size. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5610 | if (DstEltVT.isFloatingPoint()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5611 | assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!"); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5612 | EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5613 | SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5614 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5615 | // Next, convert to FP elements of the same size. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5616 | return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5617 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5618 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5619 | // Okay, we know the src/dst types are both integers of differing types. |
| 5620 | // Handling growing first. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5621 | assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5622 | if (SrcBitSize < DstBitSize) { |
| 5623 | unsigned NumInputsPerOutput = DstBitSize/SrcBitSize; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5624 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5625 | SmallVector<SDValue, 8> Ops; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5626 | for (unsigned i = 0, e = BV->getNumOperands(); i != e; |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5627 | i += NumInputsPerOutput) { |
| 5628 | bool isLE = TLI.isLittleEndian(); |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 5629 | APInt NewBits = APInt(DstBitSize, 0); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5630 | bool EltIsUndef = true; |
| 5631 | for (unsigned j = 0; j != NumInputsPerOutput; ++j) { |
| 5632 | // Shift the previously computed bits over. |
| 5633 | NewBits <<= SrcBitSize; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5634 | SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5635 | if (Op.getOpcode() == ISD::UNDEF) continue; |
| 5636 | EltIsUndef = false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5637 | |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5638 | NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue(). |
Dan Gohman | 58c2587 | 2010-04-12 02:24:01 +0000 | [diff] [blame] | 5639 | zextOrTrunc(SrcBitSize).zext(DstBitSize); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5640 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5641 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5642 | if (EltIsUndef) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 5643 | Ops.push_back(DAG.getUNDEF(DstEltVT)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5644 | else |
| 5645 | Ops.push_back(DAG.getConstant(NewBits, DstEltVT)); |
| 5646 | } |
| 5647 | |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5648 | EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size()); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 5649 | return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT, |
| 5650 | &Ops[0], Ops.size()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5651 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5652 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5653 | // Finally, this must be the case where we are shrinking elements: each input |
| 5654 | // turns into multiple outputs. |
Evan Cheng | efec751 | 2008-02-18 23:04:32 +0000 | [diff] [blame] | 5655 | bool isS2V = ISD::isScalarToVector(BV); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5656 | unsigned NumOutputsPerInput = SrcBitSize/DstBitSize; |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 5657 | EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, |
| 5658 | NumOutputsPerInput*BV->getNumOperands()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5659 | SmallVector<SDValue, 8> Ops; |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5660 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5661 | for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) { |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5662 | if (BV->getOperand(i).getOpcode() == ISD::UNDEF) { |
| 5663 | for (unsigned j = 0; j != NumOutputsPerInput; ++j) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 5664 | Ops.push_back(DAG.getUNDEF(DstEltVT)); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5665 | continue; |
| 5666 | } |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5667 | |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5668 | APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> |
| 5669 | getAPIntValue().zextOrTrunc(SrcBitSize); |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5670 | |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5671 | for (unsigned j = 0; j != NumOutputsPerInput; ++j) { |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5672 | APInt ThisVal = OpVal.trunc(DstBitSize); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5673 | Ops.push_back(DAG.getConstant(ThisVal, DstEltVT)); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 5674 | if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal) |
Evan Cheng | efec751 | 2008-02-18 23:04:32 +0000 | [diff] [blame] | 5675 | // Simply turn this into a SCALAR_TO_VECTOR of the new type. |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5676 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT, |
| 5677 | Ops[0]); |
Dan Gohman | 220a823 | 2008-03-03 23:51:38 +0000 | [diff] [blame] | 5678 | OpVal = OpVal.lshr(DstBitSize); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5679 | } |
| 5680 | |
| 5681 | // 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] | 5682 | if (TLI.isBigEndian()) |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5683 | std::reverse(Ops.end()-NumOutputsPerInput, Ops.end()); |
| 5684 | } |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5685 | |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 5686 | return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT, |
| 5687 | &Ops[0], Ops.size()); |
Chris Lattner | 6258fb2 | 2006-04-02 02:53:43 +0000 | [diff] [blame] | 5688 | } |
| 5689 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5690 | SDValue DAGCombiner::visitFADD(SDNode *N) { |
| 5691 | SDValue N0 = N->getOperand(0); |
| 5692 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5693 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 5694 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5695 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5696 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5697 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5698 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5699 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5700 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 5701 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5702 | |
Lang Hames | 0180694 | 2012-06-14 20:37:15 +0000 | [diff] [blame] | 5703 | // fold (fadd c1, c2) -> c1 + c2 |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 5704 | if (N0CFP && N1CFP) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5705 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1); |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5706 | // canonicalize constant to RHS |
| 5707 | if (N0CFP && !N1CFP) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5708 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0); |
| 5709 | // fold (fadd A, 0) -> A |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5710 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 5711 | N1CFP->getValueAPF().isZero()) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 5712 | return N0; |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5713 | // fold (fadd A, (fneg B)) -> (fsub A, B) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5714 | if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 5715 | isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5716 | return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5717 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5718 | // fold (fadd (fneg A), B) -> (fsub B, A) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5719 | if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 5720 | isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5721 | return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5722 | GetNegatedExpression(N0, DAG, LegalOperations)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5723 | |
Chris Lattner | ddae4bd | 2007-01-08 23:04:05 +0000 | [diff] [blame] | 5724 | // 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] | 5725 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 5726 | N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() && |
| 5727 | isa<ConstantFPSDNode>(N0.getOperand(1))) |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5728 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0), |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 5729 | DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5730 | N0.getOperand(1), N1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5731 | |
Owen Anderson | 607ebde | 2012-11-01 02:00:53 +0000 | [diff] [blame] | 5732 | // If allow, fold (fadd (fneg x), x) -> 0.0 |
| 5733 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5734 | N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1) { |
| 5735 | return DAG.getConstantFP(0.0, VT); |
| 5736 | } |
| 5737 | |
| 5738 | // If allow, fold (fadd x, (fneg x)) -> 0.0 |
| 5739 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5740 | N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0) { |
| 5741 | return DAG.getConstantFP(0.0, VT); |
| 5742 | } |
| 5743 | |
Owen Anderson | 43da6c7 | 2012-08-30 23:35:16 +0000 | [diff] [blame] | 5744 | // In unsafe math mode, we can fold chains of FADD's of the same value |
| 5745 | // into multiplications. This transform is not safe in general because |
| 5746 | // we are reducing the number of rounding steps. |
| 5747 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5748 | TLI.isOperationLegalOrCustom(ISD::FMUL, VT) && |
| 5749 | !N0CFP && !N1CFP) { |
| 5750 | if (N0.getOpcode() == ISD::FMUL) { |
| 5751 | ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0)); |
| 5752 | ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1)); |
| 5753 | |
| 5754 | // (fadd (fmul c, x), x) -> (fmul c+1, x) |
| 5755 | if (CFP00 && !CFP01 && N0.getOperand(1) == N1) { |
| 5756 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5757 | SDValue(CFP00, 0), |
| 5758 | DAG.getConstantFP(1.0, VT)); |
| 5759 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5760 | N1, NewCFP); |
| 5761 | } |
| 5762 | |
| 5763 | // (fadd (fmul x, c), x) -> (fmul c+1, x) |
| 5764 | if (CFP01 && !CFP00 && N0.getOperand(0) == N1) { |
| 5765 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5766 | SDValue(CFP01, 0), |
| 5767 | DAG.getConstantFP(1.0, VT)); |
| 5768 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5769 | N1, NewCFP); |
| 5770 | } |
| 5771 | |
| 5772 | // (fadd (fadd x, x), x) -> (fmul 3.0, x) |
| 5773 | if (!CFP00 && !CFP01 && N0.getOperand(0) == N0.getOperand(1) && |
| 5774 | N0.getOperand(0) == N1) { |
| 5775 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5776 | N1, DAG.getConstantFP(3.0, VT)); |
| 5777 | } |
| 5778 | |
| 5779 | // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x) |
| 5780 | if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD && |
| 5781 | N1.getOperand(0) == N1.getOperand(1) && |
| 5782 | N0.getOperand(1) == N1.getOperand(0)) { |
| 5783 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5784 | SDValue(CFP00, 0), |
| 5785 | DAG.getConstantFP(2.0, VT)); |
| 5786 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5787 | N0.getOperand(1), NewCFP); |
| 5788 | } |
| 5789 | |
| 5790 | // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x) |
| 5791 | if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD && |
| 5792 | N1.getOperand(0) == N1.getOperand(1) && |
| 5793 | N0.getOperand(0) == N1.getOperand(0)) { |
| 5794 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5795 | SDValue(CFP01, 0), |
| 5796 | DAG.getConstantFP(2.0, VT)); |
| 5797 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5798 | N0.getOperand(0), NewCFP); |
| 5799 | } |
| 5800 | } |
| 5801 | |
| 5802 | if (N1.getOpcode() == ISD::FMUL) { |
| 5803 | ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0)); |
| 5804 | ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1)); |
| 5805 | |
| 5806 | // (fadd x, (fmul c, x)) -> (fmul c+1, x) |
| 5807 | if (CFP10 && !CFP11 && N1.getOperand(1) == N0) { |
| 5808 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5809 | SDValue(CFP10, 0), |
| 5810 | DAG.getConstantFP(1.0, VT)); |
| 5811 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5812 | N0, NewCFP); |
| 5813 | } |
| 5814 | |
| 5815 | // (fadd x, (fmul x, c)) -> (fmul c+1, x) |
| 5816 | if (CFP11 && !CFP10 && N1.getOperand(0) == N0) { |
| 5817 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5818 | SDValue(CFP11, 0), |
| 5819 | DAG.getConstantFP(1.0, VT)); |
| 5820 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5821 | N0, NewCFP); |
| 5822 | } |
| 5823 | |
| 5824 | // (fadd x, (fadd x, x)) -> (fmul 3.0, x) |
| 5825 | if (!CFP10 && !CFP11 && N1.getOperand(0) == N1.getOperand(1) && |
| 5826 | N1.getOperand(0) == N0) { |
| 5827 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5828 | N0, DAG.getConstantFP(3.0, VT)); |
| 5829 | } |
| 5830 | |
| 5831 | // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x) |
| 5832 | if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD && |
| 5833 | N1.getOperand(0) == N1.getOperand(1) && |
| 5834 | N0.getOperand(1) == N1.getOperand(0)) { |
| 5835 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5836 | SDValue(CFP10, 0), |
| 5837 | DAG.getConstantFP(2.0, VT)); |
| 5838 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5839 | N0.getOperand(1), NewCFP); |
| 5840 | } |
| 5841 | |
| 5842 | // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x) |
| 5843 | if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD && |
| 5844 | N1.getOperand(0) == N1.getOperand(1) && |
| 5845 | N0.getOperand(0) == N1.getOperand(0)) { |
| 5846 | SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, |
| 5847 | SDValue(CFP11, 0), |
| 5848 | DAG.getConstantFP(2.0, VT)); |
| 5849 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5850 | N0.getOperand(0), NewCFP); |
| 5851 | } |
| 5852 | } |
| 5853 | |
| 5854 | // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x) |
| 5855 | if (N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD && |
| 5856 | N0.getOperand(0) == N0.getOperand(1) && |
| 5857 | N1.getOperand(0) == N1.getOperand(1) && |
| 5858 | N0.getOperand(0) == N1.getOperand(0)) { |
| 5859 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 5860 | N0.getOperand(0), |
| 5861 | DAG.getConstantFP(4.0, VT)); |
| 5862 | } |
| 5863 | } |
| 5864 | |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5865 | // FADD -> FMA combines: |
Lang Hames | e023141 | 2012-06-22 01:09:09 +0000 | [diff] [blame] | 5866 | if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast || |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5867 | DAG.getTarget().Options.UnsafeFPMath) && |
| 5868 | DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) && |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5869 | TLI.isOperationLegalOrCustom(ISD::FMA, VT)) { |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5870 | |
| 5871 | // fold (fadd (fmul x, y), z) -> (fma x, y, z) |
| 5872 | if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) { |
| 5873 | return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, |
| 5874 | N0.getOperand(0), N0.getOperand(1), N1); |
| 5875 | } |
Owen Anderson | 43da6c7 | 2012-08-30 23:35:16 +0000 | [diff] [blame] | 5876 | |
Michael Liao | b79bff5 | 2012-09-01 04:09:16 +0000 | [diff] [blame] | 5877 | // fold (fadd x, (fmul y, z)) -> (fma y, z, x) |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5878 | // Note: Commutes FADD operands. |
| 5879 | if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) { |
| 5880 | return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, |
| 5881 | N1.getOperand(0), N1.getOperand(1), N0); |
| 5882 | } |
| 5883 | } |
| 5884 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5885 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 5886 | } |
| 5887 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5888 | SDValue DAGCombiner::visitFSUB(SDNode *N) { |
| 5889 | SDValue N0 = N->getOperand(0); |
| 5890 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5891 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 5892 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5893 | EVT VT = N->getValueType(0); |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5894 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5895 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5896 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5897 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5898 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5899 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 5900 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5901 | |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5902 | // fold (fsub c1, c2) -> c1-c2 |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 5903 | if (N0CFP && N1CFP) |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 5904 | return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1); |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5905 | // fold (fsub A, 0) -> A |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5906 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5907 | N1CFP && N1CFP->getValueAPF().isZero()) |
Dan Gohman | a90c8e6 | 2009-01-23 19:10:37 +0000 | [diff] [blame] | 5908 | return N0; |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5909 | // fold (fsub 0, B) -> -B |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 5910 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 5911 | N0CFP && N0CFP->getValueAPF().isZero()) { |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5912 | if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5913 | return GetNegatedExpression(N1, DAG, LegalOperations); |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 5914 | if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5915 | return DAG.getNode(ISD::FNEG, dl, VT, N1); |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 5916 | } |
Bill Wendling | b0162f5 | 2009-01-30 22:53:48 +0000 | [diff] [blame] | 5917 | // fold (fsub A, (fneg B)) -> (fadd A, B) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5918 | if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options)) |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5919 | return DAG.getNode(ISD::FADD, dl, VT, N0, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 5920 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5921 | |
Bill Wendling | 5a89434 | 2012-03-15 05:12:00 +0000 | [diff] [blame] | 5922 | // If 'unsafe math' is enabled, fold |
Owen Anderson | 713e953 | 2012-05-07 20:51:25 +0000 | [diff] [blame] | 5923 | // (fsub x, x) -> 0.0 & |
Bill Wendling | 5a89434 | 2012-03-15 05:12:00 +0000 | [diff] [blame] | 5924 | // (fsub x, (fadd x, y)) -> (fneg y) & |
| 5925 | // (fsub x, (fadd y, x)) -> (fneg y) |
| 5926 | if (DAG.getTarget().Options.UnsafeFPMath) { |
Owen Anderson | 713e953 | 2012-05-07 20:51:25 +0000 | [diff] [blame] | 5927 | if (N0 == N1) |
| 5928 | return DAG.getConstantFP(0.0f, VT); |
| 5929 | |
Bill Wendling | 5a89434 | 2012-03-15 05:12:00 +0000 | [diff] [blame] | 5930 | if (N1.getOpcode() == ISD::FADD) { |
| 5931 | SDValue N10 = N1->getOperand(0); |
| 5932 | SDValue N11 = N1->getOperand(1); |
| 5933 | |
| 5934 | if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI, |
| 5935 | &DAG.getTarget().Options)) |
| 5936 | return GetNegatedExpression(N11, DAG, LegalOperations); |
| 5937 | else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI, |
| 5938 | &DAG.getTarget().Options)) |
| 5939 | return GetNegatedExpression(N10, DAG, LegalOperations); |
| 5940 | } |
| 5941 | } |
| 5942 | |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5943 | // FSUB -> FMA combines: |
Lang Hames | e023141 | 2012-06-22 01:09:09 +0000 | [diff] [blame] | 5944 | if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast || |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5945 | DAG.getTarget().Options.UnsafeFPMath) && |
| 5946 | DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) && |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5947 | TLI.isOperationLegalOrCustom(ISD::FMA, VT)) { |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5948 | |
| 5949 | // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z)) |
| 5950 | if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) { |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5951 | return DAG.getNode(ISD::FMA, dl, VT, |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5952 | N0.getOperand(0), N0.getOperand(1), |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5953 | DAG.getNode(ISD::FNEG, dl, VT, N1)); |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5954 | } |
| 5955 | |
| 5956 | // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x) |
| 5957 | // Note: Commutes FSUB operands. |
| 5958 | if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) { |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5959 | return DAG.getNode(ISD::FMA, dl, VT, |
| 5960 | DAG.getNode(ISD::FNEG, dl, VT, |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5961 | N1.getOperand(0)), |
| 5962 | N1.getOperand(1), N0); |
| 5963 | } |
Elena Demikhovsky | 1503aba | 2012-08-01 12:06:00 +0000 | [diff] [blame] | 5964 | |
| 5965 | // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z)) |
| 5966 | if (N0.getOpcode() == ISD::FNEG && |
| 5967 | N0.getOperand(0).getOpcode() == ISD::FMUL && |
| 5968 | N0->hasOneUse() && N0.getOperand(0).hasOneUse()) { |
| 5969 | SDValue N00 = N0.getOperand(0).getOperand(0); |
| 5970 | SDValue N01 = N0.getOperand(0).getOperand(1); |
| 5971 | return DAG.getNode(ISD::FMA, dl, VT, |
| 5972 | DAG.getNode(ISD::FNEG, dl, VT, N00), N01, |
| 5973 | DAG.getNode(ISD::FNEG, dl, VT, N1)); |
| 5974 | } |
Lang Hames | d693caf | 2012-06-19 22:51:23 +0000 | [diff] [blame] | 5975 | } |
| 5976 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5977 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 5978 | } |
| 5979 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5980 | SDValue DAGCombiner::visitFMUL(SDNode *N) { |
| 5981 | SDValue N0 = N->getOperand(0); |
| 5982 | SDValue N1 = N->getOperand(1); |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 5983 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 5984 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5985 | EVT VT = N->getValueType(0); |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 5986 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 5987 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5988 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5989 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5990 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5991 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 5992 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5993 | |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 5994 | // fold (fmul c1, c2) -> c1*c2 |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 5995 | if (N0CFP && N1CFP) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 5996 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1); |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 5997 | // canonicalize constant to RHS |
Nate Begeman | a0e221d | 2005-10-18 00:28:13 +0000 | [diff] [blame] | 5998 | if (N0CFP && !N1CFP) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 5999 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0); |
| 6000 | // fold (fmul A, 0) -> 0 |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6001 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 6002 | N1CFP && N1CFP->getValueAPF().isZero()) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6003 | return N1; |
Dan Gohman | 77b81fe | 2009-06-04 17:12:12 +0000 | [diff] [blame] | 6004 | // fold (fmul A, 0) -> 0, vector edition. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6005 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 6006 | ISD::isBuildVectorAllZeros(N1.getNode())) |
Dan Gohman | 77b81fe | 2009-06-04 17:12:12 +0000 | [diff] [blame] | 6007 | return N1; |
Owen Anderson | 363e4b9 | 2012-05-02 21:32:35 +0000 | [diff] [blame] | 6008 | // fold (fmul A, 1.0) -> A |
| 6009 | if (N1CFP && N1CFP->isExactlyValue(1.0)) |
| 6010 | return N0; |
Nate Begeman | 11af4ea | 2005-10-17 20:40:11 +0000 | [diff] [blame] | 6011 | // fold (fmul X, 2.0) -> (fadd X, X) |
| 6012 | if (N1CFP && N1CFP->isExactlyValue(+2.0)) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6013 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0); |
Dan Gohman | eb1fedc | 2009-08-10 16:50:32 +0000 | [diff] [blame] | 6014 | // fold (fmul X, -1.0) -> (fneg X) |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6015 | if (N1CFP && N1CFP->isExactlyValue(-1.0)) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6016 | if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6017 | return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6018 | |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6019 | // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6020 | if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6021 | &DAG.getTarget().Options)) { |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6022 | if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6023 | &DAG.getTarget().Options)) { |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6024 | // Both can be negated for free, check to see if at least one is cheaper |
| 6025 | // negated. |
| 6026 | if (LHSNeg == 2 || RHSNeg == 2) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6027 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6028 | GetNegatedExpression(N0, DAG, LegalOperations), |
| 6029 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6030 | } |
| 6031 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6032 | |
Chris Lattner | ddae4bd | 2007-01-08 23:04:05 +0000 | [diff] [blame] | 6033 | // 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] | 6034 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 6035 | N1CFP && N0.getOpcode() == ISD::FMUL && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6036 | N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1))) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6037 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6038 | DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
Dale Johannesen | de06470 | 2009-02-06 21:50:26 +0000 | [diff] [blame] | 6039 | N0.getOperand(1), N1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6040 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6041 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6042 | } |
| 6043 | |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 6044 | SDValue DAGCombiner::visitFMA(SDNode *N) { |
| 6045 | SDValue N0 = N->getOperand(0); |
| 6046 | SDValue N1 = N->getOperand(1); |
| 6047 | SDValue N2 = N->getOperand(2); |
| 6048 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6049 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
| 6050 | EVT VT = N->getValueType(0); |
Owen Anderson | 58d5729 | 2012-09-01 06:04:27 +0000 | [diff] [blame] | 6051 | DebugLoc dl = N->getDebugLoc(); |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 6052 | |
Owen Anderson | 607ebde | 2012-11-01 02:00:53 +0000 | [diff] [blame] | 6053 | if (DAG.getTarget().Options.UnsafeFPMath) { |
| 6054 | if (N0CFP && N0CFP->isZero()) |
| 6055 | return N2; |
| 6056 | if (N1CFP && N1CFP->isZero()) |
| 6057 | return N2; |
| 6058 | } |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 6059 | if (N0CFP && N0CFP->isExactlyValue(1.0)) |
| 6060 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2); |
| 6061 | if (N1CFP && N1CFP->isExactlyValue(1.0)) |
| 6062 | return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2); |
| 6063 | |
Owen Anderson | 85ef6f4 | 2012-05-30 18:50:39 +0000 | [diff] [blame] | 6064 | // Canonicalize (fma c, x, y) -> (fma x, c, y) |
Owen Anderson | f917d20 | 2012-05-30 18:54:50 +0000 | [diff] [blame] | 6065 | if (N0CFP && !N1CFP) |
Owen Anderson | 85ef6f4 | 2012-05-30 18:50:39 +0000 | [diff] [blame] | 6066 | return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2); |
| 6067 | |
Owen Anderson | 58d5729 | 2012-09-01 06:04:27 +0000 | [diff] [blame] | 6068 | // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2) |
| 6069 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 6070 | N2.getOpcode() == ISD::FMUL && |
| 6071 | N0 == N2.getOperand(0) && |
| 6072 | N2.getOperand(1).getOpcode() == ISD::ConstantFP) { |
| 6073 | return DAG.getNode(ISD::FMUL, dl, VT, N0, |
| 6074 | DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1))); |
| 6075 | } |
| 6076 | |
| 6077 | |
| 6078 | // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y) |
| 6079 | if (DAG.getTarget().Options.UnsafeFPMath && |
| 6080 | N0.getOpcode() == ISD::FMUL && N1CFP && |
| 6081 | N0.getOperand(1).getOpcode() == ISD::ConstantFP) { |
| 6082 | return DAG.getNode(ISD::FMA, dl, VT, |
| 6083 | N0.getOperand(0), |
| 6084 | DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)), |
| 6085 | N2); |
| 6086 | } |
| 6087 | |
| 6088 | // (fma x, 1, y) -> (fadd x, y) |
| 6089 | // (fma x, -1, y) -> (fadd (fneg x), y) |
| 6090 | if (N1CFP) { |
| 6091 | if (N1CFP->isExactlyValue(1.0)) |
| 6092 | return DAG.getNode(ISD::FADD, dl, VT, N0, N2); |
| 6093 | |
| 6094 | if (N1CFP->isExactlyValue(-1.0) && |
| 6095 | (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) { |
| 6096 | SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0); |
| 6097 | AddToWorkList(RHSNeg.getNode()); |
| 6098 | return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg); |
| 6099 | } |
| 6100 | } |
| 6101 | |
| 6102 | // (fma x, c, x) -> (fmul x, (c+1)) |
| 6103 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) { |
| 6104 | return DAG.getNode(ISD::FMUL, dl, VT, |
| 6105 | N0, |
| 6106 | DAG.getNode(ISD::FADD, dl, VT, |
| 6107 | N1, DAG.getConstantFP(1.0, VT))); |
| 6108 | } |
| 6109 | |
| 6110 | // (fma x, c, (fneg x)) -> (fmul x, (c-1)) |
| 6111 | if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && |
| 6112 | N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) { |
| 6113 | return DAG.getNode(ISD::FMUL, dl, VT, |
| 6114 | N0, |
| 6115 | DAG.getNode(ISD::FADD, dl, VT, |
| 6116 | N1, DAG.getConstantFP(-1.0, VT))); |
| 6117 | } |
| 6118 | |
| 6119 | |
Owen Anderson | 062c0a5 | 2012-05-02 22:17:40 +0000 | [diff] [blame] | 6120 | return SDValue(); |
| 6121 | } |
| 6122 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6123 | SDValue DAGCombiner::visitFDIV(SDNode *N) { |
| 6124 | SDValue N0 = N->getOperand(0); |
| 6125 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6126 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6127 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6128 | EVT VT = N->getValueType(0); |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6129 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6130 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6131 | // fold vector ops |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6132 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6133 | SDValue FoldedVOp = SimplifyVBinOp(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6134 | if (FoldedVOp.getNode()) return FoldedVOp; |
Dan Gohman | 05d92fe | 2007-07-13 20:03:40 +0000 | [diff] [blame] | 6135 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6136 | |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6137 | // fold (fdiv c1, c2) -> c1/c2 |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6138 | if (N0CFP && N1CFP) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6139 | return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6140 | |
Duncan Sands | 3ef3fcf | 2012-04-08 18:08:12 +0000 | [diff] [blame] | 6141 | // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable. |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6142 | if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) { |
Duncan Sands | 961d666 | 2012-04-07 20:04:00 +0000 | [diff] [blame] | 6143 | // Compute the reciprocal 1.0 / c2. |
| 6144 | APFloat N1APF = N1CFP->getValueAPF(); |
| 6145 | APFloat Recip(N1APF.getSemantics(), 1); // 1.0 |
| 6146 | APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven); |
Duncan Sands | 507bb7a | 2012-04-10 20:35:27 +0000 | [diff] [blame] | 6147 | // Only do the transform if the reciprocal is a legal fp immediate that |
| 6148 | // isn't too nasty (eg NaN, denormal, ...). |
| 6149 | if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty |
Anton Korobeynikov | 999821c | 2012-04-10 13:22:49 +0000 | [diff] [blame] | 6150 | (!LegalOperations || |
| 6151 | // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM |
| 6152 | // backend)... we should handle this gracefully after Legalize. |
| 6153 | // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) || |
| 6154 | TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) || |
| 6155 | TLI.isFPImmLegal(Recip, VT))) |
Duncan Sands | 961d666 | 2012-04-07 20:04:00 +0000 | [diff] [blame] | 6156 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, |
| 6157 | DAG.getConstantFP(Recip, VT)); |
| 6158 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6159 | |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6160 | // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y) |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6161 | if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6162 | &DAG.getTarget().Options)) { |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6163 | if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 6164 | &DAG.getTarget().Options)) { |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6165 | // Both can be negated for free, check to see if at least one is cheaper |
| 6166 | // negated. |
| 6167 | if (LHSNeg == 2 || RHSNeg == 2) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6168 | return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6169 | GetNegatedExpression(N0, DAG, LegalOperations), |
| 6170 | GetNegatedExpression(N1, DAG, LegalOperations)); |
Chris Lattner | 2944652 | 2007-05-14 22:04:50 +0000 | [diff] [blame] | 6171 | } |
| 6172 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6173 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6174 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6175 | } |
| 6176 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6177 | SDValue DAGCombiner::visitFREM(SDNode *N) { |
| 6178 | SDValue N0 = N->getOperand(0); |
| 6179 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6180 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6181 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6182 | EVT VT = N->getValueType(0); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6183 | |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6184 | // fold (frem c1, c2) -> fmod(c1,c2) |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6185 | if (N0CFP && N1CFP) |
Bill Wendling | a03e74b | 2009-01-30 22:57:07 +0000 | [diff] [blame] | 6186 | return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6187 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6188 | return SDValue(); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 6189 | } |
| 6190 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6191 | SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) { |
| 6192 | SDValue N0 = N->getOperand(0); |
| 6193 | SDValue N1 = N->getOperand(1); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6194 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6195 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6196 | EVT VT = N->getValueType(0); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6197 | |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6198 | if (N0CFP && N1CFP) // Constant fold |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 6199 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6200 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6201 | if (N1CFP) { |
Dale Johannesen | e6c1742 | 2007-08-26 01:18:27 +0000 | [diff] [blame] | 6202 | const APFloat& V = N1CFP->getValueAPF(); |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 6203 | // copysign(x, c1) -> fabs(x) iff ispos(c1) |
| 6204 | // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1) |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6205 | if (!V.isNegative()) { |
| 6206 | if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6207 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0); |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6208 | } else { |
| 6209 | if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6210 | return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 6211 | DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0)); |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 6212 | } |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6213 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6214 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6215 | // copysign(fabs(x), y) -> copysign(x, y) |
| 6216 | // copysign(fneg(x), y) -> copysign(x, y) |
| 6217 | // copysign(copysign(x,z), y) -> copysign(x, y) |
| 6218 | if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG || |
| 6219 | N0.getOpcode() == ISD::FCOPYSIGN) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6220 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6221 | N0.getOperand(0), N1); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6222 | |
| 6223 | // copysign(x, abs(y)) -> abs(x) |
| 6224 | if (N1.getOpcode() == ISD::FABS) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6225 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6226 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6227 | // copysign(x, copysign(y,z)) -> copysign(x, z) |
| 6228 | if (N1.getOpcode() == ISD::FCOPYSIGN) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6229 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6230 | N0, N1.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6231 | |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6232 | // copysign(x, fp_extend(y)) -> copysign(x, y) |
| 6233 | // copysign(x, fp_round(y)) -> copysign(x, y) |
| 6234 | if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6235 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6236 | N0, N1.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6237 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6238 | return SDValue(); |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6239 | } |
| 6240 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6241 | SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) { |
| 6242 | SDValue N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6243 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6244 | EVT VT = N->getValueType(0); |
| 6245 | EVT OpVT = N0.getValueType(); |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6246 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6247 | // fold (sint_to_fp c1) -> c1fp |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6248 | if (N0C && |
Stuart Hastings | 7e33418 | 2011-03-02 19:36:30 +0000 | [diff] [blame] | 6249 | // ...but only if the target supports immediate floating-point values |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6250 | (!LegalOperations || |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 6251 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6252 | return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6253 | |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6254 | // If the input is a legal type, and SINT_TO_FP is not legal on this target, |
| 6255 | // but UINT_TO_FP is legal on this target, try to convert. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 6256 | if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) && |
| 6257 | TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6258 | // 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] | 6259 | if (DAG.SignBitIsZero(N0)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6260 | return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0); |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6261 | } |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6262 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6263 | // The next optimizations are desireable only if SELECT_CC can be lowered. |
| 6264 | // Check against MVT::Other for SELECT_CC, which is a workaround for targets |
| 6265 | // having to say they don't support SELECT_CC on every type the DAG knows |
| 6266 | // about, since there is no way to mark an opcode illegal at all value types |
| 6267 | // (See also visitSELECT) |
| 6268 | if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) { |
| 6269 | // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc) |
| 6270 | if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 && |
| 6271 | !VT.isVector() && |
| 6272 | (!LegalOperations || |
| 6273 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { |
| 6274 | SDValue Ops[] = |
| 6275 | { N0.getOperand(0), N0.getOperand(1), |
| 6276 | DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT), |
| 6277 | N0.getOperand(2) }; |
| 6278 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5); |
| 6279 | } |
Owen Anderson | d9bf71f | 2012-07-09 20:31:12 +0000 | [diff] [blame] | 6280 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6281 | // fold (sint_to_fp (zext (setcc x, y, cc))) -> |
| 6282 | // (select_cc x, y, 1.0, 0.0,, cc) |
| 6283 | if (N0.getOpcode() == ISD::ZERO_EXTEND && |
| 6284 | N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() && |
| 6285 | (!LegalOperations || |
| 6286 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { |
| 6287 | SDValue Ops[] = |
| 6288 | { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1), |
| 6289 | DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT), |
| 6290 | N0.getOperand(0).getOperand(2) }; |
| 6291 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5); |
| 6292 | } |
Owen Anderson | d9bf71f | 2012-07-09 20:31:12 +0000 | [diff] [blame] | 6293 | } |
| 6294 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6295 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6296 | } |
| 6297 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6298 | SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) { |
| 6299 | SDValue N0 = N->getOperand(0); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6300 | ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6301 | EVT VT = N->getValueType(0); |
| 6302 | EVT OpVT = N0.getValueType(); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6303 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6304 | // fold (uint_to_fp c1) -> c1fp |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6305 | if (N0C && |
Stuart Hastings | 7e33418 | 2011-03-02 19:36:30 +0000 | [diff] [blame] | 6306 | // ...but only if the target supports immediate floating-point values |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6307 | (!LegalOperations || |
Evan Cheng | 9568e5c | 2011-06-21 06:01:08 +0000 | [diff] [blame] | 6308 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6309 | return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6310 | |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6311 | // If the input is a legal type, and UINT_TO_FP is not legal on this target, |
| 6312 | // but SINT_TO_FP is legal on this target, try to convert. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 6313 | if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) && |
| 6314 | TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6315 | // 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] | 6316 | if (DAG.SignBitIsZero(N0)) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6317 | return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0); |
Chris Lattner | cda8875 | 2008-06-26 00:16:49 +0000 | [diff] [blame] | 6318 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6319 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6320 | // The next optimizations are desireable only if SELECT_CC can be lowered. |
| 6321 | // Check against MVT::Other for SELECT_CC, which is a workaround for targets |
| 6322 | // having to say they don't support SELECT_CC on every type the DAG knows |
| 6323 | // about, since there is no way to mark an opcode illegal at all value types |
| 6324 | // (See also visitSELECT) |
| 6325 | if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) { |
| 6326 | // 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] | 6327 | |
Nadav Rotem | ed1a335 | 2012-07-23 07:59:50 +0000 | [diff] [blame] | 6328 | if (N0.getOpcode() == ISD::SETCC && !VT.isVector() && |
| 6329 | (!LegalOperations || |
| 6330 | TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { |
| 6331 | SDValue Ops[] = |
| 6332 | { N0.getOperand(0), N0.getOperand(1), |
| 6333 | DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT), |
| 6334 | N0.getOperand(2) }; |
| 6335 | return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5); |
| 6336 | } |
| 6337 | } |
Owen Anderson | d9bf71f | 2012-07-09 20:31:12 +0000 | [diff] [blame] | 6338 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6339 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6340 | } |
| 6341 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6342 | SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) { |
| 6343 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6344 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6345 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6346 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6347 | // fold (fp_to_sint c1fp) -> c1 |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6348 | if (N0CFP) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6349 | return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0); |
| 6350 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6351 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6352 | } |
| 6353 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6354 | SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) { |
| 6355 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6356 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6357 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6358 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6359 | // fold (fp_to_uint c1fp) -> c1 |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6360 | if (N0CFP) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6361 | return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0); |
| 6362 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6363 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6364 | } |
| 6365 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6366 | SDValue DAGCombiner::visitFP_ROUND(SDNode *N) { |
| 6367 | SDValue N0 = N->getOperand(0); |
| 6368 | SDValue N1 = N->getOperand(1); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6369 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6370 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6371 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6372 | // fold (fp_round c1fp) -> c1fp |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6373 | if (N0CFP) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6374 | return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6375 | |
Chris Lattner | 79dbea5 | 2006-03-13 06:26:26 +0000 | [diff] [blame] | 6376 | // fold (fp_round (fp_extend x)) -> x |
| 6377 | if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType()) |
| 6378 | return N0.getOperand(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6379 | |
Chris Lattner | 0aa5e6f | 2008-01-24 06:45:35 +0000 | [diff] [blame] | 6380 | // fold (fp_round (fp_round x)) -> (fp_round x) |
| 6381 | if (N0.getOpcode() == ISD::FP_ROUND) { |
| 6382 | // This is a value preserving truncation if both round's are. |
| 6383 | bool IsTrunc = N->getConstantOperandVal(1) == 1 && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6384 | N0.getNode()->getConstantOperandVal(1) == 1; |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6385 | return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0), |
Chris Lattner | 0aa5e6f | 2008-01-24 06:45:35 +0000 | [diff] [blame] | 6386 | DAG.getIntPtrConstant(IsTrunc)); |
| 6387 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6388 | |
Chris Lattner | 79dbea5 | 2006-03-13 06:26:26 +0000 | [diff] [blame] | 6389 | // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6390 | if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) { |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6391 | SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT, |
| 6392 | N0.getOperand(0), N1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6393 | AddToWorkList(Tmp.getNode()); |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6394 | return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, |
| 6395 | Tmp, N0.getOperand(1)); |
Chris Lattner | 79dbea5 | 2006-03-13 06:26:26 +0000 | [diff] [blame] | 6396 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6397 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6398 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6399 | } |
| 6400 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6401 | SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) { |
| 6402 | SDValue N0 = N->getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6403 | EVT VT = N->getValueType(0); |
| 6404 | EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT(); |
Nate Begeman | 646d7e2 | 2005-09-02 21:18:40 +0000 | [diff] [blame] | 6405 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6406 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6407 | // fold (fp_round_inreg c1fp) -> c1fp |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 6408 | if (N0CFP && isTypeLegal(EVT)) { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 6409 | SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT); |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6410 | return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6411 | } |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6412 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6413 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6414 | } |
| 6415 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6416 | SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) { |
| 6417 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6418 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6419 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6420 | |
Chris Lattner | 5938bef | 2007-12-29 06:55:23 +0000 | [diff] [blame] | 6421 | // 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] | 6422 | if (N->hasOneUse() && |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 6423 | N->use_begin()->getOpcode() == ISD::FP_ROUND) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6424 | return SDValue(); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6425 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6426 | // fold (fp_extend c1fp) -> c1fp |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6427 | if (N0CFP) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6428 | return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6429 | |
| 6430 | // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the |
| 6431 | // value of X. |
Gabor Greif | 12632d2 | 2008-08-30 19:29:20 +0000 | [diff] [blame] | 6432 | if (N0.getOpcode() == ISD::FP_ROUND |
| 6433 | && N0.getNode()->getConstantOperandVal(1) == 1) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6434 | SDValue In = N0.getOperand(0); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6435 | if (In.getValueType() == VT) return In; |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6436 | if (VT.bitsLT(In.getValueType())) |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6437 | return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, |
| 6438 | In, N0.getOperand(1)); |
| 6439 | return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6440 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6441 | |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6442 | // fold (fpext (load x)) -> (fpext (fptrunc (extload x))) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6443 | if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6444 | ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 6445 | TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6446 | LoadSDNode *LN0 = cast<LoadSDNode>(N0); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 6447 | SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT, |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6448 | LN0->getChain(), |
Chris Lattner | 3d6ccfb | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 6449 | LN0->getBasePtr(), LN0->getPointerInfo(), |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6450 | N0.getValueType(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 6451 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 6452 | LN0->getAlignment()); |
Chris Lattner | e564dbb | 2006-05-05 21:34:35 +0000 | [diff] [blame] | 6453 | CombineTo(N, ExtLoad); |
Bill Wendling | 0225a1d | 2009-01-30 23:15:49 +0000 | [diff] [blame] | 6454 | CombineTo(N0.getNode(), |
| 6455 | DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), |
| 6456 | N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)), |
Chris Lattner | e564dbb | 2006-05-05 21:34:35 +0000 | [diff] [blame] | 6457 | ExtLoad.getValue(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6458 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Chris Lattner | e564dbb | 2006-05-05 21:34:35 +0000 | [diff] [blame] | 6459 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 6460 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6461 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6462 | } |
| 6463 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6464 | SDValue DAGCombiner::visitFNEG(SDNode *N) { |
| 6465 | SDValue N0 = N->getOperand(0); |
Anton Korobeynikov | 2bcf60a | 2009-10-20 21:37:45 +0000 | [diff] [blame] | 6466 | EVT VT = N->getValueType(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6467 | |
Craig Topper | dd201ff | 2012-09-11 01:45:21 +0000 | [diff] [blame] | 6468 | if (VT.isVector()) { |
| 6469 | SDValue FoldedVOp = SimplifyVUnaryOp(N); |
| 6470 | if (FoldedVOp.getNode()) return FoldedVOp; |
Craig Topper | 956342b | 2012-09-09 22:58:45 +0000 | [diff] [blame] | 6471 | } |
| 6472 | |
Owen Anderson | afd3d56 | 2012-03-06 00:29:31 +0000 | [diff] [blame] | 6473 | if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(), |
| 6474 | &DAG.getTarget().Options)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 6475 | return GetNegatedExpression(N0, DAG, LegalOperations); |
Dan Gohman | 23ff182 | 2007-07-02 15:48:56 +0000 | [diff] [blame] | 6476 | |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6477 | // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading |
| 6478 | // constant pool values. |
Owen Anderson | 29f60f3 | 2012-04-02 22:10:29 +0000 | [diff] [blame] | 6479 | if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST && |
Anton Korobeynikov | 2bcf60a | 2009-10-20 21:37:45 +0000 | [diff] [blame] | 6480 | !VT.isVector() && |
| 6481 | N0.getNode()->hasOneUse() && |
| 6482 | N0.getOperand(0).getValueType().isInteger()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6483 | SDValue Int = N0.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6484 | EVT IntVT = Int.getValueType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6485 | if (IntVT.isInteger() && !IntVT.isVector()) { |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 6486 | Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int, |
| 6487 | DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6488 | AddToWorkList(Int.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6489 | return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), |
Anton Korobeynikov | 2bcf60a | 2009-10-20 21:37:45 +0000 | [diff] [blame] | 6490 | VT, Int); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6491 | } |
| 6492 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6493 | |
Owen Anderson | 58d5729 | 2012-09-01 06:04:27 +0000 | [diff] [blame] | 6494 | // (fneg (fmul c, x)) -> (fmul -c, x) |
| 6495 | if (N0.getOpcode() == ISD::FMUL) { |
| 6496 | ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1)); |
| 6497 | if (CFP1) { |
| 6498 | return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, |
| 6499 | N0.getOperand(0), |
| 6500 | DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, |
| 6501 | N0.getOperand(1))); |
| 6502 | } |
| 6503 | } |
| 6504 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6505 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6506 | } |
| 6507 | |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 6508 | SDValue DAGCombiner::visitFCEIL(SDNode *N) { |
| 6509 | SDValue N0 = N->getOperand(0); |
| 6510 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6511 | EVT VT = N->getValueType(0); |
| 6512 | |
| 6513 | // fold (fceil c1) -> fceil(c1) |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6514 | if (N0CFP) |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 6515 | return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0); |
| 6516 | |
| 6517 | return SDValue(); |
| 6518 | } |
| 6519 | |
| 6520 | SDValue DAGCombiner::visitFTRUNC(SDNode *N) { |
| 6521 | SDValue N0 = N->getOperand(0); |
| 6522 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6523 | EVT VT = N->getValueType(0); |
| 6524 | |
| 6525 | // fold (ftrunc c1) -> ftrunc(c1) |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6526 | if (N0CFP) |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 6527 | return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0); |
| 6528 | |
| 6529 | return SDValue(); |
| 6530 | } |
| 6531 | |
| 6532 | SDValue DAGCombiner::visitFFLOOR(SDNode *N) { |
| 6533 | SDValue N0 = N->getOperand(0); |
| 6534 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
| 6535 | EVT VT = N->getValueType(0); |
| 6536 | |
| 6537 | // fold (ffloor c1) -> ffloor(c1) |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6538 | if (N0CFP) |
Owen Anderson | 7c626d3 | 2012-08-13 23:32:49 +0000 | [diff] [blame] | 6539 | return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0); |
| 6540 | |
| 6541 | return SDValue(); |
| 6542 | } |
| 6543 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6544 | SDValue DAGCombiner::visitFABS(SDNode *N) { |
| 6545 | SDValue N0 = N->getOperand(0); |
Nate Begeman | a148d98 | 2006-01-18 22:35:16 +0000 | [diff] [blame] | 6546 | ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6547 | EVT VT = N->getValueType(0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6548 | |
Craig Topper | dd201ff | 2012-09-11 01:45:21 +0000 | [diff] [blame] | 6549 | if (VT.isVector()) { |
| 6550 | SDValue FoldedVOp = SimplifyVUnaryOp(N); |
| 6551 | if (FoldedVOp.getNode()) return FoldedVOp; |
| 6552 | } |
| 6553 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6554 | // fold (fabs c1) -> fabs(c1) |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 6555 | if (N0CFP) |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6556 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6557 | // fold (fabs (fabs x)) -> (fabs x) |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6558 | if (N0.getOpcode() == ISD::FABS) |
Nate Begeman | 83e75ec | 2005-09-06 04:43:02 +0000 | [diff] [blame] | 6559 | return N->getOperand(0); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6560 | // fold (fabs (fneg x)) -> (fabs x) |
Chris Lattner | 12d8303 | 2006-03-05 05:30:57 +0000 | [diff] [blame] | 6561 | // fold (fabs (fcopysign x, y)) -> (fabs x) |
| 6562 | if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN) |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6563 | return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6564 | |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6565 | // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading |
| 6566 | // constant pool values. |
Owen Anderson | 29f60f3 | 2012-04-02 22:10:29 +0000 | [diff] [blame] | 6567 | if (!TLI.isFAbsFree(VT) && |
| 6568 | N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6569 | N0.getOperand(0).getValueType().isInteger() && |
| 6570 | !N0.getOperand(0).getValueType().isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6571 | SDValue Int = N0.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6572 | EVT IntVT = Int.getValueType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6573 | if (IntVT.isInteger() && !IntVT.isVector()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6574 | Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int, |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 6575 | DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6576 | AddToWorkList(Int.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6577 | return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6578 | N->getValueType(0), Int); |
Chris Lattner | 3bd39d4 | 2008-01-27 17:42:27 +0000 | [diff] [blame] | 6579 | } |
| 6580 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6581 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6582 | return SDValue(); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 6583 | } |
| 6584 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6585 | SDValue DAGCombiner::visitBRCOND(SDNode *N) { |
| 6586 | SDValue Chain = N->getOperand(0); |
| 6587 | SDValue N1 = N->getOperand(1); |
| 6588 | SDValue N2 = N->getOperand(2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6589 | |
Dan Gohman | e0f06c7 | 2009-11-17 00:47:23 +0000 | [diff] [blame] | 6590 | // If N is a constant we could fold this into a fallthrough or unconditional |
| 6591 | // branch. However that doesn't happen very often in normal code, because |
| 6592 | // Instcombine/SimplifyCFG should have handled the available opportunities. |
| 6593 | // If we did this folding here, it would be necessary to update the |
| 6594 | // MachineBasicBlock CFG, which is awkward. |
| 6595 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 6596 | // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal |
| 6597 | // on the target. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6598 | if (N1.getOpcode() == ISD::SETCC && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6599 | TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) { |
| 6600 | return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other, |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6601 | Chain, N1.getOperand(2), |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 6602 | N1.getOperand(0), N1.getOperand(1), N2); |
| 6603 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6604 | |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6605 | if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) || |
| 6606 | ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) && |
| 6607 | (N1.getOperand(0).hasOneUse() && |
| 6608 | N1.getOperand(0).getOpcode() == ISD::SRL))) { |
| 6609 | SDNode *Trunc = 0; |
| 6610 | if (N1.getOpcode() == ISD::TRUNCATE) { |
| 6611 | // Look pass the truncate. |
| 6612 | Trunc = N1.getNode(); |
| 6613 | N1 = N1.getOperand(0); |
| 6614 | } |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6615 | |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6616 | // Match this pattern so that we can generate simpler code: |
| 6617 | // |
| 6618 | // %a = ... |
| 6619 | // %b = and i32 %a, 2 |
| 6620 | // %c = srl i32 %b, 1 |
| 6621 | // brcond i32 %c ... |
| 6622 | // |
| 6623 | // into |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6624 | // |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6625 | // %a = ... |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6626 | // %b = and i32 %a, 2 |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6627 | // %c = setcc eq %b, 0 |
| 6628 | // brcond %c ... |
| 6629 | // |
| 6630 | // This applies only when the AND constant value has one bit set and the |
| 6631 | // SRL constant is equal to the log2 of the AND constant. The back-end is |
| 6632 | // smart enough to convert the result into a TEST/JMP sequence. |
| 6633 | SDValue Op0 = N1.getOperand(0); |
| 6634 | SDValue Op1 = N1.getOperand(1); |
| 6635 | |
| 6636 | if (Op0.getOpcode() == ISD::AND && |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6637 | Op1.getOpcode() == ISD::Constant) { |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6638 | SDValue AndOp1 = Op0.getOperand(1); |
| 6639 | |
| 6640 | if (AndOp1.getOpcode() == ISD::Constant) { |
| 6641 | const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue(); |
| 6642 | |
| 6643 | if (AndConst.isPowerOf2() && |
| 6644 | cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) { |
| 6645 | SDValue SetCC = |
| 6646 | DAG.getSetCC(N->getDebugLoc(), |
| 6647 | TLI.getSetCCResultType(Op0.getValueType()), |
| 6648 | Op0, DAG.getConstant(0, Op0.getValueType()), |
| 6649 | ISD::SETNE); |
| 6650 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6651 | SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(), |
| 6652 | MVT::Other, Chain, SetCC, N2); |
| 6653 | // Don't add the new BRCond into the worklist or else SimplifySelectCC |
| 6654 | // will convert it back to (X & C1) >> C2. |
| 6655 | CombineTo(N, NewBRCond, false); |
| 6656 | // Truncate is dead. |
| 6657 | if (Trunc) { |
| 6658 | removeFromWorkList(Trunc); |
| 6659 | DAG.DeleteNode(Trunc); |
| 6660 | } |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6661 | // Replace the uses of SRL with SETCC |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6662 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6663 | DAG.ReplaceAllUsesOfValueWith(N1, SetCC); |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6664 | removeFromWorkList(N1.getNode()); |
| 6665 | DAG.DeleteNode(N1.getNode()); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6666 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6667 | } |
| 6668 | } |
| 6669 | } |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6670 | |
| 6671 | if (Trunc) |
| 6672 | // Restore N1 if the above transformation doesn't match. |
| 6673 | N1 = N->getOperand(1); |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6674 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6675 | |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6676 | // Transform br(xor(x, y)) -> br(x != y) |
| 6677 | // Transform br(xor(xor(x,y), 1)) -> br (x == y) |
| 6678 | if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) { |
| 6679 | SDNode *TheXor = N1.getNode(); |
| 6680 | SDValue Op0 = TheXor->getOperand(0); |
| 6681 | SDValue Op1 = TheXor->getOperand(1); |
| 6682 | if (Op0.getOpcode() == Op1.getOpcode()) { |
| 6683 | // Avoid missing important xor optimizations. |
| 6684 | SDValue Tmp = visitXOR(TheXor); |
Bill Wendling | 86c5abb | 2010-04-20 01:25:01 +0000 | [diff] [blame] | 6685 | if (Tmp.getNode() && Tmp.getNode() != TheXor) { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6686 | DEBUG(dbgs() << "\nReplacing.8 "; |
| 6687 | TheXor->dump(&DAG); |
| 6688 | dbgs() << "\nWith: "; |
| 6689 | Tmp.getNode()->dump(&DAG); |
| 6690 | dbgs() << '\n'); |
| 6691 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6692 | DAG.ReplaceAllUsesOfValueWith(N1, Tmp); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6693 | removeFromWorkList(TheXor); |
| 6694 | DAG.DeleteNode(TheXor); |
| 6695 | return DAG.getNode(ISD::BRCOND, N->getDebugLoc(), |
| 6696 | MVT::Other, Chain, Tmp, N2); |
| 6697 | } |
| 6698 | } |
| 6699 | |
| 6700 | if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) { |
| 6701 | bool Equal = false; |
| 6702 | if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0)) |
| 6703 | if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() && |
| 6704 | Op0.getOpcode() == ISD::XOR) { |
| 6705 | TheXor = Op0.getNode(); |
| 6706 | Equal = true; |
| 6707 | } |
| 6708 | |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6709 | EVT SetCCVT = N1.getValueType(); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6710 | if (LegalTypes) |
| 6711 | SetCCVT = TLI.getSetCCResultType(SetCCVT); |
| 6712 | SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(), |
| 6713 | SetCCVT, |
| 6714 | Op0, Op1, |
| 6715 | Equal ? ISD::SETEQ : ISD::SETNE); |
| 6716 | // Replace the uses of XOR with SETCC |
| 6717 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6718 | DAG.ReplaceAllUsesOfValueWith(N1, SetCC); |
Evan Cheng | 2a135ae | 2010-10-04 22:41:01 +0000 | [diff] [blame] | 6719 | removeFromWorkList(N1.getNode()); |
| 6720 | DAG.DeleteNode(N1.getNode()); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6721 | return DAG.getNode(ISD::BRCOND, N->getDebugLoc(), |
| 6722 | MVT::Other, Chain, SetCC, N2); |
| 6723 | } |
| 6724 | } |
Bill Wendling | a02a3dd | 2009-03-26 06:14:09 +0000 | [diff] [blame] | 6725 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6726 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 6727 | } |
| 6728 | |
Chris Lattner | 3ea0b47 | 2005-10-05 06:47:48 +0000 | [diff] [blame] | 6729 | // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB. |
| 6730 | // |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6731 | SDValue DAGCombiner::visitBR_CC(SDNode *N) { |
Chris Lattner | 3ea0b47 | 2005-10-05 06:47:48 +0000 | [diff] [blame] | 6732 | CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6733 | SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6734 | |
Dan Gohman | e0f06c7 | 2009-11-17 00:47:23 +0000 | [diff] [blame] | 6735 | // If N is a constant we could fold this into a fallthrough or unconditional |
| 6736 | // branch. However that doesn't happen very often in normal code, because |
| 6737 | // Instcombine/SimplifyCFG should have handled the available opportunities. |
| 6738 | // If we did this folding here, it would be necessary to update the |
| 6739 | // MachineBasicBlock CFG, which is awkward. |
| 6740 | |
Duncan Sands | 8eab8a2 | 2008-06-09 11:32:28 +0000 | [diff] [blame] | 6741 | // Use SimplifySetCC to simplify SETCC's. |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 6742 | SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 6743 | CondLHS, CondRHS, CC->get(), N->getDebugLoc(), |
| 6744 | false); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6745 | if (Simp.getNode()) AddToWorkList(Simp.getNode()); |
Chris Lattner | 30f73e7 | 2006-10-14 03:52:46 +0000 | [diff] [blame] | 6746 | |
Nate Begeman | e17daeb | 2005-10-05 21:43:42 +0000 | [diff] [blame] | 6747 | // fold to a simpler setcc |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6748 | if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6749 | return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other, |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6750 | N->getOperand(0), Simp.getOperand(2), |
| 6751 | Simp.getOperand(0), Simp.getOperand(1), |
| 6752 | N->getOperand(4)); |
| 6753 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6754 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 6755 | } |
| 6756 | |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6757 | /// canFoldInAddressingMode - Return true if 'Use' is a load or a store that |
| 6758 | /// 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] | 6759 | /// addressing mode. |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6760 | static bool canFoldInAddressingMode(SDNode *N, SDNode *Use, |
| 6761 | SelectionDAG &DAG, |
| 6762 | const TargetLowering &TLI) { |
| 6763 | EVT VT; |
| 6764 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) { |
| 6765 | if (LD->isIndexed() || LD->getBasePtr().getNode() != N) |
| 6766 | return false; |
| 6767 | VT = Use->getValueType(0); |
| 6768 | } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) { |
| 6769 | if (ST->isIndexed() || ST->getBasePtr().getNode() != N) |
| 6770 | return false; |
| 6771 | VT = ST->getValue().getValueType(); |
| 6772 | } else |
| 6773 | return false; |
| 6774 | |
Nadav Rotem | ad6aedc | 2012-10-08 23:06:34 +0000 | [diff] [blame] | 6775 | AddrMode AM; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6776 | if (N->getOpcode() == ISD::ADD) { |
| 6777 | ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 6778 | if (Offset) |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6779 | // [reg +/- imm] |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6780 | AM.BaseOffs = Offset->getSExtValue(); |
| 6781 | else |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6782 | // [reg +/- reg] |
| 6783 | AM.Scale = 1; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6784 | } else if (N->getOpcode() == ISD::SUB) { |
| 6785 | ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 6786 | if (Offset) |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6787 | // [reg +/- imm] |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6788 | AM.BaseOffs = -Offset->getSExtValue(); |
| 6789 | else |
Evan Cheng | 03be362 | 2012-03-06 23:33:32 +0000 | [diff] [blame] | 6790 | // [reg +/- reg] |
| 6791 | AM.Scale = 1; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6792 | } else |
| 6793 | return false; |
| 6794 | |
| 6795 | return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext())); |
| 6796 | } |
| 6797 | |
Duncan Sands | ec87aa8 | 2008-06-15 20:12:31 +0000 | [diff] [blame] | 6798 | /// CombineToPreIndexedLoadStore - Try turning a load / store into a |
| 6799 | /// 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] | 6800 | /// and it has other uses besides the load / store. After the |
| 6801 | /// transformation, the new indexed load / store has effectively folded |
| 6802 | /// the add / subtract in and all of its other uses are redirected to the |
| 6803 | /// new load / store. |
| 6804 | bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) { |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6805 | if (Level < AfterLegalizeDAG) |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6806 | return false; |
| 6807 | |
| 6808 | bool isLoad = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6809 | SDValue Ptr; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6810 | EVT VT; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6811 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6812 | if (LD->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6813 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6814 | VT = LD->getMemoryVT(); |
Evan Cheng | 83060c5 | 2007-03-07 08:07:03 +0000 | [diff] [blame] | 6815 | if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) && |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6816 | !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT)) |
| 6817 | return false; |
| 6818 | Ptr = LD->getBasePtr(); |
| 6819 | } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6820 | if (ST->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6821 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6822 | VT = ST->getMemoryVT(); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6823 | if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) && |
| 6824 | !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT)) |
| 6825 | return false; |
| 6826 | Ptr = ST->getBasePtr(); |
| 6827 | isLoad = false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6828 | } else { |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6829 | return false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6830 | } |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6831 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6832 | // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail |
| 6833 | // out. There is no reason to make this a preinc/predec. |
| 6834 | if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) || |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6835 | Ptr.getNode()->hasOneUse()) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6836 | return false; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6837 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6838 | // Ask the target to do addressing mode selection. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6839 | SDValue BasePtr; |
| 6840 | SDValue Offset; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6841 | ISD::MemIndexedMode AM = ISD::UNINDEXED; |
| 6842 | if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG)) |
| 6843 | return false; |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6844 | // Don't create a indexed load / store with zero offset. |
| 6845 | if (isa<ConstantSDNode>(Offset) && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 6846 | cast<ConstantSDNode>(Offset)->isNullValue()) |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6847 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6848 | |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6849 | // Try turning it into a pre-indexed load / store except when: |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6850 | // 1) The new base ptr is a frame index. |
| 6851 | // 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] | 6852 | // predecessor of the value being stored. |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6853 | // 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] | 6854 | // that would create a cycle. |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6855 | // 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] | 6856 | |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6857 | // Check #1. Preinc'ing a frame index would require copying the stack pointer |
| 6858 | // (plus the implicit offset) to a register to preinc anyway. |
Evan Cheng | caab129 | 2009-05-06 18:25:01 +0000 | [diff] [blame] | 6859 | if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6860 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6861 | |
Chris Lattner | 41e53fd | 2006-11-11 01:00:15 +0000 | [diff] [blame] | 6862 | // Check #2. |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6863 | if (!isLoad) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6864 | SDValue Val = cast<StoreSDNode>(N)->getValue(); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6865 | if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode())) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6866 | return false; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6867 | } |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6868 | |
Evan Cheng | c843abe | 2007-05-24 02:35:39 +0000 | [diff] [blame] | 6869 | // Now check for #3 and #4. |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6870 | bool RealUse = false; |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6871 | |
| 6872 | // Caches for hasPredecessorHelper |
| 6873 | SmallPtrSet<const SDNode *, 32> Visited; |
| 6874 | SmallVector<const SDNode *, 16> Worklist; |
| 6875 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6876 | for (SDNode::use_iterator I = Ptr.getNode()->use_begin(), |
| 6877 | E = Ptr.getNode()->use_end(); I != E; ++I) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6878 | SDNode *Use = *I; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6879 | if (Use == N) |
| 6880 | continue; |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6881 | if (N->hasPredecessorHelper(Use, Visited, Worklist)) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6882 | return false; |
| 6883 | |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6884 | // If Ptr may be folded in addressing mode of other use, then it's |
| 6885 | // not profitable to do this transformation. |
| 6886 | if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI)) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6887 | RealUse = true; |
| 6888 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6889 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6890 | if (!RealUse) |
| 6891 | return false; |
| 6892 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6893 | SDValue Result; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6894 | if (isLoad) |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6895 | Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(), |
| 6896 | BasePtr, Offset, AM); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6897 | else |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6898 | Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(), |
| 6899 | BasePtr, Offset, AM); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6900 | ++PreIndexedNodes; |
| 6901 | ++NodesCombined; |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 6902 | DEBUG(dbgs() << "\nReplacing.4 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 6903 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 6904 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 6905 | Result.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 6906 | dbgs() << '\n'); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 6907 | WorkListRemover DeadNodes(*this); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6908 | if (isLoad) { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6909 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); |
| 6910 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6911 | } else { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 6912 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6913 | } |
| 6914 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6915 | // Finally, since the node is now dead, remove it from the graph. |
| 6916 | DAG.DeleteNode(N); |
| 6917 | |
| 6918 | // 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] | 6919 | DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6920 | removeFromWorkList(Ptr.getNode()); |
| 6921 | DAG.DeleteNode(Ptr.getNode()); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6922 | |
| 6923 | return true; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6924 | } |
| 6925 | |
Duncan Sands | ec87aa8 | 2008-06-15 20:12:31 +0000 | [diff] [blame] | 6926 | /// CombineToPostIndexedLoadStore - Try to combine a load / store with a |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6927 | /// add / sub of the base pointer node into a post-indexed load / store. |
| 6928 | /// The transformation folded the add / subtract into the new indexed |
| 6929 | /// load / store effectively and all of its uses are redirected to the |
| 6930 | /// new load / store. |
| 6931 | bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) { |
Eli Friedman | 5018524 | 2011-11-12 00:35:34 +0000 | [diff] [blame] | 6932 | if (Level < AfterLegalizeDAG) |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6933 | return false; |
| 6934 | |
| 6935 | bool isLoad = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6936 | SDValue Ptr; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6937 | EVT VT; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6938 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6939 | if (LD->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6940 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6941 | VT = LD->getMemoryVT(); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6942 | if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) && |
| 6943 | !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT)) |
| 6944 | return false; |
| 6945 | Ptr = LD->getBasePtr(); |
| 6946 | } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 6947 | if (ST->isIndexed()) |
Evan Cheng | e90460e | 2006-12-16 06:25:23 +0000 | [diff] [blame] | 6948 | return false; |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 6949 | VT = ST->getMemoryVT(); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6950 | if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) && |
| 6951 | !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT)) |
| 6952 | return false; |
| 6953 | Ptr = ST->getBasePtr(); |
| 6954 | isLoad = false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6955 | } else { |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6956 | return false; |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 6957 | } |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6958 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6959 | if (Ptr.getNode()->hasOneUse()) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6960 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6961 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6962 | for (SDNode::use_iterator I = Ptr.getNode()->use_begin(), |
| 6963 | E = Ptr.getNode()->use_end(); I != E; ++I) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6964 | SDNode *Op = *I; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6965 | if (Op == N || |
| 6966 | (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)) |
| 6967 | continue; |
| 6968 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6969 | SDValue BasePtr; |
| 6970 | SDValue Offset; |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6971 | ISD::MemIndexedMode AM = ISD::UNINDEXED; |
| 6972 | if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) { |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6973 | // Don't create a indexed load / store with zero offset. |
| 6974 | if (isa<ConstantSDNode>(Offset) && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 6975 | cast<ConstantSDNode>(Offset)->isNullValue()) |
Evan Cheng | a7d4a04 | 2007-05-03 23:52:19 +0000 | [diff] [blame] | 6976 | continue; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6977 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6978 | // Try turning it into a post-indexed load / store except when |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 6979 | // 1) All uses are load / store ops that use it as base ptr (and |
| 6980 | // it may be folded as addressing mmode). |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6981 | // 2) Op must be independent of N, i.e. Op is neither a predecessor |
| 6982 | // nor a successor of N. Otherwise, if Op is folded that would |
| 6983 | // create a cycle. |
| 6984 | |
Evan Cheng | caab129 | 2009-05-06 18:25:01 +0000 | [diff] [blame] | 6985 | if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) |
| 6986 | continue; |
| 6987 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6988 | // Check for #1. |
| 6989 | bool TryNext = false; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6990 | for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(), |
| 6991 | EE = BasePtr.getNode()->use_end(); II != EE; ++II) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6992 | SDNode *Use = *II; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6993 | if (Use == Ptr.getNode()) |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 6994 | continue; |
| 6995 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 6996 | // If all the uses are load / store addresses, then don't do the |
| 6997 | // transformation. |
| 6998 | if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){ |
| 6999 | bool RealUse = false; |
| 7000 | for (SDNode::use_iterator III = Use->use_begin(), |
| 7001 | EEE = Use->use_end(); III != EEE; ++III) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 7002 | SDNode *UseUse = *III; |
Evan Cheng | c4b527a | 2012-01-13 01:37:24 +0000 | [diff] [blame] | 7003 | if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI)) |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7004 | RealUse = true; |
| 7005 | } |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7006 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7007 | if (!RealUse) { |
| 7008 | TryNext = true; |
| 7009 | break; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7010 | } |
| 7011 | } |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7012 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7013 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7014 | if (TryNext) |
| 7015 | continue; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7016 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7017 | // Check for #2 |
Evan Cheng | 917be68 | 2008-03-04 00:41:45 +0000 | [diff] [blame] | 7018 | if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7019 | SDValue Result = isLoad |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7020 | ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(), |
| 7021 | BasePtr, Offset, AM) |
| 7022 | : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(), |
| 7023 | BasePtr, Offset, AM); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7024 | ++PostIndexedNodes; |
| 7025 | ++NodesCombined; |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7026 | DEBUG(dbgs() << "\nReplacing.5 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7027 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7028 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7029 | Result.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7030 | dbgs() << '\n'); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 7031 | WorkListRemover DeadNodes(*this); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7032 | if (isLoad) { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7033 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); |
| 7034 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7035 | } else { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7036 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7037 | } |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7038 | |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7039 | // Finally, since the node is now dead, remove it from the graph. |
| 7040 | DAG.DeleteNode(N); |
| 7041 | |
| 7042 | // Replace the uses of Use with uses of the updated base value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7043 | DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0), |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7044 | Result.getValue(isLoad ? 1 : 0)); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7045 | removeFromWorkList(Op); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7046 | DAG.DeleteNode(Op); |
Chris Lattner | 9f1794e | 2006-11-11 00:56:29 +0000 | [diff] [blame] | 7047 | return true; |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7048 | } |
| 7049 | } |
| 7050 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7051 | |
Chris Lattner | 448f219 | 2006-11-11 00:39:41 +0000 | [diff] [blame] | 7052 | return false; |
| 7053 | } |
| 7054 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7055 | SDValue DAGCombiner::visitLOAD(SDNode *N) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 7056 | LoadSDNode *LD = cast<LoadSDNode>(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7057 | SDValue Chain = LD->getChain(); |
| 7058 | SDValue Ptr = LD->getBasePtr(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7059 | |
Evan Cheng | 45a7ca9 | 2007-05-01 00:38:21 +0000 | [diff] [blame] | 7060 | // If load is not volatile and there are no uses of the loaded value (and |
| 7061 | // the updated indexed value in case of indexed loads), change uses of the |
| 7062 | // chain value into uses of the chain input (i.e. delete the dead load). |
| 7063 | if (!LD->isVolatile()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7064 | if (N->getValueType(1) == MVT::Other) { |
Evan Cheng | 498f559 | 2007-05-01 08:53:39 +0000 | [diff] [blame] | 7065 | // Unindexed loads. |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 7066 | if (!N->hasAnyUseOfValue(0)) { |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7067 | // It's not safe to use the two value CombineTo variant here. e.g. |
| 7068 | // v1, chain2 = load chain1, loc |
| 7069 | // v2, chain3 = load chain2, loc |
| 7070 | // v3 = add v2, c |
Chris Lattner | 125991a | 2008-01-24 07:57:06 +0000 | [diff] [blame] | 7071 | // Now we replace use of chain2 with chain1. This makes the second load |
| 7072 | // 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] | 7073 | DEBUG(dbgs() << "\nReplacing.6 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7074 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7075 | dbgs() << "\nWith chain: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7076 | Chain.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7077 | dbgs() << "\n"); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 7078 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7079 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain); |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7080 | |
Chris Lattner | 125991a | 2008-01-24 07:57:06 +0000 | [diff] [blame] | 7081 | if (N->use_empty()) { |
| 7082 | removeFromWorkList(N); |
| 7083 | DAG.DeleteNode(N); |
| 7084 | } |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7085 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7086 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7087 | } |
Evan Cheng | 498f559 | 2007-05-01 08:53:39 +0000 | [diff] [blame] | 7088 | } else { |
| 7089 | // Indexed loads. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7090 | assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?"); |
Craig Topper | 704e1a0 | 2012-01-07 18:31:09 +0000 | [diff] [blame] | 7091 | if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 7092 | SDValue Undef = DAG.getUNDEF(N->getValueType(0)); |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 7093 | DEBUG(dbgs() << "\nReplacing.7 "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7094 | N->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7095 | dbgs() << "\nWith: "; |
Chris Lattner | bbbfa99 | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 7096 | Undef.getNode()->dump(&DAG); |
David Greene | f109029 | 2010-01-05 01:25:00 +0000 | [diff] [blame] | 7097 | dbgs() << " and 2 other values\n"); |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 7098 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7099 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7100 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7101 | DAG.getUNDEF(N->getValueType(1))); |
| 7102 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain); |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7103 | removeFromWorkList(N); |
Evan Cheng | 02c4285 | 2008-01-16 23:11:54 +0000 | [diff] [blame] | 7104 | DAG.DeleteNode(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7105 | return SDValue(N, 0); // Return N so it doesn't get rechecked! |
Evan Cheng | 45a7ca9 | 2007-05-01 00:38:21 +0000 | [diff] [blame] | 7106 | } |
Evan Cheng | 45a7ca9 | 2007-05-01 00:38:21 +0000 | [diff] [blame] | 7107 | } |
| 7108 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7109 | |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 7110 | // If this load is directly stored, replace the load value with the stored |
| 7111 | // value. |
| 7112 | // TODO: Handle store large -> read small portion. |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7113 | // TODO: Handle TRUNCSTORE/LOADEXT |
Evan Cheng | 9ef82ce | 2011-03-11 00:48:56 +0000 | [diff] [blame] | 7114 | if (ISD::isNormalLoad(N) && !LD->isVolatile()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7115 | if (ISD::isNON_TRUNCStore(Chain.getNode())) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7116 | StoreSDNode *PrevST = cast<StoreSDNode>(Chain); |
| 7117 | if (PrevST->getBasePtr() == Ptr && |
| 7118 | PrevST->getValue().getValueType() == N->getValueType(0)) |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7119 | return CombineTo(N, Chain.getOperand(1), Chain); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7120 | } |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7121 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7122 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 7123 | // Try to infer better alignment information than the load already has. |
| 7124 | if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) { |
Evan Cheng | ed1c0c7 | 2011-11-28 22:37:34 +0000 | [diff] [blame] | 7125 | if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { |
| 7126 | if (Align > LD->getAlignment()) |
| 7127 | return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(), |
| 7128 | LD->getValueType(0), |
| 7129 | Chain, Ptr, LD->getPointerInfo(), |
| 7130 | LD->getMemoryVT(), |
| 7131 | LD->isVolatile(), LD->isNonTemporal(), Align); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 7132 | } |
| 7133 | } |
| 7134 | |
Jim Laskey | 7ca56af | 2006-10-11 13:47:09 +0000 | [diff] [blame] | 7135 | if (CombinerAA) { |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7136 | // Walk up chain skipping non-aliasing memory nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7137 | SDValue BetterChain = FindBetterChain(N, Chain); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7138 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 7139 | // If there is a better chain. |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7140 | if (Chain != BetterChain) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7141 | SDValue ReplLoad; |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7142 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7143 | // Replace the chain to void dependency. |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7144 | if (LD->getExtensionType() == ISD::NON_EXTLOAD) { |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7145 | ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7146 | BetterChain, Ptr, LD->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7147 | LD->isVolatile(), LD->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 7148 | LD->isInvariant(), LD->getAlignment()); |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7149 | } else { |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 7150 | ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(), |
| 7151 | LD->getValueType(0), |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7152 | BetterChain, Ptr, LD->getPointerInfo(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 7153 | LD->getMemoryVT(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7154 | LD->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7155 | LD->isNonTemporal(), |
Christopher Lamb | 95c218a | 2007-04-22 23:15:30 +0000 | [diff] [blame] | 7156 | LD->getAlignment()); |
Jim Laskey | c2b19f3 | 2006-10-11 17:47:52 +0000 | [diff] [blame] | 7157 | } |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7158 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 7159 | // Create token factor to keep old chain connected. |
Bill Wendling | c0debad | 2009-01-30 23:27:35 +0000 | [diff] [blame] | 7160 | SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7161 | MVT::Other, Chain, ReplLoad.getValue(1)); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7162 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 7163 | // Make sure the new and old chains are cleaned up. |
| 7164 | AddToWorkList(Token.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7165 | |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 7166 | // Replace uses with load result and token factor. Don't add users |
| 7167 | // to work list. |
| 7168 | return CombineTo(N, ReplLoad.getValue(0), Token, false); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7169 | } |
| 7170 | } |
| 7171 | |
Evan Cheng | 7fc033a | 2006-11-03 03:06:21 +0000 | [diff] [blame] | 7172 | // Try transforming N to an indexed load. |
Evan Cheng | bbd6f6e | 2006-11-07 09:03:05 +0000 | [diff] [blame] | 7173 | if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7174 | return SDValue(N, 0); |
Evan Cheng | 7fc033a | 2006-11-03 03:06:21 +0000 | [diff] [blame] | 7175 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7176 | return SDValue(); |
Chris Lattner | 01a2202 | 2005-10-10 22:04:48 +0000 | [diff] [blame] | 7177 | } |
| 7178 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7179 | /// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the |
| 7180 | /// load is having specific bytes cleared out. If so, return the byte size |
| 7181 | /// being masked out and the shift amount. |
| 7182 | static std::pair<unsigned, unsigned> |
| 7183 | CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) { |
| 7184 | std::pair<unsigned, unsigned> Result(0, 0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7185 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7186 | // Check for the structure we're looking for. |
| 7187 | if (V->getOpcode() != ISD::AND || |
| 7188 | !isa<ConstantSDNode>(V->getOperand(1)) || |
| 7189 | !ISD::isNormalLoad(V->getOperand(0).getNode())) |
| 7190 | return Result; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7191 | |
Chris Lattner | e698758 | 2010-04-15 06:10:49 +0000 | [diff] [blame] | 7192 | // Check the chain and pointer. |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7193 | LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0)); |
Chris Lattner | e698758 | 2010-04-15 06:10:49 +0000 | [diff] [blame] | 7194 | if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7195 | |
Chris Lattner | e698758 | 2010-04-15 06:10:49 +0000 | [diff] [blame] | 7196 | // The store should be chained directly to the load or be an operand of a |
| 7197 | // tokenfactor. |
| 7198 | if (LD == Chain.getNode()) |
| 7199 | ; // ok. |
| 7200 | else if (Chain->getOpcode() != ISD::TokenFactor) |
| 7201 | return Result; // Fail. |
| 7202 | else { |
| 7203 | bool isOk = false; |
| 7204 | for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i) |
| 7205 | if (Chain->getOperand(i).getNode() == LD) { |
| 7206 | isOk = true; |
| 7207 | break; |
| 7208 | } |
| 7209 | if (!isOk) return Result; |
| 7210 | } |
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 | // This only handles simple types. |
| 7213 | if (V.getValueType() != MVT::i16 && |
| 7214 | V.getValueType() != MVT::i32 && |
| 7215 | V.getValueType() != MVT::i64) |
| 7216 | return Result; |
| 7217 | |
| 7218 | // Check the constant mask. Invert it so that the bits being masked out are |
| 7219 | // 0 and the bits being kept are 1. Use getSExtValue so that leading bits |
| 7220 | // follow the sign bit for uniformity. |
| 7221 | uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); |
| 7222 | unsigned NotMaskLZ = CountLeadingZeros_64(NotMask); |
| 7223 | if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. |
| 7224 | unsigned NotMaskTZ = CountTrailingZeros_64(NotMask); |
| 7225 | if (NotMaskTZ & 7) return Result; // Must be multiple of a byte. |
| 7226 | if (NotMaskLZ == 64) return Result; // All zero mask. |
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 | // See if we have a continuous run of bits. If so, we have 0*1+0* |
| 7229 | if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64) |
| 7230 | return Result; |
| 7231 | |
| 7232 | // Adjust NotMaskLZ down to be from the actual size of the int instead of i64. |
| 7233 | if (V.getValueType() != MVT::i64 && NotMaskLZ) |
| 7234 | NotMaskLZ -= 64-V.getValueSizeInBits(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7235 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7236 | unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; |
| 7237 | switch (MaskedBytes) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7238 | case 1: |
| 7239 | case 2: |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7240 | case 4: break; |
| 7241 | default: return Result; // All one mask, or 5-byte mask. |
| 7242 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7243 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7244 | // Verify that the first bit starts at a multiple of mask so that the access |
| 7245 | // is aligned the same as the access width. |
| 7246 | if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7247 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7248 | Result.first = MaskedBytes; |
| 7249 | Result.second = NotMaskTZ/8; |
| 7250 | return Result; |
| 7251 | } |
| 7252 | |
| 7253 | |
| 7254 | /// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that |
| 7255 | /// provides a value as specified by MaskInfo. If so, replace the specified |
| 7256 | /// store with a narrower store of truncated IVal. |
| 7257 | static SDNode * |
| 7258 | ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo, |
| 7259 | SDValue IVal, StoreSDNode *St, |
| 7260 | DAGCombiner *DC) { |
| 7261 | unsigned NumBytes = MaskInfo.first; |
| 7262 | unsigned ByteShift = MaskInfo.second; |
| 7263 | SelectionDAG &DAG = DC->getDAG(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7264 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7265 | // Check to see if IVal is all zeros in the part being masked in by the 'or' |
| 7266 | // that uses this. If not, this is not a replacement. |
| 7267 | APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), |
| 7268 | ByteShift*8, (ByteShift+NumBytes)*8); |
| 7269 | if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7270 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7271 | // Check that it is legal on the target to do this. It is legal if the new |
| 7272 | // VT we're shrinking to (i8/i16/i32) is legal or we're still before type |
| 7273 | // legalization. |
| 7274 | MVT VT = MVT::getIntegerVT(NumBytes*8); |
| 7275 | if (!DC->isTypeLegal(VT)) |
| 7276 | return 0; |
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 | // Okay, we can do this! Replace the 'St' store with a store of IVal that is |
| 7279 | // shifted by ByteShift and truncated down to NumBytes. |
| 7280 | if (ByteShift) |
| 7281 | IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 7282 | DAG.getConstant(ByteShift*8, |
| 7283 | DC->getShiftAmountTy(IVal.getValueType()))); |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7284 | |
| 7285 | // Figure out the offset for the store and the alignment of the access. |
| 7286 | unsigned StOffset; |
| 7287 | unsigned NewAlign = St->getAlignment(); |
| 7288 | |
| 7289 | if (DAG.getTargetLoweringInfo().isLittleEndian()) |
| 7290 | StOffset = ByteShift; |
| 7291 | else |
| 7292 | StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7293 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7294 | SDValue Ptr = St->getBasePtr(); |
| 7295 | if (StOffset) { |
| 7296 | Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(), |
| 7297 | Ptr, DAG.getConstant(StOffset, Ptr.getValueType())); |
| 7298 | NewAlign = MinAlign(NewAlign, StOffset); |
| 7299 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7300 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7301 | // Truncate down to the new size. |
| 7302 | IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7303 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7304 | ++OpsNarrowed; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7305 | return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7306 | St->getPointerInfo().getWithOffset(StOffset), |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7307 | false, false, NewAlign).getNode(); |
| 7308 | } |
| 7309 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7310 | |
| 7311 | /// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is |
| 7312 | /// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some |
| 7313 | /// of the loaded bits, try narrowing the load and store if it would end up |
| 7314 | /// being a win for performance or code size. |
| 7315 | SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) { |
| 7316 | StoreSDNode *ST = cast<StoreSDNode>(N); |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7317 | if (ST->isVolatile()) |
| 7318 | return SDValue(); |
| 7319 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7320 | SDValue Chain = ST->getChain(); |
| 7321 | SDValue Value = ST->getValue(); |
| 7322 | SDValue Ptr = ST->getBasePtr(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7323 | EVT VT = Value.getValueType(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7324 | |
| 7325 | if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse()) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7326 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7327 | |
| 7328 | unsigned Opc = Value.getOpcode(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7329 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7330 | // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst |
| 7331 | // is a byte mask indicating a consecutive number of bytes, check to see if |
| 7332 | // Y is known to provide just those bytes. If so, we try to replace the |
| 7333 | // load + replace + store sequence with a single (narrower) store, which makes |
| 7334 | // the load dead. |
| 7335 | if (Opc == ISD::OR) { |
| 7336 | std::pair<unsigned, unsigned> MaskedLoad; |
| 7337 | MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain); |
| 7338 | if (MaskedLoad.first) |
| 7339 | if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, |
| 7340 | Value.getOperand(1), ST,this)) |
| 7341 | return SDValue(NewST, 0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7342 | |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7343 | // Or is commutative, so try swapping X and Y. |
| 7344 | MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain); |
| 7345 | if (MaskedLoad.first) |
| 7346 | if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, |
| 7347 | Value.getOperand(0), ST,this)) |
| 7348 | return SDValue(NewST, 0); |
| 7349 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7350 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7351 | if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) || |
| 7352 | Value.getOperand(1).getOpcode() != ISD::Constant) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7353 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7354 | |
| 7355 | SDValue N0 = Value.getOperand(0); |
Dan Gohman | 24bde5b | 2010-09-02 21:18:42 +0000 | [diff] [blame] | 7356 | if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && |
| 7357 | Chain == SDValue(N0.getNode(), 1)) { |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7358 | LoadSDNode *LD = cast<LoadSDNode>(N0); |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7359 | if (LD->getBasePtr() != Ptr || |
| 7360 | LD->getPointerInfo().getAddrSpace() != |
| 7361 | ST->getPointerInfo().getAddrSpace()) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7362 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7363 | |
| 7364 | // Find the type to narrow it the load / op / store to. |
| 7365 | SDValue N1 = Value.getOperand(1); |
| 7366 | unsigned BitWidth = N1.getValueSizeInBits(); |
| 7367 | APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue(); |
| 7368 | if (Opc == ISD::AND) |
| 7369 | Imm ^= APInt::getAllOnesValue(BitWidth); |
Evan Cheng | d3c76bb | 2009-05-28 23:52:18 +0000 | [diff] [blame] | 7370 | if (Imm == 0 || Imm.isAllOnesValue()) |
| 7371 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7372 | unsigned ShAmt = Imm.countTrailingZeros(); |
| 7373 | unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1; |
| 7374 | unsigned NewBW = NextPowerOf2(MSB - ShAmt); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 7375 | EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7376 | while (NewBW < BitWidth && |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7377 | !(TLI.isOperationLegalOrCustom(Opc, NewVT) && |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7378 | TLI.isNarrowingProfitable(VT, NewVT))) { |
| 7379 | NewBW = NextPowerOf2(NewBW); |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 7380 | NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7381 | } |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7382 | if (NewBW >= BitWidth) |
| 7383 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7384 | |
| 7385 | // If the lsb changed does not start at the type bitwidth boundary, |
| 7386 | // start at the previous one. |
| 7387 | if (ShAmt % NewBW) |
| 7388 | ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW; |
| 7389 | APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW); |
| 7390 | if ((Imm & Mask) == Imm) { |
| 7391 | APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW); |
| 7392 | if (Opc == ISD::AND) |
| 7393 | NewImm ^= APInt::getAllOnesValue(NewBW); |
| 7394 | uint64_t PtrOff = ShAmt / 8; |
| 7395 | // For big endian targets, we need to adjust the offset to the pointer to |
| 7396 | // load the correct bytes. |
| 7397 | if (TLI.isBigEndian()) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7398 | PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff; |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7399 | |
| 7400 | unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 7401 | Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext()); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 7402 | if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy)) |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7403 | return SDValue(); |
| 7404 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7405 | SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(), |
| 7406 | Ptr.getValueType(), Ptr, |
| 7407 | DAG.getConstant(PtrOff, Ptr.getValueType())); |
| 7408 | SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(), |
| 7409 | LD->getChain(), NewPtr, |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7410 | LD->getPointerInfo().getWithOffset(PtrOff), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7411 | LD->isVolatile(), LD->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 7412 | LD->isInvariant(), NewAlign); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7413 | SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD, |
| 7414 | DAG.getConstant(NewImm, NewVT)); |
| 7415 | SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(), |
| 7416 | NewVal, NewPtr, |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 7417 | ST->getPointerInfo().getWithOffset(PtrOff), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7418 | false, false, NewAlign); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7419 | |
| 7420 | AddToWorkList(NewPtr.getNode()); |
| 7421 | AddToWorkList(NewLD.getNode()); |
| 7422 | AddToWorkList(NewVal.getNode()); |
| 7423 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7424 | DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1)); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7425 | ++OpsNarrowed; |
| 7426 | return NewST; |
| 7427 | } |
| 7428 | } |
| 7429 | |
Evan Cheng | cdcecc0 | 2009-05-28 18:41:02 +0000 | [diff] [blame] | 7430 | return SDValue(); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 7431 | } |
| 7432 | |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7433 | /// TransformFPLoadStorePair - For a given floating point load / store pair, |
| 7434 | /// if the load value isn't used by any other operations, then consider |
| 7435 | /// transforming the pair to integer load / store operations if the target |
| 7436 | /// deems the transformation profitable. |
| 7437 | SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) { |
| 7438 | StoreSDNode *ST = cast<StoreSDNode>(N); |
| 7439 | SDValue Chain = ST->getChain(); |
| 7440 | SDValue Value = ST->getValue(); |
| 7441 | if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) && |
| 7442 | Value.hasOneUse() && |
| 7443 | Chain == SDValue(Value.getNode(), 1)) { |
| 7444 | LoadSDNode *LD = cast<LoadSDNode>(Value); |
| 7445 | EVT VT = LD->getMemoryVT(); |
| 7446 | if (!VT.isFloatingPoint() || |
| 7447 | VT != ST->getMemoryVT() || |
| 7448 | LD->isNonTemporal() || |
| 7449 | ST->isNonTemporal() || |
| 7450 | LD->getPointerInfo().getAddrSpace() != 0 || |
| 7451 | ST->getPointerInfo().getAddrSpace() != 0) |
| 7452 | return SDValue(); |
| 7453 | |
| 7454 | EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); |
| 7455 | if (!TLI.isOperationLegal(ISD::LOAD, IntVT) || |
| 7456 | !TLI.isOperationLegal(ISD::STORE, IntVT) || |
| 7457 | !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) || |
| 7458 | !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT)) |
| 7459 | return SDValue(); |
| 7460 | |
| 7461 | unsigned LDAlign = LD->getAlignment(); |
| 7462 | unsigned STAlign = ST->getAlignment(); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 7463 | Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext()); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 7464 | unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7465 | if (LDAlign < ABIAlign || STAlign < ABIAlign) |
| 7466 | return SDValue(); |
| 7467 | |
| 7468 | SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(), |
| 7469 | LD->getChain(), LD->getBasePtr(), |
| 7470 | LD->getPointerInfo(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 7471 | false, false, false, LDAlign); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7472 | |
| 7473 | SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(), |
| 7474 | NewLD, ST->getBasePtr(), |
| 7475 | ST->getPointerInfo(), |
| 7476 | false, false, STAlign); |
| 7477 | |
| 7478 | AddToWorkList(NewLD.getNode()); |
| 7479 | AddToWorkList(NewST.getNode()); |
| 7480 | WorkListRemover DeadNodes(*this); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 7481 | DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1)); |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 7482 | ++LdStFP2Int; |
| 7483 | return NewST; |
| 7484 | } |
| 7485 | |
| 7486 | return SDValue(); |
| 7487 | } |
| 7488 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7489 | /// Returns the base pointer and an integer offset from that object. |
| 7490 | static std::pair<SDValue, int64_t> GetPointerBaseAndOffset(SDValue Ptr) { |
| 7491 | if (Ptr->getOpcode() == ISD::ADD && isa<ConstantSDNode>(Ptr->getOperand(1))) { |
| 7492 | int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue(); |
| 7493 | SDValue Base = Ptr->getOperand(0); |
| 7494 | return std::make_pair(Base, Offset); |
| 7495 | } |
| 7496 | |
| 7497 | return std::make_pair(Ptr, 0); |
| 7498 | } |
| 7499 | |
| 7500 | /// Holds a pointer to an LSBaseSDNode as well as information on where it |
| 7501 | /// is located in a sequence of memory operations connected by a chain. |
| 7502 | struct MemOpLink { |
| 7503 | MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq): |
| 7504 | MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { } |
| 7505 | // Ptr to the mem node. |
| 7506 | LSBaseSDNode *MemNode; |
| 7507 | // Offset from the base ptr. |
| 7508 | int64_t OffsetFromBase; |
| 7509 | // What is the sequence number of this mem node. |
| 7510 | // Lowest mem operand in the DAG starts at zero. |
| 7511 | unsigned SequenceNum; |
| 7512 | }; |
| 7513 | |
| 7514 | /// Sorts store nodes in a link according to their offset from a shared |
| 7515 | // base ptr. |
| 7516 | struct ConsecutiveMemoryChainSorter { |
| 7517 | bool operator()(MemOpLink LHS, MemOpLink RHS) { |
| 7518 | return LHS.OffsetFromBase < RHS.OffsetFromBase; |
| 7519 | } |
| 7520 | }; |
| 7521 | |
| 7522 | bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) { |
| 7523 | EVT MemVT = St->getMemoryVT(); |
| 7524 | int64_t ElementSizeBytes = MemVT.getSizeInBits()/8; |
| 7525 | |
| 7526 | // Don't merge vectors into wider inputs. |
| 7527 | if (MemVT.isVector() || !MemVT.isSimple()) |
| 7528 | return false; |
| 7529 | |
| 7530 | // Perform an early exit check. Do not bother looking at stored values that |
| 7531 | // are not constants or loads. |
| 7532 | SDValue StoredVal = St->getValue(); |
| 7533 | bool IsLoadSrc = isa<LoadSDNode>(StoredVal); |
| 7534 | if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) && |
| 7535 | !IsLoadSrc) |
| 7536 | return false; |
| 7537 | |
| 7538 | // Only look at ends of store sequences. |
| 7539 | SDValue Chain = SDValue(St, 1); |
| 7540 | if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE) |
| 7541 | return false; |
| 7542 | |
| 7543 | // This holds the base pointer and the offset in bytes from the base pointer. |
| 7544 | std::pair<SDValue, int64_t> BasePtr = |
| 7545 | GetPointerBaseAndOffset(St->getBasePtr()); |
| 7546 | |
| 7547 | // We must have a base and an offset. |
| 7548 | if (!BasePtr.first.getNode()) |
| 7549 | return false; |
| 7550 | |
| 7551 | // Do not handle stores to undef base pointers. |
| 7552 | if (BasePtr.first.getOpcode() == ISD::UNDEF) |
| 7553 | return false; |
| 7554 | |
| 7555 | SmallVector<MemOpLink, 8> StoreNodes; |
| 7556 | // Walk up the chain and look for nodes with offsets from the same |
| 7557 | // base pointer. Stop when reaching an instruction with a different kind |
| 7558 | // or instruction which has a different base pointer. |
| 7559 | unsigned Seq = 0; |
| 7560 | StoreSDNode *Index = St; |
| 7561 | while (Index) { |
| 7562 | // If the chain has more than one use, then we can't reorder the mem ops. |
| 7563 | if (Index != St && !SDValue(Index, 1)->hasOneUse()) |
| 7564 | break; |
| 7565 | |
| 7566 | // Find the base pointer and offset for this memory node. |
| 7567 | std::pair<SDValue, int64_t> Ptr = |
| 7568 | GetPointerBaseAndOffset(Index->getBasePtr()); |
| 7569 | |
| 7570 | // Check that the base pointer is the same as the original one. |
| 7571 | if (Ptr.first.getNode() != BasePtr.first.getNode()) |
| 7572 | break; |
| 7573 | |
| 7574 | // Check that the alignment is the same. |
| 7575 | if (Index->getAlignment() != St->getAlignment()) |
| 7576 | break; |
| 7577 | |
| 7578 | // The memory operands must not be volatile. |
| 7579 | if (Index->isVolatile() || Index->isIndexed()) |
| 7580 | break; |
| 7581 | |
| 7582 | // No truncation. |
| 7583 | if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index)) |
| 7584 | if (St->isTruncatingStore()) |
| 7585 | break; |
| 7586 | |
| 7587 | // The stored memory type must be the same. |
| 7588 | if (Index->getMemoryVT() != MemVT) |
| 7589 | break; |
| 7590 | |
| 7591 | // We do not allow unaligned stores because we want to prevent overriding |
| 7592 | // stores. |
| 7593 | if (Index->getAlignment()*8 != MemVT.getSizeInBits()) |
| 7594 | break; |
| 7595 | |
| 7596 | // We found a potential memory operand to merge. |
| 7597 | StoreNodes.push_back(MemOpLink(Index, Ptr.second, Seq++)); |
| 7598 | |
| 7599 | // Move up the chain to the next memory operation. |
| 7600 | Index = dyn_cast<StoreSDNode>(Index->getChain().getNode()); |
| 7601 | } |
| 7602 | |
| 7603 | // Check if there is anything to merge. |
| 7604 | if (StoreNodes.size() < 2) |
| 7605 | return false; |
| 7606 | |
| 7607 | // Sort the memory operands according to their distance from the base pointer. |
| 7608 | std::sort(StoreNodes.begin(), StoreNodes.end(), |
| 7609 | ConsecutiveMemoryChainSorter()); |
| 7610 | |
| 7611 | // Scan the memory operations on the chain and find the first non-consecutive |
| 7612 | // store memory address. |
| 7613 | unsigned LastConsecutiveStore = 0; |
| 7614 | int64_t StartAddress = StoreNodes[0].OffsetFromBase; |
| 7615 | for (unsigned i=1; i<StoreNodes.size(); ++i) { |
| 7616 | int64_t CurrAddress = StoreNodes[i].OffsetFromBase; |
| 7617 | if (CurrAddress - StartAddress != (ElementSizeBytes * i)) |
| 7618 | break; |
| 7619 | |
| 7620 | // Mark this node as useful. |
| 7621 | LastConsecutiveStore = i; |
| 7622 | } |
| 7623 | |
| 7624 | // The node with the lowest store address. |
| 7625 | LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; |
| 7626 | |
| 7627 | // Store the constants into memory as one consecutive store. |
| 7628 | if (!IsLoadSrc) { |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7629 | unsigned LastLegalType = 0; |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7630 | unsigned LastLegalVectorType = 0; |
| 7631 | bool NonZero = false; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7632 | for (unsigned i=0; i<LastConsecutiveStore+1; ++i) { |
| 7633 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7634 | SDValue StoredVal = St->getValue(); |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7635 | |
| 7636 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) { |
Benjamin Kramer | ebd7eab | 2012-10-05 18:19:44 +0000 | [diff] [blame] | 7637 | NonZero |= !C->isNullValue(); |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7638 | } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) { |
Benjamin Kramer | ebd7eab | 2012-10-05 18:19:44 +0000 | [diff] [blame] | 7639 | NonZero |= !C->getConstantFPValue()->isNullValue(); |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7640 | } else { |
| 7641 | // Non constant. |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7642 | break; |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7643 | } |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7644 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7645 | // Find a legal type for the constant store. |
| 7646 | unsigned StoreBW = (i+1) * ElementSizeBytes * 8; |
| 7647 | EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7648 | if (TLI.isTypeLegal(StoreTy)) |
| 7649 | LastLegalType = i+1; |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7650 | |
| 7651 | // Find a legal type for the vector store. |
| 7652 | EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1); |
| 7653 | if (TLI.isTypeLegal(Ty)) |
| 7654 | LastLegalVectorType = i + 1; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7655 | } |
| 7656 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7657 | // We only use vectors if the constant is known to be zero. |
| 7658 | if (NonZero) |
| 7659 | LastLegalVectorType = 0; |
| 7660 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7661 | // Check if we found a legal integer type to store. |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7662 | if (LastLegalType == 0 && LastLegalVectorType == 0) |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7663 | return false; |
| 7664 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7665 | bool UseVector = LastLegalVectorType > LastLegalType; |
| 7666 | unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType; |
| 7667 | |
| 7668 | // Make sure we have something to merge. |
| 7669 | if (NumElem < 2) |
| 7670 | return false; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7671 | |
| 7672 | unsigned EarliestNodeUsed = 0; |
| 7673 | for (unsigned i=0; i < NumElem; ++i) { |
| 7674 | // Find a chain for the new wide-store operand. Notice that some |
| 7675 | // of the store nodes that we found may not be selected for inclusion |
| 7676 | // in the wide store. The chain we use needs to be the chain of the |
| 7677 | // earliest store node which is *used* and replaced by the wide store. |
| 7678 | if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum) |
| 7679 | EarliestNodeUsed = i; |
| 7680 | } |
| 7681 | |
| 7682 | // The earliest Node in the DAG. |
| 7683 | LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode; |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7684 | DebugLoc DL = StoreNodes[0].MemNode->getDebugLoc(); |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7685 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7686 | SDValue StoredVal; |
| 7687 | if (UseVector) { |
| 7688 | // Find a legal type for the vector store. |
| 7689 | EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem); |
| 7690 | assert(TLI.isTypeLegal(Ty) && "Illegal vector store"); |
| 7691 | StoredVal = DAG.getConstant(0, Ty); |
| 7692 | } else { |
| 7693 | unsigned StoreBW = NumElem * ElementSizeBytes * 8; |
| 7694 | APInt StoreInt(StoreBW, 0); |
| 7695 | |
| 7696 | // Construct a single integer constant which is made of the smaller |
| 7697 | // constant inputs. |
| 7698 | bool IsLE = TLI.isLittleEndian(); |
| 7699 | for (unsigned i = 0; i < NumElem ; ++i) { |
| 7700 | unsigned Idx = IsLE ?(NumElem - 1 - i) : i; |
| 7701 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode); |
| 7702 | SDValue Val = St->getValue(); |
| 7703 | StoreInt<<=ElementSizeBytes*8; |
| 7704 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) { |
| 7705 | StoreInt|=C->getAPIntValue().zext(StoreBW); |
| 7706 | } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) { |
| 7707 | StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW); |
| 7708 | } else { |
| 7709 | assert(false && "Invalid constant element type"); |
| 7710 | } |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7711 | } |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7712 | |
| 7713 | // Create the new Load and Store operations. |
| 7714 | EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7715 | StoredVal = DAG.getConstant(StoreInt, StoreTy); |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7716 | } |
| 7717 | |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 7718 | SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal, |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7719 | FirstInChain->getBasePtr(), |
| 7720 | FirstInChain->getPointerInfo(), |
| 7721 | false, false, |
| 7722 | FirstInChain->getAlignment()); |
| 7723 | |
| 7724 | // Replace the first store with the new store |
| 7725 | CombineTo(EarliestOp, NewStore); |
| 7726 | // Erase all other stores. |
| 7727 | for (unsigned i = 0; i < NumElem ; ++i) { |
| 7728 | if (StoreNodes[i].MemNode == EarliestOp) |
| 7729 | continue; |
| 7730 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7731 | DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain()); |
| 7732 | removeFromWorkList(St); |
| 7733 | DAG.DeleteNode(St); |
| 7734 | } |
| 7735 | |
| 7736 | return true; |
| 7737 | } |
| 7738 | |
| 7739 | // Below we handle the case of multiple consecutive stores that |
| 7740 | // come from multiple consecutive loads. We merge them into a single |
| 7741 | // wide load and a single wide store. |
| 7742 | |
| 7743 | // Look for load nodes which are used by the stored values. |
| 7744 | SmallVector<MemOpLink, 8> LoadNodes; |
| 7745 | |
| 7746 | // Find acceptable loads. Loads need to have the same chain (token factor), |
| 7747 | // must not be zext, volatile, indexed, and they must be consecutive. |
| 7748 | SDValue LdBasePtr; |
| 7749 | for (unsigned i=0; i<LastConsecutiveStore+1; ++i) { |
| 7750 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7751 | LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue()); |
| 7752 | if (!Ld) break; |
| 7753 | |
| 7754 | // Loads must only have one use. |
| 7755 | if (!Ld->hasNUsesOfValue(1, 0)) |
| 7756 | break; |
| 7757 | |
| 7758 | // Check that the alignment is the same as the stores. |
| 7759 | if (Ld->getAlignment() != St->getAlignment()) |
| 7760 | break; |
| 7761 | |
| 7762 | // The memory operands must not be volatile. |
| 7763 | if (Ld->isVolatile() || Ld->isIndexed()) |
| 7764 | break; |
| 7765 | |
| 7766 | // We do not accept ext loads. |
| 7767 | if (Ld->getExtensionType() != ISD::NON_EXTLOAD) |
| 7768 | break; |
| 7769 | |
| 7770 | // The stored memory type must be the same. |
| 7771 | if (Ld->getMemoryVT() != MemVT) |
| 7772 | break; |
| 7773 | |
| 7774 | std::pair<SDValue, int64_t> LdPtr = |
| 7775 | GetPointerBaseAndOffset(Ld->getBasePtr()); |
| 7776 | |
| 7777 | // If this is not the first ptr that we check. |
| 7778 | if (LdBasePtr.getNode()) { |
| 7779 | // The base ptr must be the same. |
| 7780 | if (LdPtr.first != LdBasePtr) |
| 7781 | break; |
| 7782 | } else { |
| 7783 | // Check that all other base pointers are the same as this one. |
| 7784 | LdBasePtr = LdPtr.first; |
| 7785 | } |
| 7786 | |
| 7787 | // We found a potential memory operand to merge. |
| 7788 | LoadNodes.push_back(MemOpLink(Ld, LdPtr.second, 0)); |
| 7789 | } |
| 7790 | |
| 7791 | if (LoadNodes.size() < 2) |
| 7792 | return false; |
| 7793 | |
| 7794 | // Scan the memory operations on the chain and find the first non-consecutive |
| 7795 | // load memory address. These variables hold the index in the store node |
| 7796 | // array. |
| 7797 | unsigned LastConsecutiveLoad = 0; |
| 7798 | // This variable refers to the size and not index in the array. |
| 7799 | unsigned LastLegalVectorType = 0; |
| 7800 | unsigned LastLegalIntegerType = 0; |
| 7801 | StartAddress = LoadNodes[0].OffsetFromBase; |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7802 | SDValue FirstChain = LoadNodes[0].MemNode->getChain(); |
| 7803 | for (unsigned i = 1; i < LoadNodes.size(); ++i) { |
| 7804 | // All loads much share the same chain. |
| 7805 | if (LoadNodes[i].MemNode->getChain() != FirstChain) |
| 7806 | break; |
| 7807 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7808 | int64_t CurrAddress = LoadNodes[i].OffsetFromBase; |
| 7809 | if (CurrAddress - StartAddress != (ElementSizeBytes * i)) |
| 7810 | break; |
| 7811 | LastConsecutiveLoad = i; |
| 7812 | |
| 7813 | // Find a legal type for the vector store. |
| 7814 | EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1); |
| 7815 | if (TLI.isTypeLegal(StoreTy)) |
| 7816 | LastLegalVectorType = i + 1; |
| 7817 | |
| 7818 | // Find a legal type for the integer store. |
| 7819 | unsigned StoreBW = (i+1) * ElementSizeBytes * 8; |
| 7820 | StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7821 | if (TLI.isTypeLegal(StoreTy)) |
| 7822 | LastLegalIntegerType = i + 1; |
| 7823 | } |
| 7824 | |
| 7825 | // Only use vector types if the vector type is larger than the integer type. |
| 7826 | // If they are the same, use integers. |
| 7827 | bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType; |
| 7828 | unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType); |
| 7829 | |
| 7830 | // We add +1 here because the LastXXX variables refer to location while |
| 7831 | // the NumElem refers to array/index size. |
| 7832 | unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1; |
| 7833 | NumElem = std::min(LastLegalType, NumElem); |
| 7834 | |
| 7835 | if (NumElem < 2) |
| 7836 | return false; |
| 7837 | |
| 7838 | // The earliest Node in the DAG. |
| 7839 | unsigned EarliestNodeUsed = 0; |
| 7840 | LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode; |
| 7841 | for (unsigned i=1; i<NumElem; ++i) { |
| 7842 | // Find a chain for the new wide-store operand. Notice that some |
| 7843 | // of the store nodes that we found may not be selected for inclusion |
| 7844 | // in the wide store. The chain we use needs to be the chain of the |
| 7845 | // earliest store node which is *used* and replaced by the wide store. |
| 7846 | if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum) |
| 7847 | EarliestNodeUsed = i; |
| 7848 | } |
| 7849 | |
| 7850 | // Find if it is better to use vectors or integers to load and store |
| 7851 | // to memory. |
| 7852 | EVT JointMemOpVT; |
| 7853 | if (UseVectorTy) { |
| 7854 | JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem); |
| 7855 | } else { |
| 7856 | unsigned StoreBW = NumElem * ElementSizeBytes * 8; |
| 7857 | JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW); |
| 7858 | } |
| 7859 | |
| 7860 | DebugLoc LoadDL = LoadNodes[0].MemNode->getDebugLoc(); |
| 7861 | DebugLoc StoreDL = StoreNodes[0].MemNode->getDebugLoc(); |
| 7862 | |
| 7863 | LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode); |
| 7864 | SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL, |
| 7865 | FirstLoad->getChain(), |
| 7866 | FirstLoad->getBasePtr(), |
| 7867 | FirstLoad->getPointerInfo(), |
| 7868 | false, false, false, |
| 7869 | FirstLoad->getAlignment()); |
| 7870 | |
| 7871 | SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad, |
| 7872 | FirstInChain->getBasePtr(), |
| 7873 | FirstInChain->getPointerInfo(), false, false, |
| 7874 | FirstInChain->getAlignment()); |
| 7875 | |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7876 | // Replace one of the loads with the new load. |
| 7877 | LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode); |
| 7878 | DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), |
| 7879 | SDValue(NewLoad.getNode(), 1)); |
| 7880 | |
| 7881 | // Remove the rest of the load chains. |
| 7882 | for (unsigned i = 1; i < NumElem ; ++i) { |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7883 | // Replace all chain users of the old load nodes with the chain of the new |
| 7884 | // load node. |
| 7885 | LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode); |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7886 | DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain()); |
| 7887 | } |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7888 | |
Nadav Rotem | 2e7d381 | 2012-10-03 19:30:31 +0000 | [diff] [blame] | 7889 | // Replace the first store with the new store. |
| 7890 | CombineTo(EarliestOp, NewStore); |
| 7891 | // Erase all other stores. |
| 7892 | for (unsigned i = 0; i < NumElem ; ++i) { |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 7893 | // Remove all Store nodes. |
| 7894 | if (StoreNodes[i].MemNode == EarliestOp) |
| 7895 | continue; |
| 7896 | StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); |
| 7897 | DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain()); |
| 7898 | removeFromWorkList(St); |
| 7899 | DAG.DeleteNode(St); |
| 7900 | } |
| 7901 | |
| 7902 | return true; |
| 7903 | } |
| 7904 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7905 | SDValue DAGCombiner::visitSTORE(SDNode *N) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7906 | StoreSDNode *ST = cast<StoreSDNode>(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7907 | SDValue Chain = ST->getChain(); |
| 7908 | SDValue Value = ST->getValue(); |
| 7909 | SDValue Ptr = ST->getBasePtr(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7910 | |
Evan Cheng | 59d5b68 | 2007-05-07 21:27:48 +0000 | [diff] [blame] | 7911 | // 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] | 7912 | // resultant store does not need a higher alignment than the original. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 7913 | if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() && |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 7914 | ST->isUnindexed()) { |
Dan Gohman | 1ba519b | 2009-02-20 23:29:13 +0000 | [diff] [blame] | 7915 | unsigned OrigAlign = ST->getAlignment(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7916 | EVT SVT = Value.getOperand(0).getValueType(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 7917 | unsigned Align = TLI.getDataLayout()-> |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 7918 | getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext())); |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 7919 | if (Align <= OrigAlign && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 7920 | ((!LegalOperations && !ST->isVolatile()) || |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 7921 | TLI.isOperationLegalOrCustom(ISD::STORE, SVT))) |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7922 | return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0), |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7923 | Ptr, ST->getPointerInfo(), ST->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7924 | ST->isNonTemporal(), OrigAlign); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 7925 | } |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 7926 | |
Chris Lattner | b3452ea | 2011-04-09 02:32:02 +0000 | [diff] [blame] | 7927 | // Turn 'store undef, Ptr' -> nothing. |
| 7928 | if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed()) |
| 7929 | return Chain; |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 7930 | |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7931 | // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7932 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) { |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 7933 | // NOTE: If the original store is volatile, this transform must not increase |
| 7934 | // the number of stores. For example, on x86-32 an f64 can be stored in one |
| 7935 | // processor operation but an i64 (which is not legal) requires two. So the |
| 7936 | // transform should not be done in this case. |
Evan Cheng | 25ece66 | 2006-12-11 17:25:19 +0000 | [diff] [blame] | 7937 | if (Value.getOpcode() != ISD::TargetConstantFP) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7938 | SDValue Tmp; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7939 | switch (CFP->getValueType(0).getSimpleVT().SimpleTy) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 7940 | default: llvm_unreachable("Unknown FP type"); |
Pete Cooper | 438c040 | 2012-06-21 18:00:39 +0000 | [diff] [blame] | 7941 | case MVT::f16: // We don't do this for these yet. |
| 7942 | case MVT::f80: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7943 | case MVT::f128: |
| 7944 | case MVT::ppcf128: |
Dale Johannesen | c7b21d5 | 2007-09-18 18:36:59 +0000 | [diff] [blame] | 7945 | break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7946 | case MVT::f32: |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7947 | if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7948 | TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 7949 | Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF(). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7950 | bitcastToAPInt().getZExtValue(), MVT::i32); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7951 | return DAG.getStore(Chain, N->getDebugLoc(), Tmp, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7952 | Ptr, ST->getPointerInfo(), ST->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7953 | ST->isNonTemporal(), ST->getAlignment()); |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7954 | } |
| 7955 | break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7956 | case MVT::f64: |
Chris Lattner | 2392ae7 | 2010-04-15 04:48:01 +0000 | [diff] [blame] | 7957 | if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 7958 | !ST->isVolatile()) || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7959 | TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) { |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 7960 | Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt(). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7961 | getZExtValue(), MVT::i64); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7962 | return DAG.getStore(Chain, N->getDebugLoc(), Tmp, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7963 | Ptr, ST->getPointerInfo(), ST->isVolatile(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7964 | ST->isNonTemporal(), ST->getAlignment()); |
Chris Lattner | b3452ea | 2011-04-09 02:32:02 +0000 | [diff] [blame] | 7965 | } |
Owen Anderson | a34d936 | 2011-04-14 17:30:49 +0000 | [diff] [blame] | 7966 | |
Chris Lattner | b3452ea | 2011-04-09 02:32:02 +0000 | [diff] [blame] | 7967 | if (!ST->isVolatile() && |
| 7968 | TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 7969 | // 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] | 7970 | // argument passing. Since this is so common, custom legalize the |
| 7971 | // 64-bit integer store into two 32-bit stores. |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 7972 | uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7973 | SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32); |
| 7974 | SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 7975 | if (TLI.isBigEndian()) std::swap(Lo, Hi); |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7976 | |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 7977 | unsigned Alignment = ST->getAlignment(); |
| 7978 | bool isVolatile = ST->isVolatile(); |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7979 | bool isNonTemporal = ST->isNonTemporal(); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 7980 | |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7981 | SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7982 | Ptr, ST->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7983 | isVolatile, isNonTemporal, |
| 7984 | ST->getAlignment()); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7985 | Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr, |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7986 | DAG.getConstant(4, Ptr.getValueType())); |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 7987 | Alignment = MinAlign(Alignment, 4U); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7988 | SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 7989 | Ptr, ST->getPointerInfo().getWithOffset(4), |
| 7990 | isVolatile, isNonTemporal, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 7991 | Alignment); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7992 | return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other, |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7993 | St0, St1); |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7994 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 7995 | |
Chris Lattner | 62be1a7 | 2006-12-12 04:16:14 +0000 | [diff] [blame] | 7996 | break; |
Evan Cheng | 25ece66 | 2006-12-11 17:25:19 +0000 | [diff] [blame] | 7997 | } |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7998 | } |
Nate Begeman | 2cbba89 | 2006-12-11 02:23:46 +0000 | [diff] [blame] | 7999 | } |
| 8000 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 8001 | // Try to infer better alignment information than the store already has. |
| 8002 | if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) { |
Evan Cheng | ed1c0c7 | 2011-11-28 22:37:34 +0000 | [diff] [blame] | 8003 | if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { |
| 8004 | if (Align > ST->getAlignment()) |
| 8005 | return DAG.getTruncStore(Chain, N->getDebugLoc(), Value, |
| 8006 | Ptr, ST->getPointerInfo(), ST->getMemoryVT(), |
| 8007 | ST->isVolatile(), ST->isNonTemporal(), Align); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 8008 | } |
| 8009 | } |
| 8010 | |
Evan Cheng | 31959b1 | 2011-02-02 01:06:55 +0000 | [diff] [blame] | 8011 | // Try transforming a pair floating point load / store ops to integer |
| 8012 | // load / store ops. |
| 8013 | SDValue NewST = TransformFPLoadStorePair(N); |
| 8014 | if (NewST.getNode()) |
| 8015 | return NewST; |
| 8016 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8017 | if (CombinerAA) { |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8018 | // Walk up chain skipping non-aliasing memory nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8019 | SDValue BetterChain = FindBetterChain(N, Chain); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8020 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 8021 | // If there is a better chain. |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8022 | if (Chain != BetterChain) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8023 | SDValue ReplStore; |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 8024 | |
| 8025 | // Replace the chain to avoid dependency. |
Jim Laskey | d4edf2c | 2006-10-14 12:14:27 +0000 | [diff] [blame] | 8026 | if (ST->isTruncatingStore()) { |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8027 | ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr, |
Chris Lattner | da2d8e1 | 2010-09-21 17:42:31 +0000 | [diff] [blame] | 8028 | ST->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8029 | ST->getMemoryVT(), ST->isVolatile(), |
| 8030 | ST->isNonTemporal(), ST->getAlignment()); |
Jim Laskey | d4edf2c | 2006-10-14 12:14:27 +0000 | [diff] [blame] | 8031 | } else { |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8032 | ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr, |
Chris Lattner | 6229d0a | 2010-09-21 18:41:36 +0000 | [diff] [blame] | 8033 | ST->getPointerInfo(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8034 | ST->isVolatile(), ST->isNonTemporal(), |
| 8035 | ST->getAlignment()); |
Jim Laskey | d4edf2c | 2006-10-14 12:14:27 +0000 | [diff] [blame] | 8036 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8037 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8038 | // Create token to keep both nodes around. |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8039 | SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8040 | MVT::Other, Chain, ReplStore); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8041 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 8042 | // Make sure the new and old chains are cleaned up. |
| 8043 | AddToWorkList(Token.getNode()); |
| 8044 | |
Jim Laskey | 274062c | 2006-10-13 23:32:28 +0000 | [diff] [blame] | 8045 | // Don't add users to work list. |
| 8046 | return CombineTo(N, Token, false); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 8047 | } |
Jim Laskey | d1aed7a | 2006-09-21 16:28:59 +0000 | [diff] [blame] | 8048 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8049 | |
Evan Cheng | 33dbedc | 2006-11-05 09:31:14 +0000 | [diff] [blame] | 8050 | // Try transforming N to an indexed store. |
Evan Cheng | bbd6f6e | 2006-11-07 09:03:05 +0000 | [diff] [blame] | 8051 | if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8052 | return SDValue(N, 0); |
Evan Cheng | 33dbedc | 2006-11-05 09:31:14 +0000 | [diff] [blame] | 8053 | |
Chris Lattner | 3c87285 | 2007-12-29 06:26:16 +0000 | [diff] [blame] | 8054 | // FIXME: is there such a thing as a truncating indexed store? |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8055 | if (ST->isTruncatingStore() && ST->isUnindexed() && |
Nadav Rotem | baff46f | 2011-06-15 11:19:12 +0000 | [diff] [blame] | 8056 | Value.getValueType().isInteger()) { |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 8057 | // See if we can simplify the input to this truncstore with knowledge that |
| 8058 | // only the low bits are being used. For example: |
| 8059 | // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8" |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8060 | SDValue Shorter = |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 8061 | GetDemandedBits(Value, |
Nadav Rotem | baff46f | 2011-06-15 11:19:12 +0000 | [diff] [blame] | 8062 | APInt::getLowBitsSet( |
| 8063 | Value.getValueType().getScalarType().getSizeInBits(), |
| 8064 | ST->getMemoryVT().getScalarType().getSizeInBits())); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8065 | AddToWorkList(Value.getNode()); |
| 8066 | if (Shorter.getNode()) |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8067 | return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter, |
Chris Lattner | da2d8e1 | 2010-09-21 17:42:31 +0000 | [diff] [blame] | 8068 | Ptr, ST->getPointerInfo(), ST->getMemoryVT(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8069 | ST->isVolatile(), ST->isNonTemporal(), |
| 8070 | ST->getAlignment()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8071 | |
Chris Lattner | e33544c | 2007-10-13 06:58:48 +0000 | [diff] [blame] | 8072 | // Otherwise, see if we can simplify the operation with |
| 8073 | // SimplifyDemandedBits, which only works if the value has a single use. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 8074 | if (SimplifyDemandedBits(Value, |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 8075 | APInt::getLowBitsSet( |
| 8076 | Value.getValueType().getScalarType().getSizeInBits(), |
| 8077 | ST->getMemoryVT().getScalarType().getSizeInBits()))) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8078 | return SDValue(N, 0); |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 8079 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8080 | |
Chris Lattner | 3c87285 | 2007-12-29 06:26:16 +0000 | [diff] [blame] | 8081 | // If this is a load followed by a store to the same location, then the store |
| 8082 | // is dead/noop. |
| 8083 | if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) { |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 8084 | if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() && |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8085 | ST->isUnindexed() && !ST->isVolatile() && |
Chris Lattner | 07649d9 | 2008-01-08 23:08:06 +0000 | [diff] [blame] | 8086 | // There can't be any side effects between the load and store, such as |
| 8087 | // a call or store. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8088 | Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) { |
Chris Lattner | 3c87285 | 2007-12-29 06:26:16 +0000 | [diff] [blame] | 8089 | // The store is dead, remove it. |
| 8090 | return Chain; |
| 8091 | } |
| 8092 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 8093 | |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8094 | // If this is an FP_ROUND or TRUNC followed by a store, fold this into a |
| 8095 | // truncating store. We can do this even if this is already a truncstore. |
| 8096 | if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8097 | && Value.getNode()->hasOneUse() && ST->isUnindexed() && |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8098 | TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 8099 | ST->getMemoryVT())) { |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8100 | return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0), |
Chris Lattner | da2d8e1 | 2010-09-21 17:42:31 +0000 | [diff] [blame] | 8101 | Ptr, ST->getPointerInfo(), ST->getMemoryVT(), |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 8102 | ST->isVolatile(), ST->isNonTemporal(), |
| 8103 | ST->getAlignment()); |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 8104 | } |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 8105 | |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 8106 | // Only perform this optimization before the types are legal, because we |
Nadav Rotem | ea2c50c | 2012-10-04 22:35:15 +0000 | [diff] [blame] | 8107 | // don't want to perform this optimization on every DAGCombine invocation. |
Nadav Rotem | c653de6 | 2012-10-03 16:11:15 +0000 | [diff] [blame] | 8108 | if (!LegalTypes && MergeConsecutiveStores(ST)) |
| 8109 | return SDValue(N, 0); |
| 8110 | |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 8111 | return ReduceLoadOpStoreWidth(N); |
Chris Lattner | 87514ca | 2005-10-10 22:31:19 +0000 | [diff] [blame] | 8112 | } |
| 8113 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8114 | SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) { |
| 8115 | SDValue InVec = N->getOperand(0); |
| 8116 | SDValue InVal = N->getOperand(1); |
| 8117 | SDValue EltNo = N->getOperand(2); |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8118 | DebugLoc dl = N->getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8119 | |
Bob Wilson | 492fd45 | 2010-05-19 23:42:58 +0000 | [diff] [blame] | 8120 | // If the inserted element is an UNDEF, just use the input vector. |
| 8121 | if (InVal.getOpcode() == ISD::UNDEF) |
| 8122 | return InVec; |
| 8123 | |
Nadav Rotem | 609d54e | 2011-02-12 14:40:33 +0000 | [diff] [blame] | 8124 | EVT VT = InVec.getValueType(); |
| 8125 | |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 8126 | // If we can't generate a legal BUILD_VECTOR, exit |
Nadav Rotem | 609d54e | 2011-02-12 14:40:33 +0000 | [diff] [blame] | 8127 | if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) |
| 8128 | return SDValue(); |
| 8129 | |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8130 | // Check that we know which element is being inserted |
| 8131 | if (!isa<ConstantSDNode>(EltNo)) |
| 8132 | return SDValue(); |
| 8133 | unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8134 | |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8135 | // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially |
| 8136 | // be converted to a BUILD_VECTOR). Fill in the Ops vector with the |
| 8137 | // vector elements. |
| 8138 | SmallVector<SDValue, 8> Ops; |
| 8139 | if (InVec.getOpcode() == ISD::BUILD_VECTOR) { |
| 8140 | Ops.append(InVec.getNode()->op_begin(), |
| 8141 | InVec.getNode()->op_end()); |
| 8142 | } else if (InVec.getOpcode() == ISD::UNDEF) { |
| 8143 | unsigned NElts = VT.getVectorNumElements(); |
| 8144 | Ops.append(NElts, DAG.getUNDEF(InVal.getValueType())); |
| 8145 | } else { |
| 8146 | return SDValue(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8147 | } |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 8148 | |
| 8149 | // Insert the element |
| 8150 | if (Elt < Ops.size()) { |
| 8151 | // All the operands of BUILD_VECTOR must have the same type; |
| 8152 | // we enforce that here. |
| 8153 | EVT OpVT = Ops[0].getValueType(); |
| 8154 | if (InVal.getValueType() != OpVT) |
| 8155 | InVal = OpVT.bitsGT(InVal.getValueType()) ? |
| 8156 | DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) : |
| 8157 | DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal); |
| 8158 | Ops[Elt] = InVal; |
| 8159 | } |
| 8160 | |
| 8161 | // Return the new vector |
| 8162 | return DAG.getNode(ISD::BUILD_VECTOR, dl, |
| 8163 | VT, &Ops[0], Ops.size()); |
Chris Lattner | ca24244 | 2006-03-19 01:27:56 +0000 | [diff] [blame] | 8164 | } |
| 8165 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8166 | SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) { |
Mon P Wang | 7ac9cdf | 2009-01-17 00:07:25 +0000 | [diff] [blame] | 8167 | // (vextract (scalar_to_vector val, 0) -> val |
| 8168 | SDValue InVec = N->getOperand(0); |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8169 | EVT VT = InVec.getValueType(); |
| 8170 | EVT NVT = N->getValueType(0); |
Mon P Wang | 7ac9cdf | 2009-01-17 00:07:25 +0000 | [diff] [blame] | 8171 | |
Duncan Sands | c356f33 | 2011-05-09 08:03:33 +0000 | [diff] [blame] | 8172 | if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) { |
| 8173 | // Check if the result type doesn't match the inserted element type. A |
| 8174 | // SCALAR_TO_VECTOR may truncate the inserted element and the |
| 8175 | // EXTRACT_VECTOR_ELT may widen the extracted vector. |
| 8176 | SDValue InOp = InVec.getOperand(0); |
Duncan Sands | c356f33 | 2011-05-09 08:03:33 +0000 | [diff] [blame] | 8177 | if (InOp.getValueType() != NVT) { |
| 8178 | assert(InOp.getValueType().isInteger() && NVT.isInteger()); |
| 8179 | return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT); |
| 8180 | } |
| 8181 | return InOp; |
| 8182 | } |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8183 | |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8184 | SDValue EltNo = N->getOperand(1); |
| 8185 | bool ConstEltNo = isa<ConstantSDNode>(EltNo); |
| 8186 | |
| 8187 | // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT. |
| 8188 | // We only perform this optimization before the op legalization phase because |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 8189 | // we may introduce new vector instructions which are not backed by TD |
| 8190 | // patterns. For example on AVX, extracting elements from a wide vector |
| 8191 | // without using extract_subvector. |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8192 | if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE |
| 8193 | && ConstEltNo && !LegalOperations) { |
| 8194 | int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
| 8195 | int NumElem = VT.getVectorNumElements(); |
| 8196 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec); |
| 8197 | // Find the new index to extract from. |
| 8198 | int OrigElt = SVOp->getMaskElt(Elt); |
| 8199 | |
| 8200 | // Extracting an undef index is undef. |
| 8201 | if (OrigElt == -1) |
| 8202 | return DAG.getUNDEF(NVT); |
| 8203 | |
| 8204 | // Select the right vector half to extract from. |
| 8205 | if (OrigElt < NumElem) { |
| 8206 | InVec = InVec->getOperand(0); |
| 8207 | } else { |
| 8208 | InVec = InVec->getOperand(1); |
| 8209 | OrigElt -= NumElem; |
| 8210 | } |
| 8211 | |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 8212 | EVT IndexTy = N->getOperand(1).getValueType(); |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8213 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT, |
Jim Grosbach | a249f7d | 2012-05-08 20:56:07 +0000 | [diff] [blame] | 8214 | InVec, DAG.getConstant(OrigElt, IndexTy)); |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8215 | } |
| 8216 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8217 | // Perform only after legalization to ensure build_vector / vector_shuffle |
| 8218 | // optimizations have already been done. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 8219 | if (!LegalOperations) return SDValue(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8220 | |
Mon P Wang | 7ac9cdf | 2009-01-17 00:07:25 +0000 | [diff] [blame] | 8221 | // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size) |
| 8222 | // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size) |
| 8223 | // (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] | 8224 | |
Nadav Rotem | ba05c91 | 2012-01-17 21:44:01 +0000 | [diff] [blame] | 8225 | if (ConstEltNo) { |
Eric Christopher | caebdd4 | 2010-11-03 09:36:40 +0000 | [diff] [blame] | 8226 | int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8227 | bool NewLoad = false; |
Mon P Wang | a60b523 | 2008-12-11 00:26:16 +0000 | [diff] [blame] | 8228 | bool BCNumEltsChanged = false; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8229 | EVT ExtVT = VT.getVectorElementType(); |
| 8230 | EVT LVT = ExtVT; |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8231 | |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8232 | // If the result of load has to be truncated, then it's not necessarily |
| 8233 | // profitable. |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8234 | if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT)) |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8235 | return SDValue(); |
| 8236 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8237 | if (InVec.getOpcode() == ISD::BITCAST) { |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8238 | // Don't duplicate a load with other uses. |
| 8239 | if (!InVec.hasOneUse()) |
| 8240 | return SDValue(); |
| 8241 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8242 | EVT BCVT = InVec.getOperand(0).getValueType(); |
| 8243 | if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8244 | return SDValue(); |
Mon P Wang | a60b523 | 2008-12-11 00:26:16 +0000 | [diff] [blame] | 8245 | if (VT.getVectorNumElements() != BCVT.getVectorNumElements()) |
| 8246 | BCNumEltsChanged = true; |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8247 | InVec = InVec.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8248 | ExtVT = BCVT.getVectorElementType(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8249 | NewLoad = true; |
| 8250 | } |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8251 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8252 | LoadSDNode *LN0 = NULL; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8253 | const ShuffleVectorSDNode *SVN = NULL; |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8254 | if (ISD::isNormalLoad(InVec.getNode())) { |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8255 | LN0 = cast<LoadSDNode>(InVec); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8256 | } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR && |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8257 | InVec.getOperand(0).getValueType() == ExtVT && |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8258 | ISD::isNormalLoad(InVec.getOperand(0).getNode())) { |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8259 | // Don't duplicate a load with other uses. |
| 8260 | if (!InVec.hasOneUse()) |
| 8261 | return SDValue(); |
| 8262 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8263 | LN0 = cast<LoadSDNode>(InVec.getOperand(0)); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8264 | } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) { |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8265 | // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1) |
| 8266 | // => |
| 8267 | // (load $addr+1*size) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8268 | |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8269 | // Don't duplicate a load with other uses. |
| 8270 | if (!InVec.hasOneUse()) |
| 8271 | return SDValue(); |
| 8272 | |
Mon P Wang | a60b523 | 2008-12-11 00:26:16 +0000 | [diff] [blame] | 8273 | // If the bit convert changed the number of elements, it is unsafe |
| 8274 | // to examine the mask. |
| 8275 | if (BCNumEltsChanged) |
| 8276 | return SDValue(); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8277 | |
| 8278 | // Select the input vector, guarding against out of range extract vector. |
| 8279 | unsigned NumElems = VT.getVectorNumElements(); |
Eric Christopher | caebdd4 | 2010-11-03 09:36:40 +0000 | [diff] [blame] | 8280 | int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8281 | InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1); |
| 8282 | |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8283 | if (InVec.getOpcode() == ISD::BITCAST) { |
| 8284 | // Don't duplicate a load with other uses. |
| 8285 | if (!InVec.hasOneUse()) |
| 8286 | return SDValue(); |
| 8287 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8288 | InVec = InVec.getOperand(0); |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8289 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8290 | if (ISD::isNormalLoad(InVec.getNode())) { |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8291 | LN0 = cast<LoadSDNode>(InVec); |
Ted Kremenek | d0e88f3 | 2010-04-08 18:49:30 +0000 | [diff] [blame] | 8292 | Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems; |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8293 | } |
| 8294 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8295 | |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8296 | // Make sure we found a non-volatile load and the extractelement is |
| 8297 | // the only use. |
Nadav Rotem | 42febc6 | 2011-05-11 14:40:50 +0000 | [diff] [blame] | 8298 | if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8299 | return SDValue(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8300 | |
Eric Christopher | d81f17a | 2010-11-03 20:44:42 +0000 | [diff] [blame] | 8301 | // If Idx was -1 above, Elt is going to be -1, so just return undef. |
| 8302 | if (Elt == -1) |
Eli Friedman | ed4b427 | 2011-07-25 22:25:42 +0000 | [diff] [blame] | 8303 | return DAG.getUNDEF(LVT); |
Eric Christopher | d81f17a | 2010-11-03 20:44:42 +0000 | [diff] [blame] | 8304 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8305 | unsigned Align = LN0->getAlignment(); |
| 8306 | if (NewLoad) { |
| 8307 | // Check the resultant load doesn't need a higher alignment than the |
| 8308 | // original load. |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8309 | unsigned NewAlign = |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 8310 | TLI.getDataLayout() |
Eric Christopher | 503a64d | 2010-12-09 04:48:06 +0000 | [diff] [blame] | 8311 | ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext())); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8312 | |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 8313 | if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8314 | return SDValue(); |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8315 | |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8316 | Align = NewAlign; |
| 8317 | } |
| 8318 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8319 | SDValue NewPtr = LN0->getBasePtr(); |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 8320 | unsigned PtrOff = 0; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8321 | |
Eric Christopher | d81f17a | 2010-11-03 20:44:42 +0000 | [diff] [blame] | 8322 | if (Elt) { |
Chris Lattner | fa45901 | 2010-09-21 16:08:50 +0000 | [diff] [blame] | 8323 | PtrOff = LVT.getSizeInBits() * Elt / 8; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8324 | EVT PtrType = NewPtr.getValueType(); |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8325 | if (TLI.isBigEndian()) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8326 | PtrOff = VT.getSizeInBits() / 8 - PtrOff; |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8327 | NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr, |
Evan Cheng | 77f0b7a | 2008-05-13 08:35:03 +0000 | [diff] [blame] | 8328 | DAG.getConstant(PtrOff, PtrType)); |
| 8329 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8330 | |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8331 | // The replacement we need to do here is a little tricky: we need to |
| 8332 | // replace an extractelement of a load with a load. |
| 8333 | // Use ReplaceAllUsesOfValuesWith to do the replacement. |
Eli Friedman | d6e2560 | 2011-12-26 22:49:32 +0000 | [diff] [blame] | 8334 | // Note that this replacement assumes that the extractvalue is the only |
| 8335 | // use of the load; that's okay because we don't want to perform this |
| 8336 | // transformation in other cases anyway. |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8337 | SDValue Load; |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8338 | SDValue Chain; |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8339 | if (NVT.bitsGT(LVT)) { |
| 8340 | // If the result type of vextract is wider than the load, then issue an |
| 8341 | // extending load instead. |
| 8342 | ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT) |
| 8343 | ? ISD::ZEXTLOAD : ISD::EXTLOAD; |
| 8344 | Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(), |
| 8345 | NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff), |
| 8346 | LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align); |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8347 | Chain = Load.getValue(1); |
| 8348 | } else { |
Evan Cheng | 84387ea | 2012-03-13 22:00:52 +0000 | [diff] [blame] | 8349 | Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr, |
| 8350 | LN0->getPointerInfo().getWithOffset(PtrOff), |
| 8351 | LN0->isVolatile(), LN0->isNonTemporal(), |
| 8352 | LN0->isInvariant(), Align); |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8353 | Chain = Load.getValue(1); |
| 8354 | if (NVT.bitsLT(LVT)) |
| 8355 | Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load); |
| 8356 | else |
| 8357 | Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load); |
| 8358 | } |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8359 | WorkListRemover DeadNodes(*this); |
| 8360 | SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) }; |
Evan Cheng | a03d366 | 2012-03-13 22:16:11 +0000 | [diff] [blame] | 8361 | SDValue To[] = { Load, Chain }; |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 8362 | DAG.ReplaceAllUsesOfValuesWith(From, To, 2); |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8363 | // Since we're explcitly calling ReplaceAllUses, add the new node to the |
| 8364 | // worklist explicitly as well. |
| 8365 | AddToWorkList(Load.getNode()); |
Craig Topper | 0c9da21 | 2012-03-20 05:28:39 +0000 | [diff] [blame] | 8366 | AddUsersToWorkList(Load.getNode()); // Add users too |
Eli Friedman | 4db4add | 2011-11-16 23:50:22 +0000 | [diff] [blame] | 8367 | // Make sure to revisit this node to clean it up; it will usually be dead. |
| 8368 | AddToWorkList(N); |
| 8369 | return SDValue(N, 0); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8370 | } |
Bill Wendling | c144a57 | 2009-01-30 23:36:47 +0000 | [diff] [blame] | 8371 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8372 | return SDValue(); |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8373 | } |
Evan Cheng | 513da43 | 2007-10-06 08:19:55 +0000 | [diff] [blame] | 8374 | |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8375 | // Simplify (build_vec (ext )) to (bitcast (build_vec )) |
| 8376 | SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) { |
| 8377 | // We perform this optimization post type-legalization because |
| 8378 | // the type-legalizer often scalarizes integer-promoted vectors. |
| 8379 | // Performing this optimization before may create bit-casts which |
| 8380 | // will be type-legalized to complex code sequences. |
| 8381 | // We perform this optimization only before the operation legalizer because we |
| 8382 | // may introduce illegal operations. |
| 8383 | if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes) |
| 8384 | return SDValue(); |
| 8385 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8386 | unsigned NumInScalars = N->getNumOperands(); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8387 | DebugLoc dl = N->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8388 | EVT VT = N->getValueType(0); |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 8389 | |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8390 | // Check to see if this is a BUILD_VECTOR of a bunch of values |
| 8391 | // which come from any_extend or zero_extend nodes. If so, we can create |
| 8392 | // 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] | 8393 | // optimizations. We do not handle sign-extend because we can't fill the sign |
| 8394 | // using shuffles. |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8395 | EVT SourceType = MVT::Other; |
Craig Topper | d3b5889 | 2012-01-17 09:09:48 +0000 | [diff] [blame] | 8396 | bool AllAnyExt = true; |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 8397 | |
Craig Topper | d3b5889 | 2012-01-17 09:09:48 +0000 | [diff] [blame] | 8398 | for (unsigned i = 0; i != NumInScalars; ++i) { |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8399 | SDValue In = N->getOperand(i); |
| 8400 | // Ignore undef inputs. |
| 8401 | if (In.getOpcode() == ISD::UNDEF) continue; |
| 8402 | |
| 8403 | bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND; |
| 8404 | bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND; |
| 8405 | |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8406 | // Abort if the element is not an extension. |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8407 | if (!ZeroExt && !AnyExt) { |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8408 | SourceType = MVT::Other; |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8409 | break; |
| 8410 | } |
| 8411 | |
| 8412 | // The input is a ZeroExt or AnyExt. Check the original type. |
| 8413 | EVT InTy = In.getOperand(0).getValueType(); |
| 8414 | |
| 8415 | // Check that all of the widened source types are the same. |
| 8416 | if (SourceType == MVT::Other) |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8417 | // First time. |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8418 | SourceType = InTy; |
| 8419 | else if (InTy != SourceType) { |
| 8420 | // Multiple income types. Abort. |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8421 | SourceType = MVT::Other; |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8422 | break; |
| 8423 | } |
| 8424 | |
| 8425 | // Check if all of the extends are ANY_EXTENDs. |
Craig Topper | d3b5889 | 2012-01-17 09:09:48 +0000 | [diff] [blame] | 8426 | AllAnyExt &= AnyExt; |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8427 | } |
| 8428 | |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8429 | // In order to have valid types, all of the inputs must be extended from the |
| 8430 | // same source type and all of the inputs must be any or zero extend. |
| 8431 | // Scalar sizes must be a power of two. |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8432 | EVT OutScalarTy = VT.getScalarType(); |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8433 | bool ValidTypes = SourceType != MVT::Other && |
Nadav Rotem | f47368b | 2011-10-31 20:08:25 +0000 | [diff] [blame] | 8434 | isPowerOf2_32(OutScalarTy.getSizeInBits()) && |
| 8435 | isPowerOf2_32(SourceType.getSizeInBits()); |
| 8436 | |
Nadav Rotem | 6431ff9 | 2012-03-15 08:49:06 +0000 | [diff] [blame] | 8437 | // Create a new simpler BUILD_VECTOR sequence which other optimizations can |
| 8438 | // turn into a single shuffle instruction. |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8439 | if (!ValidTypes) |
| 8440 | return SDValue(); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8441 | |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8442 | bool isLE = TLI.isLittleEndian(); |
| 8443 | unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits(); |
| 8444 | assert(ElemRatio > 1 && "Invalid element size ratio"); |
| 8445 | SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType): |
| 8446 | DAG.getConstant(0, SourceType); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8447 | |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8448 | unsigned NewBVElems = ElemRatio * VT.getVectorNumElements(); |
| 8449 | SmallVector<SDValue, 8> Ops(NewBVElems, Filler); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8450 | |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8451 | // Populate the new build_vector |
Jakub Staszak | adf3891 | 2012-10-24 00:38:25 +0000 | [diff] [blame] | 8452 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8453 | SDValue Cast = N->getOperand(i); |
| 8454 | assert((Cast.getOpcode() == ISD::ANY_EXTEND || |
| 8455 | Cast.getOpcode() == ISD::ZERO_EXTEND || |
| 8456 | Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode"); |
| 8457 | SDValue In; |
| 8458 | if (Cast.getOpcode() == ISD::UNDEF) |
| 8459 | In = DAG.getUNDEF(SourceType); |
| 8460 | else |
| 8461 | In = Cast->getOperand(0); |
| 8462 | unsigned Index = isLE ? (i * ElemRatio) : |
| 8463 | (i * ElemRatio + (ElemRatio - 1)); |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8464 | |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8465 | assert(Index < Ops.size() && "Invalid index"); |
| 8466 | Ops[Index] = In; |
Nadav Rotem | b00418a | 2011-10-29 21:23:04 +0000 | [diff] [blame] | 8467 | } |
Chris Lattner | ca24244 | 2006-03-19 01:27:56 +0000 | [diff] [blame] | 8468 | |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8469 | // The type of the new BUILD_VECTOR node. |
| 8470 | EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems); |
| 8471 | assert(VecVT.getSizeInBits() == VT.getSizeInBits() && |
| 8472 | "Invalid vector size"); |
| 8473 | // Check if the new vector type is legal. |
| 8474 | if (!isTypeLegal(VecVT)) return SDValue(); |
| 8475 | |
| 8476 | // Make the new BUILD_VECTOR. |
| 8477 | SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size()); |
| 8478 | |
| 8479 | // The new BUILD_VECTOR node has the potential to be further optimized. |
| 8480 | AddToWorkList(BV.getNode()); |
| 8481 | // Bitcast to the desired type. |
| 8482 | return DAG.getNode(ISD::BITCAST, dl, VT, BV); |
| 8483 | } |
| 8484 | |
Michael Liao | 1a5cc71 | 2012-10-24 04:14:18 +0000 | [diff] [blame] | 8485 | SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) { |
| 8486 | EVT VT = N->getValueType(0); |
| 8487 | |
| 8488 | unsigned NumInScalars = N->getNumOperands(); |
| 8489 | DebugLoc dl = N->getDebugLoc(); |
| 8490 | |
| 8491 | EVT SrcVT = MVT::Other; |
| 8492 | unsigned Opcode = ISD::DELETED_NODE; |
| 8493 | unsigned NumDefs = 0; |
| 8494 | |
| 8495 | for (unsigned i = 0; i != NumInScalars; ++i) { |
| 8496 | SDValue In = N->getOperand(i); |
| 8497 | unsigned Opc = In.getOpcode(); |
| 8498 | |
| 8499 | if (Opc == ISD::UNDEF) |
| 8500 | continue; |
| 8501 | |
| 8502 | // If all scalar values are floats and converted from integers. |
| 8503 | if (Opcode == ISD::DELETED_NODE && |
| 8504 | (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) { |
| 8505 | Opcode = Opc; |
| 8506 | // If not supported by target, bail out. |
| 8507 | if (TLI.getOperationAction(Opcode, VT) != TargetLowering::Legal && |
| 8508 | TLI.getOperationAction(Opcode, VT) != TargetLowering::Custom) |
| 8509 | return SDValue(); |
| 8510 | } |
| 8511 | if (Opc != Opcode) |
| 8512 | return SDValue(); |
| 8513 | |
| 8514 | EVT InVT = In.getOperand(0).getValueType(); |
| 8515 | |
| 8516 | // If all scalar values are typed differently, bail out. It's chosen to |
| 8517 | // simplify BUILD_VECTOR of integer types. |
| 8518 | if (SrcVT == MVT::Other) |
| 8519 | SrcVT = InVT; |
| 8520 | if (SrcVT != InVT) |
| 8521 | return SDValue(); |
| 8522 | NumDefs++; |
| 8523 | } |
| 8524 | |
| 8525 | // If the vector has just one element defined, it's not worth to fold it into |
| 8526 | // a vectorized one. |
| 8527 | if (NumDefs < 2) |
| 8528 | return SDValue(); |
| 8529 | |
| 8530 | assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP) |
| 8531 | && "Should only handle conversion from integer to float."); |
| 8532 | assert(SrcVT != MVT::Other && "Cannot determine source type!"); |
| 8533 | |
| 8534 | EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars); |
| 8535 | SmallVector<SDValue, 8> Opnds; |
| 8536 | for (unsigned i = 0; i != NumInScalars; ++i) { |
| 8537 | SDValue In = N->getOperand(i); |
| 8538 | |
| 8539 | if (In.getOpcode() == ISD::UNDEF) |
| 8540 | Opnds.push_back(DAG.getUNDEF(SrcVT)); |
| 8541 | else |
| 8542 | Opnds.push_back(In.getOperand(0)); |
| 8543 | } |
| 8544 | SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, |
| 8545 | &Opnds[0], Opnds.size()); |
| 8546 | AddToWorkList(BV.getNode()); |
| 8547 | |
| 8548 | return DAG.getNode(Opcode, dl, VT, BV); |
| 8549 | } |
| 8550 | |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8551 | SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) { |
| 8552 | unsigned NumInScalars = N->getNumOperands(); |
| 8553 | DebugLoc dl = N->getDebugLoc(); |
| 8554 | EVT VT = N->getValueType(0); |
| 8555 | |
| 8556 | // A vector built entirely of undefs is undef. |
| 8557 | if (ISD::allOperandsUndef(N)) |
| 8558 | return DAG.getUNDEF(VT); |
| 8559 | |
| 8560 | SDValue V = reduceBuildVecExtToExtBuildVec(N); |
| 8561 | if (V.getNode()) |
| 8562 | return V; |
| 8563 | |
Michael Liao | 1a5cc71 | 2012-10-24 04:14:18 +0000 | [diff] [blame] | 8564 | V = reduceBuildVecConvertToConvertBuildVec(N); |
| 8565 | if (V.getNode()) |
| 8566 | return V; |
| 8567 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8568 | // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT |
| 8569 | // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from |
| 8570 | // at most two distinct vectors, turn this into a shuffle node. |
Duncan Sands | 00294ca | 2012-03-19 15:35:44 +0000 | [diff] [blame] | 8571 | |
| 8572 | // May only combine to shuffle after legalize if shuffle is legal. |
| 8573 | if (LegalOperations && |
| 8574 | !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT)) |
| 8575 | return SDValue(); |
| 8576 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8577 | SDValue VecIn1, VecIn2; |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8578 | for (unsigned i = 0; i != NumInScalars; ++i) { |
| 8579 | // Ignore undef inputs. |
| 8580 | if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8581 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8582 | // 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] | 8583 | // constant index, bail out. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8584 | if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT || |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8585 | !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8586 | VecIn1 = VecIn2 = SDValue(0, 0); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8587 | break; |
| 8588 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8589 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8590 | // We allow up to two distinct input vectors. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8591 | SDValue ExtractedFromVec = N->getOperand(i).getOperand(0); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8592 | if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2) |
| 8593 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8594 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8595 | if (VecIn1.getNode() == 0) { |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8596 | VecIn1 = ExtractedFromVec; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8597 | } else if (VecIn2.getNode() == 0) { |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8598 | VecIn2 = ExtractedFromVec; |
| 8599 | } else { |
| 8600 | // Too many inputs. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8601 | VecIn1 = VecIn2 = SDValue(0, 0); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8602 | break; |
| 8603 | } |
| 8604 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8605 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8606 | // If everything is good, we can make a shuffle operation. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8607 | if (VecIn1.getNode()) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8608 | SmallVector<int, 8> Mask; |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8609 | for (unsigned i = 0; i != NumInScalars; ++i) { |
| 8610 | if (N->getOperand(i).getOpcode() == ISD::UNDEF) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8611 | Mask.push_back(-1); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8612 | continue; |
| 8613 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8614 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 8615 | // If extracting from the first vector, just use the index directly. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8616 | SDValue Extract = N->getOperand(i); |
Mon P Wang | 93b7415 | 2009-03-17 06:33:10 +0000 | [diff] [blame] | 8617 | SDValue ExtVal = Extract.getOperand(1); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8618 | if (Extract.getOperand(0) == VecIn1) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8619 | unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue(); |
| 8620 | if (ExtIndex > VT.getVectorNumElements()) |
| 8621 | return SDValue(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8622 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 8623 | Mask.push_back(ExtIndex); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8624 | continue; |
| 8625 | } |
| 8626 | |
| 8627 | // Otherwise, use InIdx + VecSize |
Mon P Wang | 93b7415 | 2009-03-17 06:33:10 +0000 | [diff] [blame] | 8628 | unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8629 | Mask.push_back(Idx+NumInScalars); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8630 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8631 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8632 | // We can't generate a shuffle node with mismatched input and output types. |
| 8633 | // Attempt to transform a single input vector to the correct type. |
| 8634 | if ((VT != VecIn1.getValueType())) { |
| 8635 | // We don't support shuffeling between TWO values of different types. |
| 8636 | if (VecIn2.getNode() != 0) |
| 8637 | return SDValue(); |
| 8638 | |
| 8639 | // We only support widening of vectors which are half the size of the |
| 8640 | // output registers. For example XMM->YMM widening on X86 with AVX. |
| 8641 | if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits()) |
| 8642 | return SDValue(); |
| 8643 | |
James Molloy | 8cd08bf | 2012-09-10 14:01:21 +0000 | [diff] [blame] | 8644 | // If the input vector type has a different base type to the output |
| 8645 | // vector type, bail out. |
| 8646 | if (VecIn1.getValueType().getVectorElementType() != |
| 8647 | VT.getVectorElementType()) |
| 8648 | return SDValue(); |
| 8649 | |
Stepan Dyatkovskiy | fdeb9fe | 2012-08-22 09:33:55 +0000 | [diff] [blame] | 8650 | // Widen the input vector by adding undef values. |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8651 | VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, |
Stepan Dyatkovskiy | fdeb9fe | 2012-08-22 09:33:55 +0000 | [diff] [blame] | 8652 | VecIn1, DAG.getUNDEF(VecIn1.getValueType())); |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8653 | } |
| 8654 | |
| 8655 | // If VecIn2 is unused then change it to undef. |
| 8656 | VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT); |
| 8657 | |
Nadav Rotem | 6dfabb6 | 2012-09-20 08:53:31 +0000 | [diff] [blame] | 8658 | // Check that we were able to transform all incoming values to the same |
| 8659 | // type. |
Nadav Rotem | 0877fdf | 2012-02-13 12:42:26 +0000 | [diff] [blame] | 8660 | if (VecIn2.getValueType() != VecIn1.getValueType() || |
| 8661 | VecIn1.getValueType() != VT) |
| 8662 | return SDValue(); |
| 8663 | |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8664 | // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes. |
Nadav Rotem | 0877fdf | 2012-02-13 12:42:26 +0000 | [diff] [blame] | 8665 | if (!isTypeLegal(VT)) |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 8666 | return SDValue(); |
| 8667 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8668 | // Return the new VECTOR_SHUFFLE node. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8669 | SDValue Ops[2]; |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 8670 | Ops[0] = VecIn1; |
Nadav Rotem | 2ee746b | 2012-02-12 15:05:31 +0000 | [diff] [blame] | 8671 | Ops[1] = VecIn2; |
Michael Liao | fac14ab | 2012-10-23 23:06:52 +0000 | [diff] [blame] | 8672 | return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8673 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8674 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8675 | return SDValue(); |
Chris Lattner | d7648c8 | 2006-03-28 20:28:38 +0000 | [diff] [blame] | 8676 | } |
| 8677 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8678 | SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8679 | // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of |
| 8680 | // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector |
| 8681 | // inputs come from at most two distinct vectors, turn this into a shuffle |
| 8682 | // node. |
| 8683 | |
| 8684 | // 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] | 8685 | if (N->getNumOperands() == 1) |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8686 | return N->getOperand(0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8687 | |
Nadav Rotem | b7e230d | 2012-07-14 21:30:27 +0000 | [diff] [blame] | 8688 | // Check if all of the operands are undefs. |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 8689 | if (ISD::allOperandsUndef(N)) |
Nadav Rotem | b7e230d | 2012-07-14 21:30:27 +0000 | [diff] [blame] | 8690 | return DAG.getUNDEF(N->getValueType(0)); |
| 8691 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8692 | return SDValue(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8693 | } |
| 8694 | |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8695 | SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) { |
| 8696 | EVT NVT = N->getValueType(0); |
| 8697 | SDValue V = N->getOperand(0); |
| 8698 | |
| 8699 | if (V->getOpcode() == ISD::INSERT_SUBVECTOR) { |
| 8700 | // Handle only simple case where vector being inserted and vector |
| 8701 | // being extracted are of same type, and are half size of larger vectors. |
| 8702 | EVT BigVT = V->getOperand(0).getValueType(); |
| 8703 | EVT SmallVT = V->getOperand(1).getValueType(); |
| 8704 | if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits()) |
| 8705 | return SDValue(); |
| 8706 | |
Eli Friedman | 2632344 | 2011-12-07 00:11:56 +0000 | [diff] [blame] | 8707 | // Only handle cases where both indexes are constants with the same type. |
Michael Liao | 13429e2 | 2012-10-17 20:48:33 +0000 | [diff] [blame] | 8708 | ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 8709 | ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2)); |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8710 | |
Eli Friedman | 2632344 | 2011-12-07 00:11:56 +0000 | [diff] [blame] | 8711 | if (InsIdx && ExtIdx && |
| 8712 | InsIdx->getValueType(0).getSizeInBits() <= 64 && |
| 8713 | ExtIdx->getValueType(0).getSizeInBits() <= 64) { |
| 8714 | // Combine: |
| 8715 | // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx) |
| 8716 | // Into: |
| 8717 | // indices are equal => V1 |
| 8718 | // otherwise => (extract_subvec V1, ExtIdx) |
| 8719 | if (InsIdx->getZExtValue() == ExtIdx->getZExtValue()) |
| 8720 | return V->getOperand(1); |
| 8721 | return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT, |
| 8722 | V->getOperand(0), N->getOperand(1)); |
| 8723 | } |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8724 | } |
| 8725 | |
Michael Liao | 13429e2 | 2012-10-17 20:48:33 +0000 | [diff] [blame] | 8726 | if (V->getOpcode() == ISD::CONCAT_VECTORS) { |
| 8727 | // Combine: |
| 8728 | // (extract_subvec (concat V1, V2, ...), i) |
| 8729 | // Into: |
| 8730 | // Vi if possible |
Michael Liao | 9aecdb5 | 2012-10-19 03:17:00 +0000 | [diff] [blame] | 8731 | // Only operand 0 is checked as 'concat' assumes all inputs of the same type. |
| 8732 | if (V->getOperand(0).getValueType() != NVT) |
| 8733 | return SDValue(); |
Michael Liao | 13429e2 | 2012-10-17 20:48:33 +0000 | [diff] [blame] | 8734 | unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue(); |
| 8735 | unsigned NumElems = NVT.getVectorNumElements(); |
| 8736 | assert((Idx % NumElems) == 0 && |
| 8737 | "IDX in concat is not a multiple of the result vector length."); |
| 8738 | return V->getOperand(Idx / NumElems); |
| 8739 | } |
| 8740 | |
Bruno Cardoso Lopes | e97190f | 2011-09-20 23:19:33 +0000 | [diff] [blame] | 8741 | return SDValue(); |
| 8742 | } |
| 8743 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8744 | SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8745 | EVT VT = N->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8746 | unsigned NumElts = VT.getVectorNumElements(); |
Chris Lattner | f1d0c62 | 2006-03-31 22:16:43 +0000 | [diff] [blame] | 8747 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 8748 | SDValue N0 = N->getOperand(0); |
Craig Topper | 481b79c | 2012-01-04 08:07:43 +0000 | [diff] [blame] | 8749 | SDValue N1 = N->getOperand(1); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 8750 | |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8751 | assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG"); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 8752 | |
Craig Topper | 481b79c | 2012-01-04 08:07:43 +0000 | [diff] [blame] | 8753 | // Canonicalize shuffle undef, undef -> undef |
| 8754 | if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF) |
| 8755 | return DAG.getUNDEF(VT); |
| 8756 | |
| 8757 | ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); |
| 8758 | |
| 8759 | // Canonicalize shuffle v, v -> v, undef |
| 8760 | if (N0 == N1) { |
| 8761 | SmallVector<int, 8> NewMask; |
| 8762 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8763 | int Idx = SVN->getMaskElt(i); |
| 8764 | if (Idx >= (int)NumElts) Idx -= NumElts; |
| 8765 | NewMask.push_back(Idx); |
| 8766 | } |
| 8767 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT), |
| 8768 | &NewMask[0]); |
| 8769 | } |
| 8770 | |
| 8771 | // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask. |
| 8772 | if (N0.getOpcode() == ISD::UNDEF) { |
| 8773 | SmallVector<int, 8> NewMask; |
| 8774 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8775 | int Idx = SVN->getMaskElt(i); |
Craig Topper | 4b206bd | 2012-04-09 05:55:33 +0000 | [diff] [blame] | 8776 | if (Idx >= 0) { |
| 8777 | if (Idx < (int)NumElts) |
| 8778 | Idx += NumElts; |
| 8779 | else |
| 8780 | Idx -= NumElts; |
| 8781 | } |
| 8782 | NewMask.push_back(Idx); |
Craig Topper | 481b79c | 2012-01-04 08:07:43 +0000 | [diff] [blame] | 8783 | } |
| 8784 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT), |
| 8785 | &NewMask[0]); |
| 8786 | } |
| 8787 | |
| 8788 | // Remove references to rhs if it is undef |
| 8789 | if (N1.getOpcode() == ISD::UNDEF) { |
| 8790 | bool Changed = false; |
| 8791 | SmallVector<int, 8> NewMask; |
| 8792 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8793 | int Idx = SVN->getMaskElt(i); |
| 8794 | if (Idx >= (int)NumElts) { |
| 8795 | Idx = -1; |
| 8796 | Changed = true; |
| 8797 | } |
| 8798 | NewMask.push_back(Idx); |
| 8799 | } |
| 8800 | if (Changed) |
| 8801 | return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]); |
| 8802 | } |
Evan Cheng | e7bec0d | 2006-07-20 22:44:41 +0000 | [diff] [blame] | 8803 | |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8804 | // If it is a splat, check if the argument vector is another splat or a |
| 8805 | // build_vector with all scalar elements the same. |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8806 | if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8807 | SDNode *V = N0.getNode(); |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8808 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8809 | // 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] | 8810 | // not the number of vector elements, look through it. Be careful not to |
| 8811 | // look though conversions that change things like v4f32 to v2f64. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8812 | if (V->getOpcode() == ISD::BITCAST) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8813 | SDValue ConvInput = V->getOperand(0); |
Evan Cheng | 2925786 | 2008-07-22 20:42:56 +0000 | [diff] [blame] | 8814 | if (ConvInput.getValueType().isVector() && |
| 8815 | ConvInput.getValueType().getVectorNumElements() == NumElts) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8816 | V = ConvInput.getNode(); |
Evan Cheng | 5956922 | 2006-10-16 22:49:37 +0000 | [diff] [blame] | 8817 | } |
| 8818 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8819 | if (V->getOpcode() == ISD::BUILD_VECTOR) { |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8820 | assert(V->getNumOperands() == NumElts && |
| 8821 | "BUILD_VECTOR has wrong number of operands"); |
| 8822 | SDValue Base; |
| 8823 | bool AllSame = true; |
| 8824 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8825 | if (V->getOperand(i).getOpcode() != ISD::UNDEF) { |
| 8826 | Base = V->getOperand(i); |
| 8827 | break; |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8828 | } |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8829 | } |
Bob Wilson | 0f1db1a | 2010-10-28 17:06:14 +0000 | [diff] [blame] | 8830 | // Splat of <u, u, u, u>, return <u, u, u, u> |
| 8831 | if (!Base.getNode()) |
| 8832 | return N0; |
| 8833 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8834 | if (V->getOperand(i) != Base) { |
| 8835 | AllSame = false; |
| 8836 | break; |
| 8837 | } |
| 8838 | } |
| 8839 | // Splat of <x, x, x, x>, return <x, x, x, x> |
| 8840 | if (AllSame) |
| 8841 | return N0; |
Evan Cheng | 917ec98 | 2006-07-21 08:25:53 +0000 | [diff] [blame] | 8842 | } |
| 8843 | } |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8844 | |
| 8845 | // If this shuffle node is simply a swizzle of another shuffle node, |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8846 | // and it reverses the swizzle of the previous shuffle then we can |
| 8847 | // optimize shuffle(shuffle(x, undef), undef) -> x. |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8848 | if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG && |
| 8849 | N1.getOpcode() == ISD::UNDEF) { |
| 8850 | |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8851 | ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0); |
| 8852 | |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8853 | // Shuffle nodes can only reverse shuffles with a single non-undef value. |
| 8854 | if (N0.getOperand(1).getOpcode() != ISD::UNDEF) |
| 8855 | return SDValue(); |
| 8856 | |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8857 | // The incoming shuffle must be of the same type as the result of the |
| 8858 | // current shuffle. |
| 8859 | assert(OtherSV->getOperand(0).getValueType() == VT && |
| 8860 | "Shuffle types don't match"); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8861 | |
| 8862 | for (unsigned i = 0; i != NumElts; ++i) { |
| 8863 | int Idx = SVN->getMaskElt(i); |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8864 | assert(Idx < (int)NumElts && "Index references undef operand"); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8865 | // Next, this index comes from the first value, which is the incoming |
| 8866 | // shuffle. Adopt the incoming index. |
| 8867 | if (Idx >= 0) |
| 8868 | Idx = OtherSV->getMaskElt(Idx); |
| 8869 | |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8870 | // The combined shuffle must map each index to itself. |
Craig Topper | ae1bec5 | 2012-04-09 05:16:56 +0000 | [diff] [blame] | 8871 | if (Idx >= 0 && (unsigned)Idx != i) |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8872 | return SDValue(); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8873 | } |
Nadav Rotem | d16c8d0 | 2012-04-07 21:19:08 +0000 | [diff] [blame] | 8874 | |
| 8875 | return OtherSV->getOperand(0); |
Nadav Rotem | 4ac9081 | 2012-04-01 19:31:22 +0000 | [diff] [blame] | 8876 | } |
| 8877 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8878 | return SDValue(); |
Chris Lattner | f1d0c62 | 2006-03-31 22:16:43 +0000 | [diff] [blame] | 8879 | } |
| 8880 | |
Jim Grosbach | 9a52649 | 2010-06-23 16:07:42 +0000 | [diff] [blame] | 8881 | SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) { |
| 8882 | if (!TLI.getShouldFoldAtomicFences()) |
| 8883 | return SDValue(); |
| 8884 | |
| 8885 | SDValue atomic = N->getOperand(0); |
| 8886 | switch (atomic.getOpcode()) { |
| 8887 | case ISD::ATOMIC_CMP_SWAP: |
| 8888 | case ISD::ATOMIC_SWAP: |
| 8889 | case ISD::ATOMIC_LOAD_ADD: |
| 8890 | case ISD::ATOMIC_LOAD_SUB: |
| 8891 | case ISD::ATOMIC_LOAD_AND: |
| 8892 | case ISD::ATOMIC_LOAD_OR: |
| 8893 | case ISD::ATOMIC_LOAD_XOR: |
| 8894 | case ISD::ATOMIC_LOAD_NAND: |
| 8895 | case ISD::ATOMIC_LOAD_MIN: |
| 8896 | case ISD::ATOMIC_LOAD_MAX: |
| 8897 | case ISD::ATOMIC_LOAD_UMIN: |
| 8898 | case ISD::ATOMIC_LOAD_UMAX: |
| 8899 | break; |
| 8900 | default: |
| 8901 | return SDValue(); |
| 8902 | } |
| 8903 | |
| 8904 | SDValue fence = atomic.getOperand(0); |
| 8905 | if (fence.getOpcode() != ISD::MEMBARRIER) |
| 8906 | return SDValue(); |
| 8907 | |
| 8908 | switch (atomic.getOpcode()) { |
| 8909 | case ISD::ATOMIC_CMP_SWAP: |
| 8910 | return SDValue(DAG.UpdateNodeOperands(atomic.getNode(), |
| 8911 | fence.getOperand(0), |
| 8912 | atomic.getOperand(1), atomic.getOperand(2), |
| 8913 | atomic.getOperand(3)), atomic.getResNo()); |
| 8914 | case ISD::ATOMIC_SWAP: |
| 8915 | case ISD::ATOMIC_LOAD_ADD: |
| 8916 | case ISD::ATOMIC_LOAD_SUB: |
| 8917 | case ISD::ATOMIC_LOAD_AND: |
| 8918 | case ISD::ATOMIC_LOAD_OR: |
| 8919 | case ISD::ATOMIC_LOAD_XOR: |
| 8920 | case ISD::ATOMIC_LOAD_NAND: |
| 8921 | case ISD::ATOMIC_LOAD_MIN: |
| 8922 | case ISD::ATOMIC_LOAD_MAX: |
| 8923 | case ISD::ATOMIC_LOAD_UMIN: |
| 8924 | case ISD::ATOMIC_LOAD_UMAX: |
| 8925 | return SDValue(DAG.UpdateNodeOperands(atomic.getNode(), |
| 8926 | fence.getOperand(0), |
| 8927 | atomic.getOperand(1), atomic.getOperand(2)), |
| 8928 | atomic.getResNo()); |
| 8929 | default: |
| 8930 | return SDValue(); |
| 8931 | } |
| 8932 | } |
| 8933 | |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8934 | /// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8935 | /// an AND to a vector_shuffle with the destination vector and a zero vector. |
| 8936 | /// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==> |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8937 | /// vector_shuffle V, Zero, <0, 4, 2, 4> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8938 | SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8939 | EVT VT = N->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8940 | DebugLoc dl = N->getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8941 | SDValue LHS = N->getOperand(0); |
| 8942 | SDValue RHS = N->getOperand(1); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8943 | if (N->getOpcode() == ISD::AND) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8944 | if (RHS.getOpcode() == ISD::BITCAST) |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8945 | RHS = RHS.getOperand(0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8946 | if (RHS.getOpcode() == ISD::BUILD_VECTOR) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8947 | SmallVector<int, 8> Indices; |
| 8948 | unsigned NumElts = RHS.getNumOperands(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8949 | for (unsigned i = 0; i != NumElts; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8950 | SDValue Elt = RHS.getOperand(i); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8951 | if (!isa<ConstantSDNode>(Elt)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8952 | return SDValue(); |
Craig Topper | b7135e5 | 2012-04-09 05:59:53 +0000 | [diff] [blame] | 8953 | |
| 8954 | if (cast<ConstantSDNode>(Elt)->isAllOnesValue()) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8955 | Indices.push_back(i); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8956 | else if (cast<ConstantSDNode>(Elt)->isNullValue()) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8957 | Indices.push_back(NumElts); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8958 | else |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8959 | return SDValue(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8960 | } |
| 8961 | |
| 8962 | // Let's see if the target supports this vector_shuffle. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8963 | EVT RVT = RHS.getValueType(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8964 | if (!TLI.isVectorClearMaskLegal(Indices, RVT)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8965 | return SDValue(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8966 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8967 | // Return the new VECTOR_SHUFFLE node. |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 8968 | EVT EltVT = RVT.getVectorElementType(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8969 | SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(), |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 8970 | DAG.getConstant(0, EltVT)); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8971 | SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), |
| 8972 | RVT, &ZeroOps[0], ZeroOps.size()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8973 | LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8974 | SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 8975 | return DAG.getNode(ISD::BITCAST, dl, VT, Shuf); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8976 | } |
| 8977 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 8978 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8979 | return SDValue(); |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8980 | } |
| 8981 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8982 | /// SimplifyVBinOp - Visit a binary vector operation, like ADD. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8983 | SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8984 | // After legalize, the target may be depending on adds and other |
| 8985 | // binary ops to provide legal ways to construct constants or other |
| 8986 | // things. Simplifying them may result in a loss of legality. |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 8987 | if (LegalOperations) return SDValue(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8988 | |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 8989 | assert(N->getValueType(0).isVector() && |
| 8990 | "SimplifyVBinOp only works on vectors!"); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8991 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8992 | SDValue LHS = N->getOperand(0); |
| 8993 | SDValue RHS = N->getOperand(1); |
| 8994 | SDValue Shuffle = XformToShuffleWithZero(N); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 8995 | if (Shuffle.getNode()) return Shuffle; |
Evan Cheng | 44f1f09 | 2006-04-20 08:56:16 +0000 | [diff] [blame] | 8996 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 8997 | // 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] | 8998 | // this operation. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8999 | if (LHS.getOpcode() == ISD::BUILD_VECTOR && |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 9000 | RHS.getOpcode() == ISD::BUILD_VECTOR) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9001 | SmallVector<SDValue, 8> Ops; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 9002 | for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9003 | SDValue LHSOp = LHS.getOperand(i); |
| 9004 | SDValue RHSOp = RHS.getOperand(i); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 9005 | // If these two elements can't be folded, bail out. |
| 9006 | if ((LHSOp.getOpcode() != ISD::UNDEF && |
| 9007 | LHSOp.getOpcode() != ISD::Constant && |
| 9008 | LHSOp.getOpcode() != ISD::ConstantFP) || |
| 9009 | (RHSOp.getOpcode() != ISD::UNDEF && |
| 9010 | RHSOp.getOpcode() != ISD::Constant && |
| 9011 | RHSOp.getOpcode() != ISD::ConstantFP)) |
| 9012 | break; |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9013 | |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 9014 | // Can't fold divide by zero. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 9015 | if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV || |
| 9016 | N->getOpcode() == ISD::FDIV) { |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 9017 | if ((RHSOp.getOpcode() == ISD::Constant && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9018 | cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) || |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 9019 | (RHSOp.getOpcode() == ISD::ConstantFP && |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9020 | cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero())) |
Evan Cheng | 7b336a8 | 2006-05-31 06:08:35 +0000 | [diff] [blame] | 9021 | break; |
| 9022 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9023 | |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 9024 | EVT VT = LHSOp.getValueType(); |
Bob Wilson | db2b18f | 2011-10-18 17:34:47 +0000 | [diff] [blame] | 9025 | EVT RVT = RHSOp.getValueType(); |
| 9026 | if (RVT != VT) { |
| 9027 | // Integer BUILD_VECTOR operands may have types larger than the element |
| 9028 | // size (e.g., when the element type is not legal). Prior to type |
| 9029 | // legalization, the types may not match between the two BUILD_VECTORS. |
| 9030 | // Truncate one of the operands to make them match. |
| 9031 | if (RVT.getSizeInBits() > VT.getSizeInBits()) { |
| 9032 | RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp); |
| 9033 | } else { |
| 9034 | LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp); |
| 9035 | VT = RVT; |
| 9036 | } |
| 9037 | } |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 9038 | SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT, |
Evan Cheng | a083988 | 2010-05-18 00:03:40 +0000 | [diff] [blame] | 9039 | LHSOp, RHSOp); |
| 9040 | if (FoldOp.getOpcode() != ISD::UNDEF && |
| 9041 | FoldOp.getOpcode() != ISD::Constant && |
| 9042 | FoldOp.getOpcode() != ISD::ConstantFP) |
| 9043 | break; |
| 9044 | Ops.push_back(FoldOp); |
| 9045 | AddToWorkList(FoldOp.getNode()); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 9046 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9047 | |
Bob Wilson | d727343 | 2010-12-17 23:06:49 +0000 | [diff] [blame] | 9048 | if (Ops.size() == LHS.getNumOperands()) |
| 9049 | return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), |
| 9050 | LHS.getValueType(), &Ops[0], Ops.size()); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 9051 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9052 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9053 | return SDValue(); |
Chris Lattner | edab1b9 | 2006-04-02 03:25:57 +0000 | [diff] [blame] | 9054 | } |
| 9055 | |
Craig Topper | dd201ff | 2012-09-11 01:45:21 +0000 | [diff] [blame] | 9056 | /// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG. |
| 9057 | SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) { |
| 9058 | // After legalize, the target may be depending on adds and other |
| 9059 | // binary ops to provide legal ways to construct constants or other |
| 9060 | // things. Simplifying them may result in a loss of legality. |
| 9061 | if (LegalOperations) return SDValue(); |
| 9062 | |
| 9063 | assert(N->getValueType(0).isVector() && |
| 9064 | "SimplifyVUnaryOp only works on vectors!"); |
| 9065 | |
| 9066 | SDValue N0 = N->getOperand(0); |
| 9067 | |
| 9068 | if (N0.getOpcode() != ISD::BUILD_VECTOR) |
| 9069 | return SDValue(); |
| 9070 | |
| 9071 | // Operand is a BUILD_VECTOR node, see if we can constant fold it. |
| 9072 | SmallVector<SDValue, 8> Ops; |
| 9073 | for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) { |
| 9074 | SDValue Op = N0.getOperand(i); |
| 9075 | if (Op.getOpcode() != ISD::UNDEF && |
| 9076 | Op.getOpcode() != ISD::ConstantFP) |
| 9077 | break; |
| 9078 | EVT EltVT = Op.getValueType(); |
| 9079 | SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op); |
| 9080 | if (FoldOp.getOpcode() != ISD::UNDEF && |
| 9081 | FoldOp.getOpcode() != ISD::ConstantFP) |
| 9082 | break; |
| 9083 | Ops.push_back(FoldOp); |
| 9084 | AddToWorkList(FoldOp.getNode()); |
| 9085 | } |
| 9086 | |
| 9087 | if (Ops.size() != N0.getNumOperands()) |
| 9088 | return SDValue(); |
| 9089 | |
| 9090 | return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), |
| 9091 | N0.getValueType(), &Ops[0], Ops.size()); |
| 9092 | } |
| 9093 | |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9094 | SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0, |
| 9095 | SDValue N1, SDValue N2){ |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9096 | assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9097 | |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9098 | SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2, |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9099 | cast<CondCodeSDNode>(N0.getOperand(2))->get()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9100 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9101 | // If we got a simplified select_cc node back from SimplifySelectCC, then |
| 9102 | // break it down into a new SETCC node, and a new SELECT node, and then return |
| 9103 | // the SELECT node, since we were called with a SELECT node. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9104 | if (SCC.getNode()) { |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9105 | // Check to see if we got a select_cc back (to turn into setcc/select). |
| 9106 | // Otherwise, just return whatever node we got back, like fabs. |
| 9107 | if (SCC.getOpcode() == ISD::SELECT_CC) { |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9108 | SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(), |
| 9109 | N0.getValueType(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9110 | SCC.getOperand(0), SCC.getOperand(1), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9111 | SCC.getOperand(4)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9112 | AddToWorkList(SETCC.getNode()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9113 | return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(), |
| 9114 | SCC.getOperand(2), SCC.getOperand(3), SETCC); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9115 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9116 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9117 | return SCC; |
| 9118 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9119 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 9120 | } |
| 9121 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9122 | /// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS |
| 9123 | /// 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] | 9124 | /// select. Callers of this should assume that TheSelect is deleted if this |
| 9125 | /// returns true. As such, they should return the appropriate thing (e.g. the |
| 9126 | /// node) back to the top-level of the DAG combiner loop to avoid it being |
| 9127 | /// looked at. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9128 | bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9129 | SDValue RHS) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9130 | |
Nadav Rotem | f94fdb6 | 2011-02-11 19:57:47 +0000 | [diff] [blame] | 9131 | // Cannot simplify select with vector condition |
| 9132 | if (TheSelect->getOperand(0).getValueType().isVector()) return false; |
| 9133 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9134 | // If this is a select from two identical things, try to pull the operation |
| 9135 | // through the select. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9136 | if (LHS.getOpcode() != RHS.getOpcode() || |
| 9137 | !LHS.hasOneUse() || !RHS.hasOneUse()) |
| 9138 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9139 | |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9140 | // If this is a load and the token chain is identical, replace the select |
| 9141 | // of two loads with a load through a select of the address to load from. |
| 9142 | // This triggers in things like "select bool X, 10.0, 123.0" after the FP |
| 9143 | // constants have been dropped into the constant pool. |
| 9144 | if (LHS.getOpcode() == ISD::LOAD) { |
| 9145 | LoadSDNode *LLD = cast<LoadSDNode>(LHS); |
| 9146 | LoadSDNode *RLD = cast<LoadSDNode>(RHS); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9147 | |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9148 | // Token chains must be identical. |
| 9149 | if (LHS.getOperand(0) != RHS.getOperand(0) || |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 9150 | // Do not let this transformation reduce the number of volatile loads. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9151 | LLD->isVolatile() || RLD->isVolatile() || |
| 9152 | // If this is an EXTLOAD, the VT's must match. |
| 9153 | LLD->getMemoryVT() != RLD->getMemoryVT() || |
Duncan Sands | dcfd3a7 | 2010-11-18 20:05:18 +0000 | [diff] [blame] | 9154 | // If this is an EXTLOAD, the kind of extension must match. |
| 9155 | (LLD->getExtensionType() != RLD->getExtensionType() && |
| 9156 | // The only exception is if one of the extensions is anyext. |
| 9157 | LLD->getExtensionType() != ISD::EXTLOAD && |
| 9158 | RLD->getExtensionType() != ISD::EXTLOAD) || |
Dan Gohman | 75832d7 | 2009-10-31 14:14:04 +0000 | [diff] [blame] | 9159 | // FIXME: this discards src value information. This is |
| 9160 | // over-conservative. It would be beneficial to be able to remember |
Mon P Wang | fe240b1 | 2010-01-11 20:12:49 +0000 | [diff] [blame] | 9161 | // both potential memory locations. Since we are discarding |
| 9162 | // src value info, don't do the transformation if the memory |
| 9163 | // locations are not in the default address space. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9164 | LLD->getPointerInfo().getAddrSpace() != 0 || |
| 9165 | RLD->getPointerInfo().getAddrSpace() != 0) |
| 9166 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9167 | |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9168 | // Check that the select condition doesn't reach either load. If so, |
| 9169 | // folding this will induce a cycle into the DAG. If not, this is safe to |
| 9170 | // xform, so create a select of the addresses. |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9171 | SDValue Addr; |
| 9172 | if (TheSelect->getOpcode() == ISD::SELECT) { |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9173 | SDNode *CondNode = TheSelect->getOperand(0).getNode(); |
| 9174 | if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) || |
| 9175 | (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode))) |
| 9176 | return false; |
Nadav Rotem | 1c5bf3f | 2012-10-18 18:06:48 +0000 | [diff] [blame] | 9177 | // The loads must not depend on one another. |
| 9178 | if (LLD->isPredecessorOf(RLD) || |
| 9179 | RLD->isPredecessorOf(LLD)) |
| 9180 | return false; |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9181 | Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(), |
| 9182 | LLD->getBasePtr().getValueType(), |
| 9183 | TheSelect->getOperand(0), LLD->getBasePtr(), |
| 9184 | RLD->getBasePtr()); |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9185 | } else { // Otherwise SELECT_CC |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9186 | SDNode *CondLHS = TheSelect->getOperand(0).getNode(); |
| 9187 | SDNode *CondRHS = TheSelect->getOperand(1).getNode(); |
| 9188 | |
| 9189 | if ((LLD->hasAnyUseOfValue(1) && |
| 9190 | (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) || |
Chris Lattner | 77d9521 | 2012-03-27 16:27:21 +0000 | [diff] [blame] | 9191 | (RLD->hasAnyUseOfValue(1) && |
| 9192 | (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS)))) |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9193 | return false; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9194 | |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9195 | Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(), |
| 9196 | LLD->getBasePtr().getValueType(), |
| 9197 | TheSelect->getOperand(0), |
| 9198 | TheSelect->getOperand(1), |
| 9199 | LLD->getBasePtr(), RLD->getBasePtr(), |
| 9200 | TheSelect->getOperand(4)); |
Chris Lattner | 1806161 | 2010-09-21 15:46:59 +0000 | [diff] [blame] | 9201 | } |
| 9202 | |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9203 | SDValue Load; |
| 9204 | if (LLD->getExtensionType() == ISD::NON_EXTLOAD) { |
| 9205 | Load = DAG.getLoad(TheSelect->getValueType(0), |
| 9206 | TheSelect->getDebugLoc(), |
| 9207 | // FIXME: Discards pointer info. |
| 9208 | LLD->getChain(), Addr, MachinePointerInfo(), |
| 9209 | LLD->isVolatile(), LLD->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 9210 | LLD->isInvariant(), LLD->getAlignment()); |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9211 | } else { |
Duncan Sands | b9064bb | 2010-11-18 21:16:28 +0000 | [diff] [blame] | 9212 | Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ? |
| 9213 | RLD->getExtensionType() : LLD->getExtensionType(), |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9214 | TheSelect->getDebugLoc(), |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 9215 | TheSelect->getValueType(0), |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9216 | // FIXME: Discards pointer info. |
| 9217 | LLD->getChain(), Addr, MachinePointerInfo(), |
| 9218 | LLD->getMemoryVT(), LLD->isVolatile(), |
| 9219 | LLD->isNonTemporal(), LLD->getAlignment()); |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9220 | } |
Chris Lattner | f165806 | 2010-09-21 15:58:55 +0000 | [diff] [blame] | 9221 | |
| 9222 | // Users of the select now use the result of the load. |
| 9223 | CombineTo(TheSelect, Load); |
| 9224 | |
| 9225 | // Users of the old loads now use the new load's chain. We know the |
| 9226 | // old-load value is dead now. |
| 9227 | CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1)); |
| 9228 | CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1)); |
| 9229 | return true; |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9230 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9231 | |
Chris Lattner | 40c62d5 | 2005-10-18 06:04:22 +0000 | [diff] [blame] | 9232 | return false; |
| 9233 | } |
| 9234 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9235 | /// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3 |
| 9236 | /// where 'cond' is the comparison specified by CC. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9237 | SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9238 | SDValue N2, SDValue N3, |
| 9239 | ISD::CondCode CC, bool NotExtCompare) { |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9240 | // (x ? y : y) -> y. |
| 9241 | if (N2 == N3) return N2; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9242 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9243 | EVT VT = N2.getValueType(); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9244 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
| 9245 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); |
| 9246 | ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9247 | |
| 9248 | // Determine if the condition we're dealing with is constant |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 9249 | SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 9250 | N0, N1, CC, DL, false); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9251 | if (SCC.getNode()) AddToWorkList(SCC.getNode()); |
| 9252 | ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9253 | |
| 9254 | // fold select_cc true, x, y -> x |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9255 | if (SCCC && !SCCC->isNullValue()) |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9256 | return N2; |
| 9257 | // fold select_cc false, x, y -> y |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9258 | if (SCCC && SCCC->isNullValue()) |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9259 | return N3; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9260 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9261 | // Check to see if we can simplify the select into an fabs node |
| 9262 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) { |
| 9263 | // Allow either -0.0 or 0.0 |
Dale Johannesen | 87503a6 | 2007-08-25 22:10:57 +0000 | [diff] [blame] | 9264 | if (CFP->getValueAPF().isZero()) { |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9265 | // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs |
| 9266 | if ((CC == ISD::SETGE || CC == ISD::SETGT) && |
| 9267 | N0 == N2 && N3.getOpcode() == ISD::FNEG && |
| 9268 | N2 == N3.getOperand(0)) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9269 | return DAG.getNode(ISD::FABS, DL, VT, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9270 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9271 | // select (setl[te] X, +/-0.0), fneg(X), X -> fabs |
| 9272 | if ((CC == ISD::SETLT || CC == ISD::SETLE) && |
| 9273 | N0 == N3 && N2.getOpcode() == ISD::FNEG && |
| 9274 | N2.getOperand(0) == N3) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9275 | return DAG.getNode(ISD::FABS, DL, VT, N3); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9276 | } |
| 9277 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9278 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9279 | // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)" |
| 9280 | // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0 |
| 9281 | // in it. This is a win when the constant is not otherwise available because |
| 9282 | // it replaces two constant pool loads with one. We only do this if the FP |
| 9283 | // type is known to be legal, because if it isn't, then we are before legalize |
| 9284 | // 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] | 9285 | // messing with soft float) and if the ConstantFP is not legal, because if |
| 9286 | // 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] | 9287 | if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2)) |
| 9288 | if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) { |
| 9289 | if (TLI.isTypeLegal(N2.getValueType()) && |
Mon P Wang | 0b7a786 | 2009-03-14 00:25:19 +0000 | [diff] [blame] | 9290 | (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) != |
| 9291 | TargetLowering::Legal) && |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9292 | // If both constants have multiple uses, then we won't need to do an |
| 9293 | // extra load, they are likely around in registers for other users. |
| 9294 | (TV->hasOneUse() || FV->hasOneUse())) { |
| 9295 | Constant *Elts[] = { |
| 9296 | const_cast<ConstantFP*>(FV->getConstantFPValue()), |
| 9297 | const_cast<ConstantFP*>(TV->getConstantFPValue()) |
| 9298 | }; |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 9299 | Type *FPTy = Elts[0]->getType(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 9300 | const DataLayout &TD = *TLI.getDataLayout(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9301 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9302 | // Create a ConstantArray of the two constants. |
Jay Foad | 2670108 | 2011-06-22 09:24:39 +0000 | [diff] [blame] | 9303 | Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9304 | SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(), |
| 9305 | TD.getPrefTypeAlignment(FPTy)); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 9306 | unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9307 | |
| 9308 | // Get the offsets to the 0 and 1 element of the array so that we can |
| 9309 | // select between them. |
| 9310 | SDValue Zero = DAG.getIntPtrConstant(0); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 9311 | unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9312 | SDValue One = DAG.getIntPtrConstant(EltSize); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9313 | |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9314 | SDValue Cond = DAG.getSetCC(DL, |
| 9315 | TLI.getSetCCResultType(N0.getValueType()), |
| 9316 | N0, N1, CC); |
Dan Gohman | 7b316c9 | 2011-09-22 23:01:29 +0000 | [diff] [blame] | 9317 | AddToWorkList(Cond.getNode()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9318 | SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(), |
| 9319 | Cond, One, Zero); |
Dan Gohman | 7b316c9 | 2011-09-22 23:01:29 +0000 | [diff] [blame] | 9320 | AddToWorkList(CstOffset.getNode()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9321 | CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx, |
| 9322 | CstOffset); |
Dan Gohman | 7b316c9 | 2011-09-22 23:01:29 +0000 | [diff] [blame] | 9323 | AddToWorkList(CPIdx.getNode()); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9324 | return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx, |
Chris Lattner | 85ca106 | 2010-09-21 07:32:19 +0000 | [diff] [blame] | 9325 | MachinePointerInfo::getConstantPool(), false, |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 9326 | false, false, Alignment); |
Chris Lattner | 600fec3 | 2009-03-11 05:08:08 +0000 | [diff] [blame] | 9327 | |
| 9328 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9329 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9330 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9331 | // Check to see if we can perform the "gzip trick", transforming |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9332 | // (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] | 9333 | if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9334 | (N1C->isNullValue() || // (a < 0) ? b : 0 |
| 9335 | (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0 |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9336 | EVT XType = N0.getValueType(); |
| 9337 | EVT AType = N2.getValueType(); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9338 | if (XType.bitsGE(AType)) { |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 9339 | // 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] | 9340 | // single-bit constant. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9341 | if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) { |
| 9342 | unsigned ShCtV = N2C->getAPIntValue().logBase2(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 9343 | ShCtV = XType.getSizeInBits()-ShCtV-1; |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9344 | SDValue ShCt = DAG.getConstant(ShCtV, |
| 9345 | getShiftAmountTy(N0.getValueType())); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9346 | SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9347 | XType, N0, ShCt); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9348 | AddToWorkList(Shift.getNode()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9349 | |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9350 | if (XType.bitsGT(AType)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9351 | Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9352 | AddToWorkList(Shift.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9353 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9354 | |
| 9355 | return DAG.getNode(ISD::AND, DL, AType, Shift, N2); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9356 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9357 | |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9358 | SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9359 | XType, N0, |
| 9360 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9361 | getShiftAmountTy(N0.getValueType()))); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9362 | AddToWorkList(Shift.getNode()); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9363 | |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9364 | if (XType.bitsGT(AType)) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9365 | Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9366 | AddToWorkList(Shift.getNode()); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9367 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9368 | |
| 9369 | return DAG.getNode(ISD::AND, DL, AType, Shift, N2); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9370 | } |
| 9371 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9372 | |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9373 | // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A) |
| 9374 | // where y is has a single bit set. |
| 9375 | // A plaintext description would be, we can turn the SELECT_CC into an AND |
| 9376 | // when the condition can be materialized as an all-ones register. Any |
| 9377 | // single bit-test can be materialized as an all-ones register with |
| 9378 | // shift-left and shift-right-arith. |
| 9379 | if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND && |
| 9380 | N0->getValueType(0) == VT && |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9381 | N1C && N1C->isNullValue() && |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9382 | N2C && N2C->isNullValue()) { |
| 9383 | SDValue AndLHS = N0->getOperand(0); |
| 9384 | ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1)); |
| 9385 | if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) { |
| 9386 | // Shift the tested bit over the sign bit. |
| 9387 | APInt AndMask = ConstAndRHS->getAPIntValue(); |
| 9388 | SDValue ShlAmt = |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9389 | DAG.getConstant(AndMask.countLeadingZeros(), |
| 9390 | getShiftAmountTy(AndLHS.getValueType())); |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9391 | SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9392 | |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9393 | // Now arithmetic right shift it all the way over, so the result is either |
| 9394 | // all-ones, or zero. |
| 9395 | SDValue ShrAmt = |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9396 | DAG.getConstant(AndMask.getBitWidth()-1, |
| 9397 | getShiftAmountTy(Shl.getValueType())); |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9398 | SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9399 | |
Owen Anderson | ed1088a | 2010-09-22 22:58:22 +0000 | [diff] [blame] | 9400 | return DAG.getNode(ISD::AND, DL, VT, Shr, N3); |
| 9401 | } |
| 9402 | } |
| 9403 | |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9404 | // fold select C, 16, 0 -> shl C, 4 |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9405 | if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() && |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 9406 | TLI.getBooleanContents(N0.getValueType().isVector()) == |
| 9407 | TargetLowering::ZeroOrOneBooleanContent) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9408 | |
Chris Lattner | 1eba01e | 2007-04-11 06:50:51 +0000 | [diff] [blame] | 9409 | // If the caller doesn't want us to simplify this into a zext of a compare, |
| 9410 | // don't do it. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9411 | if (NotExtCompare && N2C->getAPIntValue() == 1) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9412 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9413 | |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9414 | // Get a SetCC of the condition |
| 9415 | // FIXME: Should probably make sure that setcc is legal if we ever have a |
| 9416 | // target where it isn't. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9417 | SDValue Temp, SCC; |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9418 | // cast from setcc result type to select result type |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 9419 | if (LegalTypes) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9420 | SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 9421 | N0, N1, CC); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 9422 | if (N2.getValueType().bitsLT(SCC.getValueType())) |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9423 | Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType()); |
Chris Lattner | 555d8d6 | 2006-12-07 22:36:47 +0000 | [diff] [blame] | 9424 | else |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9425 | Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9426 | N2.getValueType(), SCC); |
Nate Begeman | b0d04a7 | 2006-02-18 02:40:58 +0000 | [diff] [blame] | 9427 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 9428 | SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC); |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9429 | Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(), |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9430 | N2.getValueType(), SCC); |
Nate Begeman | b0d04a7 | 2006-02-18 02:40:58 +0000 | [diff] [blame] | 9431 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9432 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9433 | AddToWorkList(SCC.getNode()); |
| 9434 | AddToWorkList(Temp.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9435 | |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9436 | if (N2C->getAPIntValue() == 1) |
Chris Lattner | c56a81d | 2007-04-11 06:43:25 +0000 | [diff] [blame] | 9437 | return Temp; |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9438 | |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9439 | // shl setcc result by log2 n2c |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9440 | return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp, |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9441 | DAG.getConstant(N2C->getAPIntValue().logBase2(), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9442 | getShiftAmountTy(Temp.getValueType()))); |
Nate Begeman | 07ed417 | 2005-10-10 21:26:48 +0000 | [diff] [blame] | 9443 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9444 | |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9445 | // Check to see if this is the equivalent of setcc |
| 9446 | // FIXME: Turn all of these into setcc if setcc if setcc is legal |
| 9447 | // otherwise, go ahead with the folds. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 9448 | if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9449 | EVT XType = N0.getValueType(); |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 9450 | if (!LegalOperations || |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 9451 | TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) { |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9452 | SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9453 | if (Res.getValueType() != VT) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9454 | Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9455 | return Res; |
| 9456 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9457 | |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9458 | // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X)))) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9459 | if (N1C && N1C->isNullValue() && CC == ISD::SETEQ && |
Duncan Sands | 25cf227 | 2008-11-24 14:53:14 +0000 | [diff] [blame] | 9460 | (!LegalOperations || |
Duncan Sands | 184a876 | 2008-06-14 17:48:34 +0000 | [diff] [blame] | 9461 | TLI.isOperationLegal(ISD::CTLZ, XType))) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9462 | SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9463 | return DAG.getNode(ISD::SRL, DL, XType, Ctlz, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 9464 | DAG.getConstant(Log2_32(XType.getSizeInBits()), |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9465 | getShiftAmountTy(Ctlz.getValueType()))); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9466 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9467 | // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1)) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9468 | if (N1C && N1C->isNullValue() && CC == ISD::SETGT) { |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9469 | SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(), |
| 9470 | XType, DAG.getConstant(0, XType), N0); |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 9471 | SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9472 | return DAG.getNode(ISD::SRL, DL, XType, |
Bill Wendling | fc4b677 | 2009-02-01 11:19:36 +0000 | [diff] [blame] | 9473 | DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0), |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 9474 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9475 | getShiftAmountTy(XType))); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9476 | } |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9477 | // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1)) |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9478 | if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) { |
Bill Wendling | 9729c5a | 2009-01-31 03:12:48 +0000 | [diff] [blame] | 9479 | SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0, |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9480 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9481 | getShiftAmountTy(N0.getValueType()))); |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9482 | return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType)); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9483 | } |
| 9484 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9485 | |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9486 | // Check to see if this is an integer abs. |
| 9487 | // select_cc setg[te] X, 0, X, -X -> |
| 9488 | // select_cc setgt X, -1, X, -X -> |
| 9489 | // select_cc setl[te] X, 0, -X, X -> |
| 9490 | // select_cc setlt X, 1, -X, X -> |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9491 | // Y = sra (X, size(X)-1); xor (add (X, Y), Y) |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9492 | if (N1C) { |
| 9493 | ConstantSDNode *SubC = NULL; |
| 9494 | if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) || |
| 9495 | (N1C->isAllOnesValue() && CC == ISD::SETGT)) && |
| 9496 | N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) |
| 9497 | SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0)); |
| 9498 | else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) || |
| 9499 | (N1C->isOne() && CC == ISD::SETLT)) && |
| 9500 | N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1)) |
| 9501 | SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0)); |
| 9502 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9503 | EVT XType = N0.getValueType(); |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9504 | if (SubC && SubC->isNullValue() && XType.isInteger()) { |
| 9505 | SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType, |
| 9506 | N0, |
| 9507 | DAG.getConstant(XType.getSizeInBits()-1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 9508 | getShiftAmountTy(N0.getValueType()))); |
Benjamin Kramer | cde5110 | 2010-07-08 12:09:56 +0000 | [diff] [blame] | 9509 | SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(), |
| 9510 | XType, N0, Shift); |
| 9511 | AddToWorkList(Shift.getNode()); |
| 9512 | AddToWorkList(Add.getNode()); |
| 9513 | return DAG.getNode(ISD::XOR, DL, XType, Add, Shift); |
Nate Begeman | f845b45 | 2005-10-08 00:29:44 +0000 | [diff] [blame] | 9514 | } |
| 9515 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9516 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9517 | return SDValue(); |
Nate Begeman | 44728a7 | 2005-09-19 22:34:01 +0000 | [diff] [blame] | 9518 | } |
| 9519 | |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 9520 | /// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9521 | SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9522 | SDValue N1, ISD::CondCode Cond, |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 9523 | DebugLoc DL, bool foldBooleans) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9524 | TargetLowering::DAGCombinerInfo |
Jakob Stoklund Olesen | 78d1264 | 2009-07-24 18:22:59 +0000 | [diff] [blame] | 9525 | DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 9526 | return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL); |
Nate Begeman | 452d7beb | 2005-09-16 00:54:12 +0000 | [diff] [blame] | 9527 | } |
| 9528 | |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9529 | /// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant, |
| 9530 | /// return a DAG expression to select that will generate the same value by |
| 9531 | /// multiplying by a magic number. See: |
| 9532 | /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9533 | SDValue DAGCombiner::BuildSDIV(SDNode *N) { |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9534 | std::vector<SDNode*> Built; |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 9535 | SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 9536 | |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9537 | for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end(); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 9538 | ii != ee; ++ii) |
| 9539 | AddToWorkList(*ii); |
| 9540 | return S; |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9541 | } |
| 9542 | |
| 9543 | /// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant, |
| 9544 | /// return a DAG expression to select that will generate the same value by |
| 9545 | /// multiplying by a magic number. See: |
| 9546 | /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9547 | SDValue DAGCombiner::BuildUDIV(SDNode *N) { |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9548 | std::vector<SDNode*> Built; |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 9549 | SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built); |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9550 | |
Andrew Lenharth | 232c910 | 2006-06-12 16:07:18 +0000 | [diff] [blame] | 9551 | for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end(); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 9552 | ii != ee; ++ii) |
| 9553 | AddToWorkList(*ii); |
| 9554 | return S; |
Nate Begeman | 6957523 | 2005-10-20 02:15:44 +0000 | [diff] [blame] | 9555 | } |
| 9556 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9557 | /// 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] | 9558 | // to alias with anything but itself. Provides base object and offset as |
| 9559 | // results. |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9560 | static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset, |
Roman Divacky | 2943e37 | 2012-09-05 22:15:49 +0000 | [diff] [blame] | 9561 | const GlobalValue *&GV, const void *&CV) { |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9562 | // Assume it is a primitive operation. |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9563 | Base = Ptr; Offset = 0; GV = 0; CV = 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9564 | |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9565 | // If it's an adding a simple constant then integrate the offset. |
| 9566 | if (Base.getOpcode() == ISD::ADD) { |
| 9567 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) { |
| 9568 | Base = Base.getOperand(0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 9569 | Offset += C->getZExtValue(); |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9570 | } |
| 9571 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9572 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9573 | // Return the underlying GlobalValue, and update the Offset. Return false |
| 9574 | // for GlobalAddressSDNode since the same GlobalAddress may be represented |
| 9575 | // by multiple nodes with different offsets. |
| 9576 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) { |
| 9577 | GV = G->getGlobal(); |
| 9578 | Offset += G->getOffset(); |
| 9579 | return false; |
| 9580 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9581 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9582 | // Return the underlying Constant value, and update the Offset. Return false |
| 9583 | // for ConstantSDNodes since the same constant pool entry may be represented |
| 9584 | // by multiple nodes with different offsets. |
| 9585 | if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) { |
Roman Divacky | 2943e37 | 2012-09-05 22:15:49 +0000 | [diff] [blame] | 9586 | CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal() |
| 9587 | : (const void *)C->getConstVal(); |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9588 | Offset += C->getOffset(); |
| 9589 | return false; |
| 9590 | } |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9591 | // 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] | 9592 | return isa<FrameIndexSDNode>(Base); |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9593 | } |
| 9594 | |
| 9595 | /// isAlias - Return true if there is any possibility that the two addresses |
| 9596 | /// overlap. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9597 | bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1, |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 9598 | const Value *SrcValue1, int SrcValueOffset1, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9599 | unsigned SrcValueAlign1, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9600 | const MDNode *TBAAInfo1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9601 | SDValue Ptr2, int64_t Size2, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9602 | const Value *SrcValue2, int SrcValueOffset2, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9603 | unsigned SrcValueAlign2, |
| 9604 | const MDNode *TBAAInfo2) const { |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9605 | // If they are the same then they must be aliases. |
| 9606 | if (Ptr1 == Ptr2) return true; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9607 | |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9608 | // Gather base node and offset information. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9609 | SDValue Base1, Base2; |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9610 | int64_t Offset1, Offset2; |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 9611 | const GlobalValue *GV1, *GV2; |
Roman Divacky | 2943e37 | 2012-09-05 22:15:49 +0000 | [diff] [blame] | 9612 | const void *CV1, *CV2; |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9613 | bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1); |
| 9614 | bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9615 | |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9616 | // If they have a same base address then check to see if they overlap. |
| 9617 | if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2))) |
Bill Wendling | 836ca7d | 2009-01-30 23:59:18 +0000 | [diff] [blame] | 9618 | return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9619 | |
Owen Anderson | 4a9f150 | 2010-09-20 20:39:59 +0000 | [diff] [blame] | 9620 | // It is possible for different frame indices to alias each other, mostly |
| 9621 | // when tail call optimization reuses return address slots for arguments. |
| 9622 | // To catch this case, look up the actual index of frame indices to compute |
| 9623 | // the real alias relationship. |
| 9624 | if (isFrameIndex1 && isFrameIndex2) { |
| 9625 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 9626 | Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex()); |
| 9627 | Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex()); |
| 9628 | return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1); |
| 9629 | } |
| 9630 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9631 | // 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] | 9632 | // we know they cannot alias. |
Nate Begeman | cc66cdd | 2009-09-25 06:05:26 +0000 | [diff] [blame] | 9633 | if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2)) |
| 9634 | return false; |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 9635 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9636 | // If we know required SrcValue1 and SrcValue2 have relatively large alignment |
| 9637 | // compared to the size and offset of the access, we may be able to prove they |
| 9638 | // do not alias. This check is conservative for now to catch cases created by |
| 9639 | // splitting vector types. |
| 9640 | if ((SrcValueAlign1 == SrcValueAlign2) && |
| 9641 | (SrcValueOffset1 != SrcValueOffset2) && |
| 9642 | (Size1 == Size2) && (SrcValueAlign1 > Size1)) { |
| 9643 | int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1; |
| 9644 | int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9645 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9646 | // There is no overlap between these relatively aligned accesses of similar |
| 9647 | // size, return no alias. |
| 9648 | if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1) |
| 9649 | return false; |
| 9650 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9651 | |
Jim Laskey | 07a2709 | 2006-10-18 19:08:31 +0000 | [diff] [blame] | 9652 | if (CombinerGlobalAA) { |
| 9653 | // Use alias analysis information. |
Dan Gohman | e9c8fa0 | 2007-08-27 16:32:11 +0000 | [diff] [blame] | 9654 | int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2); |
| 9655 | int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset; |
| 9656 | int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9657 | AliasAnalysis::AliasResult AAResult = |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9658 | AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1), |
| 9659 | AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2)); |
Jim Laskey | 07a2709 | 2006-10-18 19:08:31 +0000 | [diff] [blame] | 9660 | if (AAResult == AliasAnalysis::NoAlias) |
| 9661 | return false; |
| 9662 | } |
Jim Laskey | 096c22e | 2006-10-18 12:29:57 +0000 | [diff] [blame] | 9663 | |
| 9664 | // Otherwise we have to assume they alias. |
| 9665 | return true; |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9666 | } |
| 9667 | |
| 9668 | /// FindAliasInfo - Extracts the relevant alias information from the memory |
| 9669 | /// node. Returns true if the operand was a load. |
Jim Laskey | 7ca56af | 2006-10-11 13:47:09 +0000 | [diff] [blame] | 9670 | bool DAGCombiner::FindAliasInfo(SDNode *N, |
Benjamin Kramer | ae4746b | 2012-01-15 11:50:43 +0000 | [diff] [blame] | 9671 | SDValue &Ptr, int64_t &Size, |
| 9672 | const Value *&SrcValue, |
| 9673 | int &SrcValueOffset, |
| 9674 | unsigned &SrcValueAlign, |
| 9675 | const MDNode *&TBAAInfo) const { |
| 9676 | LSBaseSDNode *LS = cast<LSBaseSDNode>(N); |
| 9677 | |
| 9678 | Ptr = LS->getBasePtr(); |
| 9679 | Size = LS->getMemoryVT().getSizeInBits() >> 3; |
| 9680 | SrcValue = LS->getSrcValue(); |
| 9681 | SrcValueOffset = LS->getSrcValueOffset(); |
| 9682 | SrcValueAlign = LS->getOriginalAlignment(); |
| 9683 | TBAAInfo = LS->getTBAAInfo(); |
| 9684 | return isa<LoadSDNode>(LS); |
Jim Laskey | 7138234 | 2006-10-07 23:37:56 +0000 | [diff] [blame] | 9685 | } |
| 9686 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9687 | /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes, |
| 9688 | /// looking for aliasing nodes and adding them to the Aliases vector. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9689 | void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain, |
| 9690 | SmallVector<SDValue, 8> &Aliases) { |
| 9691 | SmallVector<SDValue, 8> Chains; // List of chains to visit. |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9692 | SmallPtrSet<SDNode *, 16> Visited; // Visited node set. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9693 | |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9694 | // Get alias information for node. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9695 | SDValue Ptr; |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9696 | int64_t Size; |
| 9697 | const Value *SrcValue; |
| 9698 | int SrcValueOffset; |
| 9699 | unsigned SrcValueAlign; |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9700 | const MDNode *SrcTBAAInfo; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9701 | bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9702 | SrcValueAlign, SrcTBAAInfo); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9703 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9704 | // Starting off. |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9705 | Chains.push_back(OriginalChain); |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9706 | unsigned Depth = 0; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9707 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9708 | // Look at each chain and determine if it is an alias. If so, add it to the |
| 9709 | // 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] | 9710 | // candidate. |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9711 | while (!Chains.empty()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9712 | SDValue Chain = Chains.back(); |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9713 | Chains.pop_back(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9714 | |
| 9715 | // For TokenFactor nodes, look at each operand and only continue up the |
| 9716 | // 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] | 9717 | // find more and revert to original chain since the xform is unlikely to be |
| 9718 | // profitable. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9719 | // |
| 9720 | // 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] | 9721 | // chain we found before we hit a tokenfactor rather than the original |
| 9722 | // chain. |
| 9723 | if (Depth > 6 || Aliases.size() == 2) { |
| 9724 | Aliases.clear(); |
| 9725 | Aliases.push_back(OriginalChain); |
| 9726 | break; |
| 9727 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9728 | |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9729 | // Don't bother if we've been before. |
| 9730 | if (!Visited.insert(Chain.getNode())) |
| 9731 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9732 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9733 | switch (Chain.getOpcode()) { |
| 9734 | case ISD::EntryToken: |
| 9735 | // Entry token is ideal chain operand, but handled in FindBetterChain. |
| 9736 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9737 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9738 | case ISD::LOAD: |
| 9739 | case ISD::STORE: { |
| 9740 | // Get alias information for Chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9741 | SDValue OpPtr; |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9742 | int64_t OpSize; |
| 9743 | const Value *OpSrcValue; |
| 9744 | int OpSrcValueOffset; |
| 9745 | unsigned OpSrcValueAlign; |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9746 | const MDNode *OpSrcTBAAInfo; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 9747 | bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9748 | OpSrcValue, OpSrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9749 | OpSrcValueAlign, |
| 9750 | OpSrcTBAAInfo); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9751 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9752 | // If chain is alias then stop here. |
| 9753 | if (!(IsLoad && IsOpLoad) && |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9754 | isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9755 | SrcTBAAInfo, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9756 | OpPtr, OpSize, OpSrcValue, OpSrcValueOffset, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 9757 | OpSrcValueAlign, OpSrcTBAAInfo)) { |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9758 | Aliases.push_back(Chain); |
| 9759 | } else { |
| 9760 | // Look further up the chain. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9761 | Chains.push_back(Chain.getOperand(0)); |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9762 | ++Depth; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9763 | } |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9764 | break; |
| 9765 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9766 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9767 | case ISD::TokenFactor: |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9768 | // We have to check each of the operands of the token factor for "small" |
| 9769 | // token factors, so we queue them up. Adding the operands to the queue |
| 9770 | // (stack) in reverse order maintains the original order and increases the |
| 9771 | // likelihood that getNode will find a matching token factor (CSE.) |
| 9772 | if (Chain.getNumOperands() > 16) { |
| 9773 | Aliases.push_back(Chain); |
| 9774 | break; |
| 9775 | } |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9776 | for (unsigned n = Chain.getNumOperands(); n;) |
| 9777 | Chains.push_back(Chain.getOperand(--n)); |
Nate Begeman | 677c89d | 2009-10-12 05:53:58 +0000 | [diff] [blame] | 9778 | ++Depth; |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9779 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9780 | |
Jim Laskey | bc588b8 | 2006-10-05 15:07:25 +0000 | [diff] [blame] | 9781 | default: |
| 9782 | // For all other instructions we will just have to take what we can get. |
| 9783 | Aliases.push_back(Chain); |
| 9784 | break; |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9785 | } |
| 9786 | } |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9787 | } |
| 9788 | |
| 9789 | /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking |
| 9790 | /// for a better chain (aliasing node.) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 9791 | SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) { |
| 9792 | SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9793 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9794 | // Accumulate all the aliases to this node. |
| 9795 | GatherAllAliases(N, OldChain, Aliases); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9796 | |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 9797 | // If no operands then chain to entry token. |
| 9798 | if (Aliases.size() == 0) |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9799 | return DAG.getEntryNode(); |
Dan Gohman | 71dc7c9 | 2011-05-17 22:20:36 +0000 | [diff] [blame] | 9800 | |
| 9801 | // If a single operand then chain to it. We don't need to revisit it. |
| 9802 | if (Aliases.size() == 1) |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9803 | return Aliases[0]; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9804 | |
Jim Laskey | 6ff23e5 | 2006-10-04 16:53:27 +0000 | [diff] [blame] | 9805 | // Construct a custom tailored token factor. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 9806 | return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other, |
Nate Begeman | b6aef5c | 2009-09-15 00:18:30 +0000 | [diff] [blame] | 9807 | &Aliases[0], Aliases.size()); |
Jim Laskey | 279f053 | 2006-09-25 16:29:54 +0000 | [diff] [blame] | 9808 | } |
| 9809 | |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 9810 | // SelectionDAG::Combine - This is the entry point for the file. |
| 9811 | // |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 9812 | void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA, |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 9813 | CodeGenOpt::Level OptLevel) { |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 9814 | /// run - This is the main entry point to this class. |
| 9815 | /// |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 9816 | DAGCombiner(*this, AA, OptLevel).Run(Level); |
Nate Begeman | 1d4d414 | 2005-09-01 00:19:25 +0000 | [diff] [blame] | 9817 | } |