blob: e581ed3d948a3acb4473e0db2741c59eb2998870 [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
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.
Nate Begeman1d4d4142005-09-01 00:19:25 +000012//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000016#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000017#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000018#include "llvm/Target/TargetData.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000019#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000020#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000021#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000022#include "llvm/ADT/SmallPtrSet.h"
23#include "llvm/ADT/Statistic.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000024#include "llvm/Support/Compiler.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000025#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/MathExtras.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000028#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000029using namespace llvm;
30
Chris Lattnercd3245a2006-12-19 22:41:21 +000031STATISTIC(NodesCombined , "Number of dag nodes combined");
32STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
33STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
34
Nate Begeman1d4d4142005-09-01 00:19:25 +000035namespace {
Chris Lattner938ab022007-01-16 04:55:25 +000036#ifndef NDEBUG
37 static cl::opt<bool>
38 ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
39 cl::desc("Pop up a window to show dags before the first "
40 "dag combine pass"));
41 static cl::opt<bool>
42 ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
43 cl::desc("Pop up a window to show dags before the second "
44 "dag combine pass"));
45#else
46 static const bool ViewDAGCombine1 = false;
47 static const bool ViewDAGCombine2 = false;
48#endif
49
Jim Laskey71382342006-10-07 23:37:56 +000050 static cl::opt<bool>
51 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000052 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000053
Jim Laskey07a27092006-10-18 19:08:31 +000054 static cl::opt<bool>
55 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
56 cl::desc("Include global information in alias analysis"));
57
Jim Laskeybc588b82006-10-05 15:07:25 +000058//------------------------------ DAGCombiner ---------------------------------//
59
Jim Laskey71382342006-10-07 23:37:56 +000060 class VISIBILITY_HIDDEN DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000061 SelectionDAG &DAG;
62 TargetLowering &TLI;
Nate Begeman4ebd8052005-09-01 23:24:04 +000063 bool AfterLegalize;
Nate Begeman1d4d4142005-09-01 00:19:25 +000064
65 // Worklist of all of the nodes that need to be simplified.
66 std::vector<SDNode*> WorkList;
67
Jim Laskeyc7c3f112006-10-16 20:52:31 +000068 // AA - Used for DAG load/store alias analysis.
69 AliasAnalysis &AA;
70
Nate Begeman1d4d4142005-09-01 00:19:25 +000071 /// AddUsersToWorkList - When an instruction is simplified, add all users of
72 /// the instruction to the work lists because they might get more simplified
73 /// now.
74 ///
75 void AddUsersToWorkList(SDNode *N) {
76 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000077 UI != UE; ++UI)
Jim Laskey6ff23e52006-10-04 16:53:27 +000078 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000079 }
80
81 /// removeFromWorkList - remove all instances of N from the worklist.
Chris Lattner5750df92006-03-01 04:03:14 +000082 ///
Nate Begeman1d4d4142005-09-01 00:19:25 +000083 void removeFromWorkList(SDNode *N) {
84 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
85 WorkList.end());
86 }
87
Dan Gohman389079b2007-10-08 17:57:15 +000088 /// visit - call the node-specific routine that knows how to fold each
89 /// particular type of node.
90 SDOperand visit(SDNode *N);
91
Chris Lattner24664722006-03-01 04:53:38 +000092 public:
Jim Laskey6ff23e52006-10-04 16:53:27 +000093 /// AddToWorkList - Add to the work list making sure it's instance is at the
94 /// the back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +000095 void AddToWorkList(SDNode *N) {
Jim Laskey6ff23e52006-10-04 16:53:27 +000096 removeFromWorkList(N);
Chris Lattner5750df92006-03-01 04:03:14 +000097 WorkList.push_back(N);
98 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000099
Jim Laskey274062c2006-10-13 23:32:28 +0000100 SDOperand CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
101 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000102 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
Chris Lattner87514ca2005-10-10 22:31:19 +0000103 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000104 DOUT << "\nReplacing.1 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000105 DOUT << "\nWith: "; DEBUG(To[0].Val->dump(&DAG));
106 DOUT << " and " << NumTo-1 << " other values\n";
Chris Lattner01a22022005-10-10 22:04:48 +0000107 std::vector<SDNode*> NowDead;
Chris Lattner3577e382006-08-11 17:56:38 +0000108 DAG.ReplaceAllUsesWith(N, To, &NowDead);
Chris Lattner01a22022005-10-10 22:04:48 +0000109
Jim Laskey274062c2006-10-13 23:32:28 +0000110 if (AddTo) {
111 // Push the new nodes and any users onto the worklist
112 for (unsigned i = 0, e = NumTo; i != e; ++i) {
113 AddToWorkList(To[i].Val);
114 AddUsersToWorkList(To[i].Val);
115 }
Chris Lattner01a22022005-10-10 22:04:48 +0000116 }
117
Jim Laskey6ff23e52006-10-04 16:53:27 +0000118 // Nodes can be reintroduced into the worklist. Make sure we do not
119 // process a node that has been replaced.
Chris Lattner01a22022005-10-10 22:04:48 +0000120 removeFromWorkList(N);
121 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
122 removeFromWorkList(NowDead[i]);
123
124 // Finally, since the node is now dead, remove it from the graph.
125 DAG.DeleteNode(N);
126 return SDOperand(N, 0);
127 }
Nate Begeman368e18d2006-02-16 21:11:51 +0000128
Jim Laskey274062c2006-10-13 23:32:28 +0000129 SDOperand CombineTo(SDNode *N, SDOperand Res, bool AddTo = true) {
130 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000131 }
132
Jim Laskey274062c2006-10-13 23:32:28 +0000133 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1,
134 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000135 SDOperand To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000136 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000137 }
138 private:
139
Chris Lattner012f2412006-02-17 21:58:01 +0000140 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000141 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000142 /// propagation. If so, return true.
Chris Lattnere33544c2007-10-13 06:58:48 +0000143 bool SimplifyDemandedBits(SDOperand Op, uint64_t Demanded = ~0ULL) {
Chris Lattnerb16f55f2007-12-22 20:56:36 +0000144 TargetLowering::TargetLoweringOpt TLO(DAG, AfterLegalize);
Nate Begeman368e18d2006-02-16 21:11:51 +0000145 uint64_t KnownZero, KnownOne;
Chris Lattnere33544c2007-10-13 06:58:48 +0000146 Demanded &= MVT::getIntVTBitMask(Op.getValueType());
Chris Lattner012f2412006-02-17 21:58:01 +0000147 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
148 return false;
149
150 // Revisit the node.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000151 AddToWorkList(Op.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000152
153 // Replace the old value with the new one.
154 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000155 DOUT << "\nReplacing.2 "; DEBUG(TLO.Old.Val->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000156 DOUT << "\nWith: "; DEBUG(TLO.New.Val->dump(&DAG));
157 DOUT << '\n';
Chris Lattner012f2412006-02-17 21:58:01 +0000158
159 std::vector<SDNode*> NowDead;
Chris Lattner01d029b2007-10-15 06:10:22 +0000160 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &NowDead);
Chris Lattner012f2412006-02-17 21:58:01 +0000161
Chris Lattner7d20d392006-02-20 06:51:04 +0000162 // Push the new node and any (possibly new) users onto the worklist.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000163 AddToWorkList(TLO.New.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000164 AddUsersToWorkList(TLO.New.Val);
165
166 // Nodes can end up on the worklist more than once. Make sure we do
167 // not process a node that has been replaced.
Chris Lattner012f2412006-02-17 21:58:01 +0000168 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
169 removeFromWorkList(NowDead[i]);
170
Chris Lattner7d20d392006-02-20 06:51:04 +0000171 // Finally, if the node is now dead, remove it from the graph. The node
172 // may not be dead if the replacement process recursively simplified to
173 // something else needing this node.
174 if (TLO.Old.Val->use_empty()) {
175 removeFromWorkList(TLO.Old.Val);
Chris Lattnerec06e9a2007-04-18 03:05:22 +0000176
177 // If the operands of this node are only used by the node, they will now
178 // be dead. Make sure to visit them first to delete dead nodes early.
179 for (unsigned i = 0, e = TLO.Old.Val->getNumOperands(); i != e; ++i)
180 if (TLO.Old.Val->getOperand(i).Val->hasOneUse())
181 AddToWorkList(TLO.Old.Val->getOperand(i).Val);
182
Chris Lattner7d20d392006-02-20 06:51:04 +0000183 DAG.DeleteNode(TLO.Old.Val);
184 }
Chris Lattner012f2412006-02-17 21:58:01 +0000185 return true;
Nate Begeman368e18d2006-02-16 21:11:51 +0000186 }
Chris Lattner87514ca2005-10-10 22:31:19 +0000187
Chris Lattner448f2192006-11-11 00:39:41 +0000188 bool CombineToPreIndexedLoadStore(SDNode *N);
189 bool CombineToPostIndexedLoadStore(SDNode *N);
190
191
Dan Gohman389079b2007-10-08 17:57:15 +0000192 /// combine - call the node-specific routine that knows how to fold each
193 /// particular type of node. If that doesn't do anything, try the
194 /// target-specific DAG combines.
195 SDOperand combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000196
197 // Visitation implementation - Implement dag node combining for different
198 // node types. The semantics are as follows:
199 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000200 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000201 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000202 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000203 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000204 SDOperand visitTokenFactor(SDNode *N);
205 SDOperand visitADD(SDNode *N);
206 SDOperand visitSUB(SDNode *N);
Chris Lattner91153682007-03-04 20:03:15 +0000207 SDOperand visitADDC(SDNode *N);
208 SDOperand visitADDE(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000209 SDOperand visitMUL(SDNode *N);
210 SDOperand visitSDIV(SDNode *N);
211 SDOperand visitUDIV(SDNode *N);
212 SDOperand visitSREM(SDNode *N);
213 SDOperand visitUREM(SDNode *N);
214 SDOperand visitMULHU(SDNode *N);
215 SDOperand visitMULHS(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000216 SDOperand visitSMUL_LOHI(SDNode *N);
217 SDOperand visitUMUL_LOHI(SDNode *N);
218 SDOperand visitSDIVREM(SDNode *N);
219 SDOperand visitUDIVREM(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000220 SDOperand visitAND(SDNode *N);
221 SDOperand visitOR(SDNode *N);
222 SDOperand visitXOR(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000223 SDOperand SimplifyVBinOp(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000224 SDOperand visitSHL(SDNode *N);
225 SDOperand visitSRA(SDNode *N);
226 SDOperand visitSRL(SDNode *N);
227 SDOperand visitCTLZ(SDNode *N);
228 SDOperand visitCTTZ(SDNode *N);
229 SDOperand visitCTPOP(SDNode *N);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000230 SDOperand visitSELECT(SDNode *N);
231 SDOperand visitSELECT_CC(SDNode *N);
232 SDOperand visitSETCC(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000233 SDOperand visitSIGN_EXTEND(SDNode *N);
234 SDOperand visitZERO_EXTEND(SDNode *N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000235 SDOperand visitANY_EXTEND(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000236 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
237 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000238 SDOperand visitBIT_CONVERT(SDNode *N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000239 SDOperand visitFADD(SDNode *N);
240 SDOperand visitFSUB(SDNode *N);
241 SDOperand visitFMUL(SDNode *N);
242 SDOperand visitFDIV(SDNode *N);
243 SDOperand visitFREM(SDNode *N);
Chris Lattner12d83032006-03-05 05:30:57 +0000244 SDOperand visitFCOPYSIGN(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000245 SDOperand visitSINT_TO_FP(SDNode *N);
246 SDOperand visitUINT_TO_FP(SDNode *N);
247 SDOperand visitFP_TO_SINT(SDNode *N);
248 SDOperand visitFP_TO_UINT(SDNode *N);
249 SDOperand visitFP_ROUND(SDNode *N);
250 SDOperand visitFP_ROUND_INREG(SDNode *N);
251 SDOperand visitFP_EXTEND(SDNode *N);
252 SDOperand visitFNEG(SDNode *N);
253 SDOperand visitFABS(SDNode *N);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000254 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000255 SDOperand visitBR_CC(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000256 SDOperand visitLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000257 SDOperand visitSTORE(SDNode *N);
Chris Lattnerca242442006-03-19 01:27:56 +0000258 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
Evan Cheng513da432007-10-06 08:19:55 +0000259 SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000260 SDOperand visitBUILD_VECTOR(SDNode *N);
261 SDOperand visitCONCAT_VECTORS(SDNode *N);
Chris Lattner66445d32006-03-28 22:11:53 +0000262 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000263
Evan Cheng44f1f092006-04-20 08:56:16 +0000264 SDOperand XformToShuffleWithZero(SDNode *N);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000265 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
266
Chris Lattnere70da202007-12-06 07:33:36 +0000267 SDOperand visitShiftByConstant(SDNode *N, unsigned Amt);
268
Chris Lattner40c62d52005-10-18 06:04:22 +0000269 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Chris Lattner35e5c142006-05-05 05:51:50 +0000270 SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000271 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
272 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
Chris Lattner1eba01e2007-04-11 06:50:51 +0000273 SDOperand N3, ISD::CondCode CC,
274 bool NotExtCompare = false);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000275 SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000276 ISD::CondCode Cond, bool foldBooleans = true);
Dan Gohman389079b2007-10-08 17:57:15 +0000277 bool SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, unsigned HiOp);
Dan Gohman7f321562007-06-25 16:23:39 +0000278 SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT::ValueType);
Nate Begeman69575232005-10-20 02:15:44 +0000279 SDOperand BuildSDIV(SDNode *N);
Chris Lattner516b9622006-09-14 20:50:57 +0000280 SDOperand BuildUDIV(SDNode *N);
281 SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
Evan Chengc88138f2007-03-22 01:54:19 +0000282 SDOperand ReduceLoadWidth(SDNode *N);
Jim Laskey279f0532006-09-25 16:29:54 +0000283
Chris Lattner2b4c2792007-10-13 06:35:54 +0000284 SDOperand GetDemandedBits(SDOperand V, uint64_t Mask);
285
Jim Laskey6ff23e52006-10-04 16:53:27 +0000286 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
287 /// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +0000288 void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000289 SmallVector<SDOperand, 8> &Aliases);
290
Jim Laskey096c22e2006-10-18 12:29:57 +0000291 /// isAlias - Return true if there is any possibility that the two addresses
292 /// overlap.
293 bool isAlias(SDOperand Ptr1, int64_t Size1,
294 const Value *SrcValue1, int SrcValueOffset1,
295 SDOperand Ptr2, int64_t Size2,
Jeff Cohend41b30d2006-11-05 19:31:28 +0000296 const Value *SrcValue2, int SrcValueOffset2);
Jim Laskey096c22e2006-10-18 12:29:57 +0000297
Jim Laskey7ca56af2006-10-11 13:47:09 +0000298 /// FindAliasInfo - Extracts the relevant alias information from the memory
299 /// node. Returns true if the operand was a load.
300 bool FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +0000301 SDOperand &Ptr, int64_t &Size,
302 const Value *&SrcValue, int &SrcValueOffset);
Jim Laskey7ca56af2006-10-11 13:47:09 +0000303
Jim Laskey279f0532006-09-25 16:29:54 +0000304 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000305 /// looking for a better chain (aliasing node.)
Jim Laskey279f0532006-09-25 16:29:54 +0000306 SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
307
Nate Begeman1d4d4142005-09-01 00:19:25 +0000308public:
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000309 DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
310 : DAG(D),
311 TLI(D.getTargetLoweringInfo()),
312 AfterLegalize(false),
313 AA(A) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000314
315 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000316 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000317 };
318}
319
Chris Lattner24664722006-03-01 04:53:38 +0000320//===----------------------------------------------------------------------===//
321// TargetLowering::DAGCombinerInfo implementation
322//===----------------------------------------------------------------------===//
323
324void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
325 ((DAGCombiner*)DC)->AddToWorkList(N);
326}
327
328SDOperand TargetLowering::DAGCombinerInfo::
329CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
Chris Lattner3577e382006-08-11 17:56:38 +0000330 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
Chris Lattner24664722006-03-01 04:53:38 +0000331}
332
333SDOperand TargetLowering::DAGCombinerInfo::
334CombineTo(SDNode *N, SDOperand Res) {
335 return ((DAGCombiner*)DC)->CombineTo(N, Res);
336}
337
338
339SDOperand TargetLowering::DAGCombinerInfo::
340CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
341 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
342}
343
344
Chris Lattner24664722006-03-01 04:53:38 +0000345//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000346// Helper Functions
347//===----------------------------------------------------------------------===//
348
349/// isNegatibleForFree - Return 1 if we can compute the negated form of the
350/// specified expression for the same cost as the expression itself, or 2 if we
351/// can compute the negated form more cheaply than the expression itself.
Chris Lattner501fee72007-05-23 07:35:22 +0000352static char isNegatibleForFree(SDOperand Op, unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000353 // No compile time optimizations on this type.
354 if (Op.getValueType() == MVT::ppcf128)
355 return 0;
356
Chris Lattner29446522007-05-14 22:04:50 +0000357 // fneg is removable even if it has multiple uses.
358 if (Op.getOpcode() == ISD::FNEG) return 2;
359
360 // Don't allow anything with multiple uses.
361 if (!Op.hasOneUse()) return 0;
362
Chris Lattner3adf9512007-05-25 02:19:06 +0000363 // Don't recurse exponentially.
364 if (Depth > 6) return 0;
365
Chris Lattner29446522007-05-14 22:04:50 +0000366 switch (Op.getOpcode()) {
367 default: return false;
368 case ISD::ConstantFP:
369 return 1;
370 case ISD::FADD:
371 // FIXME: determine better conditions for this xform.
372 if (!UnsafeFPMath) return 0;
373
374 // -(A+B) -> -A - B
Chris Lattner501fee72007-05-23 07:35:22 +0000375 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000376 return V;
377 // -(A+B) -> -B - A
Chris Lattner501fee72007-05-23 07:35:22 +0000378 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000379 case ISD::FSUB:
380 // We can't turn -(A-B) into B-A when we honor signed zeros.
381 if (!UnsafeFPMath) return 0;
382
383 // -(A-B) -> B-A
384 return 1;
385
386 case ISD::FMUL:
387 case ISD::FDIV:
388 if (HonorSignDependentRoundingFPMath()) return 0;
389
390 // -(X*Y) -> (-X * Y) or (X*-Y)
Chris Lattner501fee72007-05-23 07:35:22 +0000391 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000392 return V;
393
Chris Lattner501fee72007-05-23 07:35:22 +0000394 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000395
396 case ISD::FP_EXTEND:
397 case ISD::FP_ROUND:
398 case ISD::FSIN:
Chris Lattner501fee72007-05-23 07:35:22 +0000399 return isNegatibleForFree(Op.getOperand(0), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000400 }
401}
402
403/// GetNegatedExpression - If isNegatibleForFree returns true, this function
404/// returns the newly negated expression.
Chris Lattner3adf9512007-05-25 02:19:06 +0000405static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
406 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000407 // fneg is removable even if it has multiple uses.
408 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
409
410 // Don't allow anything with multiple uses.
411 assert(Op.hasOneUse() && "Unknown reuse!");
412
Chris Lattner3adf9512007-05-25 02:19:06 +0000413 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000414 switch (Op.getOpcode()) {
415 default: assert(0 && "Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000416 case ISD::ConstantFP: {
417 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
418 V.changeSign();
419 return DAG.getConstantFP(V, Op.getValueType());
420 }
Chris Lattner29446522007-05-14 22:04:50 +0000421 case ISD::FADD:
422 // FIXME: determine better conditions for this xform.
423 assert(UnsafeFPMath);
424
425 // -(A+B) -> -A - B
Chris Lattner3adf9512007-05-25 02:19:06 +0000426 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000427 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000428 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000429 Op.getOperand(1));
430 // -(A+B) -> -B - A
431 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000432 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000433 Op.getOperand(0));
434 case ISD::FSUB:
435 // We can't turn -(A-B) into B-A when we honor signed zeros.
436 assert(UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000437
438 // -(0-B) -> B
439 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000440 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000441 return Op.getOperand(1);
Chris Lattner29446522007-05-14 22:04:50 +0000442
443 // -(A-B) -> B-A
444 return DAG.getNode(ISD::FSUB, Op.getValueType(), Op.getOperand(1),
445 Op.getOperand(0));
446
447 case ISD::FMUL:
448 case ISD::FDIV:
449 assert(!HonorSignDependentRoundingFPMath());
450
451 // -(X*Y) -> -X * Y
Chris Lattner3adf9512007-05-25 02:19:06 +0000452 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000453 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000454 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000455 Op.getOperand(1));
456
457 // -(X*Y) -> X * -Y
458 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
459 Op.getOperand(0),
Chris Lattner3adf9512007-05-25 02:19:06 +0000460 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000461
462 case ISD::FP_EXTEND:
463 case ISD::FP_ROUND:
464 case ISD::FSIN:
465 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000466 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000467 }
468}
Chris Lattner24664722006-03-01 04:53:38 +0000469
470
Nate Begeman4ebd8052005-09-01 23:24:04 +0000471// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
472// that selects between the values 1 and 0, making it equivalent to a setcc.
Nate Begeman646d7e22005-09-02 21:18:40 +0000473// Also, set the incoming LHS, RHS, and CC references to the appropriate
474// nodes based on the type of node we are checking. This simplifies life a
475// bit for the callers.
476static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
477 SDOperand &CC) {
478 if (N.getOpcode() == ISD::SETCC) {
479 LHS = N.getOperand(0);
480 RHS = N.getOperand(1);
481 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000482 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000483 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000484 if (N.getOpcode() == ISD::SELECT_CC &&
485 N.getOperand(2).getOpcode() == ISD::Constant &&
486 N.getOperand(3).getOpcode() == ISD::Constant &&
487 cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000488 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
489 LHS = N.getOperand(0);
490 RHS = N.getOperand(1);
491 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000492 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000493 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000494 return false;
495}
496
Nate Begeman99801192005-09-07 23:25:52 +0000497// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
498// one use. If this is true, it allows the users to invert the operation for
499// free when it is profitable to do so.
500static bool isOneUseSetCC(SDOperand N) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000501 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000502 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000503 return true;
504 return false;
505}
506
Nate Begemancd4d58c2006-02-03 06:46:56 +0000507SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
508 MVT::ValueType VT = N0.getValueType();
509 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
510 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
511 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
512 if (isa<ConstantSDNode>(N1)) {
513 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000514 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000515 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(0));
516 } else if (N0.hasOneUse()) {
517 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000518 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000519 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
520 }
521 }
522 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
523 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
524 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
525 if (isa<ConstantSDNode>(N0)) {
526 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000527 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000528 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(0));
529 } else if (N1.hasOneUse()) {
530 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000531 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000532 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
533 }
534 }
535 return SDOperand();
536}
537
Chris Lattner29446522007-05-14 22:04:50 +0000538//===----------------------------------------------------------------------===//
539// Main DAG Combiner implementation
540//===----------------------------------------------------------------------===//
541
Nate Begeman4ebd8052005-09-01 23:24:04 +0000542void DAGCombiner::Run(bool RunningAfterLegalize) {
543 // set the instance variable, so that the various visit routines may use it.
544 AfterLegalize = RunningAfterLegalize;
545
Nate Begeman646d7e22005-09-02 21:18:40 +0000546 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000547 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
548 E = DAG.allnodes_end(); I != E; ++I)
549 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000550
Chris Lattner95038592005-10-05 06:35:28 +0000551 // Create a dummy node (which is not added to allnodes), that adds a reference
552 // to the root node, preventing it from being deleted, and tracking any
553 // changes of the root.
554 HandleSDNode Dummy(DAG.getRoot());
555
Jim Laskey26f7fa72006-10-17 19:33:52 +0000556 // The root of the dag may dangle to deleted nodes until the dag combiner is
557 // done. Set it to null to avoid confusion.
558 DAG.setRoot(SDOperand());
Chris Lattner24664722006-03-01 04:53:38 +0000559
Nate Begeman1d4d4142005-09-01 00:19:25 +0000560 // while the worklist isn't empty, inspect the node on the end of it and
561 // try and combine it.
562 while (!WorkList.empty()) {
563 SDNode *N = WorkList.back();
564 WorkList.pop_back();
565
566 // If N has no uses, it is dead. Make sure to revisit all N's operands once
Chris Lattner95038592005-10-05 06:35:28 +0000567 // N is deleted from the DAG, since they too may now be dead or may have a
568 // reduced number of uses, allowing other xforms.
569 if (N->use_empty() && N != &Dummy) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000570 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jim Laskey6ff23e52006-10-04 16:53:27 +0000571 AddToWorkList(N->getOperand(i).Val);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000572
Chris Lattner95038592005-10-05 06:35:28 +0000573 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000574 continue;
575 }
576
Dan Gohman389079b2007-10-08 17:57:15 +0000577 SDOperand RV = combine(N);
Chris Lattner24664722006-03-01 04:53:38 +0000578
Nate Begeman83e75ec2005-09-06 04:43:02 +0000579 if (RV.Val) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000580 ++NodesCombined;
Nate Begeman646d7e22005-09-02 21:18:40 +0000581 // If we get back the same node we passed in, rather than a new node or
582 // zero, we know that the node must have defined multiple values and
583 // CombineTo was used. Since CombineTo takes care of the worklist
584 // mechanics for us, we have no work to do in this case.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000585 if (RV.Val != N) {
Chris Lattner729c6d12006-05-27 00:43:02 +0000586 assert(N->getOpcode() != ISD::DELETED_NODE &&
587 RV.Val->getOpcode() != ISD::DELETED_NODE &&
588 "Node was deleted but visit returned new node!");
589
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000590 DOUT << "\nReplacing.3 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000591 DOUT << "\nWith: "; DEBUG(RV.Val->dump(&DAG));
592 DOUT << '\n';
Chris Lattner01a22022005-10-10 22:04:48 +0000593 std::vector<SDNode*> NowDead;
Evan Cheng2adffa12006-09-21 19:04:05 +0000594 if (N->getNumValues() == RV.Val->getNumValues())
595 DAG.ReplaceAllUsesWith(N, RV.Val, &NowDead);
596 else {
597 assert(N->getValueType(0) == RV.getValueType() && "Type mismatch");
598 SDOperand OpV = RV;
599 DAG.ReplaceAllUsesWith(N, &OpV, &NowDead);
600 }
Nate Begeman646d7e22005-09-02 21:18:40 +0000601
602 // Push the new node and any users onto the worklist
Jim Laskey6ff23e52006-10-04 16:53:27 +0000603 AddToWorkList(RV.Val);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000604 AddUsersToWorkList(RV.Val);
Nate Begeman646d7e22005-09-02 21:18:40 +0000605
Jim Laskey6ff23e52006-10-04 16:53:27 +0000606 // Nodes can be reintroduced into the worklist. Make sure we do not
607 // process a node that has been replaced.
Nate Begeman646d7e22005-09-02 21:18:40 +0000608 removeFromWorkList(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000609 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
610 removeFromWorkList(NowDead[i]);
Chris Lattner5c46f742005-10-05 06:11:08 +0000611
612 // Finally, since the node is now dead, remove it from the graph.
613 DAG.DeleteNode(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000614 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000615 }
616 }
Chris Lattner95038592005-10-05 06:35:28 +0000617
618 // If the root changed (e.g. it was a dead load, update the root).
619 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000620}
621
Nate Begeman83e75ec2005-09-06 04:43:02 +0000622SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000623 switch(N->getOpcode()) {
624 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000625 case ISD::TokenFactor: return visitTokenFactor(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000626 case ISD::ADD: return visitADD(N);
627 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +0000628 case ISD::ADDC: return visitADDC(N);
629 case ISD::ADDE: return visitADDE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000630 case ISD::MUL: return visitMUL(N);
631 case ISD::SDIV: return visitSDIV(N);
632 case ISD::UDIV: return visitUDIV(N);
633 case ISD::SREM: return visitSREM(N);
634 case ISD::UREM: return visitUREM(N);
635 case ISD::MULHU: return visitMULHU(N);
636 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +0000637 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
638 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
639 case ISD::SDIVREM: return visitSDIVREM(N);
640 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000641 case ISD::AND: return visitAND(N);
642 case ISD::OR: return visitOR(N);
643 case ISD::XOR: return visitXOR(N);
644 case ISD::SHL: return visitSHL(N);
645 case ISD::SRA: return visitSRA(N);
646 case ISD::SRL: return visitSRL(N);
647 case ISD::CTLZ: return visitCTLZ(N);
648 case ISD::CTTZ: return visitCTTZ(N);
649 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000650 case ISD::SELECT: return visitSELECT(N);
651 case ISD::SELECT_CC: return visitSELECT_CC(N);
652 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000653 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
654 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000655 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000656 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
657 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000658 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000659 case ISD::FADD: return visitFADD(N);
660 case ISD::FSUB: return visitFSUB(N);
661 case ISD::FMUL: return visitFMUL(N);
662 case ISD::FDIV: return visitFDIV(N);
663 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +0000664 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000665 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
666 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
667 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
668 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
669 case ISD::FP_ROUND: return visitFP_ROUND(N);
670 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
671 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
672 case ISD::FNEG: return visitFNEG(N);
673 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000674 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000675 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000676 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000677 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +0000678 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +0000679 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +0000680 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
681 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Chris Lattner66445d32006-03-28 22:11:53 +0000682 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000683 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000684 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000685}
686
Dan Gohman389079b2007-10-08 17:57:15 +0000687SDOperand DAGCombiner::combine(SDNode *N) {
688
689 SDOperand RV = visit(N);
690
691 // If nothing happened, try a target-specific DAG combine.
692 if (RV.Val == 0) {
693 assert(N->getOpcode() != ISD::DELETED_NODE &&
694 "Node was deleted but visit returned NULL!");
695
696 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
697 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
698
699 // Expose the DAG combiner to the target combiner impls.
700 TargetLowering::DAGCombinerInfo
701 DagCombineInfo(DAG, !AfterLegalize, false, this);
702
703 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
704 }
705 }
706
707 return RV;
708}
709
Chris Lattner6270f682006-10-08 22:57:01 +0000710/// getInputChainForNode - Given a node, return its input chain if it has one,
711/// otherwise return a null sd operand.
712static SDOperand getInputChainForNode(SDNode *N) {
713 if (unsigned NumOps = N->getNumOperands()) {
714 if (N->getOperand(0).getValueType() == MVT::Other)
715 return N->getOperand(0);
716 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
717 return N->getOperand(NumOps-1);
718 for (unsigned i = 1; i < NumOps-1; ++i)
719 if (N->getOperand(i).getValueType() == MVT::Other)
720 return N->getOperand(i);
721 }
722 return SDOperand(0, 0);
723}
724
Nate Begeman83e75ec2005-09-06 04:43:02 +0000725SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +0000726 // If N has two operands, where one has an input chain equal to the other,
727 // the 'other' chain is redundant.
728 if (N->getNumOperands() == 2) {
729 if (getInputChainForNode(N->getOperand(0).Val) == N->getOperand(1))
730 return N->getOperand(0);
731 if (getInputChainForNode(N->getOperand(1).Val) == N->getOperand(0))
732 return N->getOperand(1);
733 }
734
Chris Lattnerc76d4412007-05-16 06:37:59 +0000735 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
736 SmallVector<SDOperand, 8> Ops; // Ops for replacing token factor.
737 SmallPtrSet<SDNode*, 16> SeenOps;
738 bool Changed = false; // If we should replace this token factor.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000739
740 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +0000741 TFs.push_back(N);
Jim Laskey279f0532006-09-25 16:29:54 +0000742
Jim Laskey71382342006-10-07 23:37:56 +0000743 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +0000744 // encountered.
745 for (unsigned i = 0; i < TFs.size(); ++i) {
746 SDNode *TF = TFs[i];
747
Jim Laskey6ff23e52006-10-04 16:53:27 +0000748 // Check each of the operands.
749 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
750 SDOperand Op = TF->getOperand(i);
Jim Laskey279f0532006-09-25 16:29:54 +0000751
Jim Laskey6ff23e52006-10-04 16:53:27 +0000752 switch (Op.getOpcode()) {
753 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +0000754 // Entry tokens don't need to be added to the list. They are
755 // rededundant.
756 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000757 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000758
Jim Laskey6ff23e52006-10-04 16:53:27 +0000759 case ISD::TokenFactor:
Jim Laskeybc588b82006-10-05 15:07:25 +0000760 if ((CombinerAA || Op.hasOneUse()) &&
761 std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000762 // Queue up for processing.
763 TFs.push_back(Op.Val);
764 // Clean up in case the token factor is removed.
765 AddToWorkList(Op.Val);
766 Changed = true;
767 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000768 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000769 // Fall thru
770
771 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +0000772 // Only add if it isn't already in the list.
773 if (SeenOps.insert(Op.Val))
Jim Laskeybc588b82006-10-05 15:07:25 +0000774 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +0000775 else
776 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000777 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000778 }
779 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000780 }
781
782 SDOperand Result;
783
784 // If we've change things around then replace token factor.
785 if (Changed) {
786 if (Ops.size() == 0) {
787 // The entry token is the only possible outcome.
788 Result = DAG.getEntryNode();
789 } else {
790 // New and improved token factor.
791 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +0000792 }
Jim Laskey274062c2006-10-13 23:32:28 +0000793
794 // Don't add users to work list.
795 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +0000796 }
Jim Laskey279f0532006-09-25 16:29:54 +0000797
Jim Laskey6ff23e52006-10-04 16:53:27 +0000798 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000799}
800
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000801static
802SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
803 MVT::ValueType VT = N0.getValueType();
804 SDOperand N00 = N0.getOperand(0);
805 SDOperand N01 = N0.getOperand(1);
806 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
807 if (N01C && N00.getOpcode() == ISD::ADD && N00.Val->hasOneUse() &&
808 isa<ConstantSDNode>(N00.getOperand(1))) {
809 N0 = DAG.getNode(ISD::ADD, VT,
810 DAG.getNode(ISD::SHL, VT, N00.getOperand(0), N01),
811 DAG.getNode(ISD::SHL, VT, N00.getOperand(1), N01));
812 return DAG.getNode(ISD::ADD, VT, N0, N1);
813 }
814 return SDOperand();
815}
816
Evan Chengb13cdbd2007-06-21 07:39:16 +0000817static
818SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
819 SelectionDAG &DAG) {
820 MVT::ValueType VT = N->getValueType(0);
821 unsigned Opc = N->getOpcode();
822 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
823 SDOperand LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
824 SDOperand RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
825 ISD::CondCode CC = ISD::SETCC_INVALID;
826 if (isSlctCC)
827 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
828 else {
829 SDOperand CCOp = Slct.getOperand(0);
830 if (CCOp.getOpcode() == ISD::SETCC)
831 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
832 }
833
834 bool DoXform = false;
835 bool InvCC = false;
836 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
837 "Bad input!");
838 if (LHS.getOpcode() == ISD::Constant &&
839 cast<ConstantSDNode>(LHS)->isNullValue())
840 DoXform = true;
841 else if (CC != ISD::SETCC_INVALID &&
842 RHS.getOpcode() == ISD::Constant &&
843 cast<ConstantSDNode>(RHS)->isNullValue()) {
844 std::swap(LHS, RHS);
845 bool isInt = MVT::isInteger(isSlctCC ? Slct.getOperand(0).getValueType()
846 : Slct.getOperand(0).getOperand(0).getValueType());
847 CC = ISD::getSetCCInverse(CC, isInt);
848 DoXform = true;
849 InvCC = true;
850 }
851
852 if (DoXform) {
853 SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
854 if (isSlctCC)
855 return DAG.getSelectCC(OtherOp, Result,
856 Slct.getOperand(0), Slct.getOperand(1), CC);
857 SDOperand CCOp = Slct.getOperand(0);
858 if (InvCC)
859 CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
860 CCOp.getOperand(1), CC);
861 return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
862 }
863 return SDOperand();
864}
865
Nate Begeman83e75ec2005-09-06 04:43:02 +0000866SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000867 SDOperand N0 = N->getOperand(0);
868 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000869 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
870 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000871 MVT::ValueType VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000872
873 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +0000874 if (MVT::isVector(VT)) {
875 SDOperand FoldedVOp = SimplifyVBinOp(N);
876 if (FoldedVOp.Val) return FoldedVOp;
877 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000878
Dan Gohman613e0d82007-07-03 14:03:57 +0000879 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +0000880 if (N0.getOpcode() == ISD::UNDEF)
881 return N0;
882 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +0000883 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000884 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000885 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000886 return DAG.getNode(ISD::ADD, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000887 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000888 if (N0C && !N1C)
889 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000890 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000891 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000892 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000893 // fold ((c1-A)+c2) -> (c1+c2)-A
894 if (N1C && N0.getOpcode() == ISD::SUB)
895 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
896 return DAG.getNode(ISD::SUB, VT,
897 DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
898 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000899 // reassociate add
900 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
901 if (RADD.Val != 0)
902 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000903 // fold ((0-A) + B) -> B-A
904 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
905 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000906 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000907 // fold (A + (0-B)) -> A-B
908 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
909 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000910 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000911 // fold (A+(B-A)) -> B
912 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000913 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +0000914
Evan Cheng860771d2006-03-01 01:09:54 +0000915 if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +0000916 return SDOperand(N, 0);
Chris Lattner947c2892006-03-13 06:51:27 +0000917
918 // fold (a+b) -> (a|b) iff a and b share no bits.
919 if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
920 uint64_t LHSZero, LHSOne;
921 uint64_t RHSZero, RHSOne;
922 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000923 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000924 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000925 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000926
927 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
928 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
929 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
930 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
931 return DAG.getNode(ISD::OR, VT, N0, N1);
932 }
933 }
Evan Cheng3ef554d2006-11-06 08:14:30 +0000934
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000935 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
936 if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
937 SDOperand Result = combineShlAddConstant(N0, N1, DAG);
938 if (Result.Val) return Result;
939 }
940 if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
941 SDOperand Result = combineShlAddConstant(N1, N0, DAG);
942 if (Result.Val) return Result;
943 }
944
Evan Chengb13cdbd2007-06-21 07:39:16 +0000945 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
946 if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
947 SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
948 if (Result.Val) return Result;
949 }
950 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
951 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
952 if (Result.Val) return Result;
953 }
954
Nate Begeman83e75ec2005-09-06 04:43:02 +0000955 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000956}
957
Chris Lattner91153682007-03-04 20:03:15 +0000958SDOperand DAGCombiner::visitADDC(SDNode *N) {
959 SDOperand N0 = N->getOperand(0);
960 SDOperand N1 = N->getOperand(1);
961 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
962 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
963 MVT::ValueType VT = N0.getValueType();
964
965 // If the flag result is dead, turn this into an ADD.
966 if (N->hasNUsesOfValue(0, 1))
967 return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
Chris Lattnerb6541762007-03-04 20:40:38 +0000968 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
Chris Lattner91153682007-03-04 20:03:15 +0000969
970 // canonicalize constant to RHS.
Chris Lattnerbcf24842007-03-04 20:08:45 +0000971 if (N0C && !N1C) {
972 SDOperand Ops[] = { N1, N0 };
973 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
974 }
Chris Lattner91153682007-03-04 20:03:15 +0000975
Chris Lattnerb6541762007-03-04 20:40:38 +0000976 // fold (addc x, 0) -> x + no carry out
977 if (N1C && N1C->isNullValue())
978 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
979
980 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
981 uint64_t LHSZero, LHSOne;
982 uint64_t RHSZero, RHSOne;
983 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000984 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000985 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000986 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000987
988 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
989 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
990 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
991 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
992 return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
993 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
994 }
Chris Lattner91153682007-03-04 20:03:15 +0000995
996 return SDOperand();
997}
998
999SDOperand DAGCombiner::visitADDE(SDNode *N) {
1000 SDOperand N0 = N->getOperand(0);
1001 SDOperand N1 = N->getOperand(1);
Chris Lattnerb6541762007-03-04 20:40:38 +00001002 SDOperand CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001003 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1004 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Chris Lattnerbcf24842007-03-04 20:08:45 +00001005 //MVT::ValueType VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +00001006
1007 // canonicalize constant to RHS
Chris Lattnerbcf24842007-03-04 20:08:45 +00001008 if (N0C && !N1C) {
Chris Lattnerb6541762007-03-04 20:40:38 +00001009 SDOperand Ops[] = { N1, N0, CarryIn };
Chris Lattnerbcf24842007-03-04 20:08:45 +00001010 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1011 }
Chris Lattner91153682007-03-04 20:03:15 +00001012
Chris Lattnerb6541762007-03-04 20:40:38 +00001013 // fold (adde x, y, false) -> (addc x, y)
1014 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1015 SDOperand Ops[] = { N1, N0 };
1016 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1017 }
Chris Lattner91153682007-03-04 20:03:15 +00001018
1019 return SDOperand();
1020}
1021
1022
1023
Nate Begeman83e75ec2005-09-06 04:43:02 +00001024SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001025 SDOperand N0 = N->getOperand(0);
1026 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001027 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1028 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001029 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001030
Dan Gohman7f321562007-06-25 16:23:39 +00001031 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001032 if (MVT::isVector(VT)) {
1033 SDOperand FoldedVOp = SimplifyVBinOp(N);
1034 if (FoldedVOp.Val) return FoldedVOp;
1035 }
Dan Gohman7f321562007-06-25 16:23:39 +00001036
Chris Lattner854077d2005-10-17 01:07:11 +00001037 // fold (sub x, x) -> 0
1038 if (N0 == N1)
1039 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001040 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001041 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001042 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +00001043 // fold (sub x, c) -> (add x, -c)
1044 if (N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001045 return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001046 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001047 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001048 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001049 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001050 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001051 return N0.getOperand(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +00001052 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1053 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1054 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1055 if (Result.Val) return Result;
1056 }
Dan Gohman613e0d82007-07-03 14:03:57 +00001057 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001058 if (N0.getOpcode() == ISD::UNDEF)
1059 return N0;
1060 if (N1.getOpcode() == ISD::UNDEF)
1061 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001062
Nate Begeman83e75ec2005-09-06 04:43:02 +00001063 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001064}
1065
Nate Begeman83e75ec2005-09-06 04:43:02 +00001066SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001067 SDOperand N0 = N->getOperand(0);
1068 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001069 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1070 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +00001071 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001072
Dan Gohman7f321562007-06-25 16:23:39 +00001073 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001074 if (MVT::isVector(VT)) {
1075 SDOperand FoldedVOp = SimplifyVBinOp(N);
1076 if (FoldedVOp.Val) return FoldedVOp;
1077 }
Dan Gohman7f321562007-06-25 16:23:39 +00001078
Dan Gohman613e0d82007-07-03 14:03:57 +00001079 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001080 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001081 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001082 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001083 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001084 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001085 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001086 if (N0C && !N1C)
1087 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001088 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001089 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001090 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001091 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001092 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001093 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001094 // fold (mul x, (1 << c)) -> x << c
Nate Begeman646d7e22005-09-02 21:18:40 +00001095 if (N1C && isPowerOf2_64(N1C->getValue()))
Chris Lattner3e6099b2005-10-30 06:41:49 +00001096 return DAG.getNode(ISD::SHL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001097 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001098 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001099 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1100 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1101 // FIXME: If the input is something that is easily negated (e.g. a
1102 // single-use add), we should put the negate there.
1103 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1104 DAG.getNode(ISD::SHL, VT, N0,
1105 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1106 TLI.getShiftAmountTy())));
1107 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +00001108
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001109 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1110 if (N1C && N0.getOpcode() == ISD::SHL &&
1111 isa<ConstantSDNode>(N0.getOperand(1))) {
1112 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
Chris Lattner5750df92006-03-01 04:03:14 +00001113 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001114 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1115 }
1116
1117 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1118 // use.
1119 {
1120 SDOperand Sh(0,0), Y(0,0);
1121 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1122 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1123 N0.Val->hasOneUse()) {
1124 Sh = N0; Y = N1;
1125 } else if (N1.getOpcode() == ISD::SHL &&
1126 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1127 Sh = N1; Y = N0;
1128 }
1129 if (Sh.Val) {
1130 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1131 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1132 }
1133 }
Chris Lattnera1deca32006-03-04 23:33:26 +00001134 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1135 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1136 isa<ConstantSDNode>(N0.getOperand(1))) {
1137 return DAG.getNode(ISD::ADD, VT,
1138 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1139 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1140 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001141
Nate Begemancd4d58c2006-02-03 06:46:56 +00001142 // reassociate mul
1143 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1144 if (RMUL.Val != 0)
1145 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001146
Nate Begeman83e75ec2005-09-06 04:43:02 +00001147 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001148}
1149
Nate Begeman83e75ec2005-09-06 04:43:02 +00001150SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001151 SDOperand N0 = N->getOperand(0);
1152 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001153 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1154 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001155 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001156
Dan Gohman7f321562007-06-25 16:23:39 +00001157 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001158 if (MVT::isVector(VT)) {
1159 SDOperand FoldedVOp = SimplifyVBinOp(N);
1160 if (FoldedVOp.Val) return FoldedVOp;
1161 }
Dan Gohman7f321562007-06-25 16:23:39 +00001162
Nate Begeman1d4d4142005-09-01 00:19:25 +00001163 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001164 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001165 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001166 // fold (sdiv X, 1) -> X
1167 if (N1C && N1C->getSignExtended() == 1LL)
1168 return N0;
1169 // fold (sdiv X, -1) -> 0-X
1170 if (N1C && N1C->isAllOnesValue())
1171 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001172 // If we know the sign bits of both operands are zero, strength reduce to a
1173 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
1174 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001175 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1176 DAG.MaskedValueIsZero(N0, SignBit))
Chris Lattner094c8fc2005-10-07 06:10:46 +00001177 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001178 // fold (sdiv X, pow2) -> simple ops after legalize
Nate Begemanfb7217b2006-02-17 19:54:08 +00001179 if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +00001180 (isPowerOf2_64(N1C->getSignExtended()) ||
1181 isPowerOf2_64(-N1C->getSignExtended()))) {
1182 // If dividing by powers of two is cheap, then don't perform the following
1183 // fold.
1184 if (TLI.isPow2DivCheap())
1185 return SDOperand();
1186 int64_t pow2 = N1C->getSignExtended();
1187 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
Chris Lattner8f4880b2006-02-16 08:02:36 +00001188 unsigned lg2 = Log2_64(abs2);
1189 // Splat the sign bit into the register
1190 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001191 DAG.getConstant(MVT::getSizeInBits(VT)-1,
1192 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00001193 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +00001194 // Add (N0 < 0) ? abs2 - 1 : 0;
1195 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
1196 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001197 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +00001198 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +00001199 AddToWorkList(SRL.Val);
1200 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +00001201 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1202 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +00001203 // If we're dividing by a positive value, we're done. Otherwise, we must
1204 // negate the result.
1205 if (pow2 > 0)
1206 return SRA;
Chris Lattner5750df92006-03-01 04:03:14 +00001207 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001208 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1209 }
Nate Begeman69575232005-10-20 02:15:44 +00001210 // if integer divide is expensive and we satisfy the requirements, emit an
1211 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +00001212 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +00001213 !TLI.isIntDivCheap()) {
1214 SDOperand Op = BuildSDIV(N);
1215 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001216 }
Dan Gohman7f321562007-06-25 16:23:39 +00001217
Dan Gohman613e0d82007-07-03 14:03:57 +00001218 // undef / X -> 0
1219 if (N0.getOpcode() == ISD::UNDEF)
1220 return DAG.getConstant(0, VT);
1221 // X / undef -> undef
1222 if (N1.getOpcode() == ISD::UNDEF)
1223 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001224
Nate Begeman83e75ec2005-09-06 04:43:02 +00001225 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001226}
1227
Nate Begeman83e75ec2005-09-06 04:43:02 +00001228SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001229 SDOperand N0 = N->getOperand(0);
1230 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001231 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1232 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001233 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001234
Dan Gohman7f321562007-06-25 16:23:39 +00001235 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001236 if (MVT::isVector(VT)) {
1237 SDOperand FoldedVOp = SimplifyVBinOp(N);
1238 if (FoldedVOp.Val) return FoldedVOp;
1239 }
Dan Gohman7f321562007-06-25 16:23:39 +00001240
Nate Begeman1d4d4142005-09-01 00:19:25 +00001241 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001242 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001243 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001244 // fold (udiv x, (1 << c)) -> x >>u c
Nate Begeman646d7e22005-09-02 21:18:40 +00001245 if (N1C && isPowerOf2_64(N1C->getValue()))
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001246 return DAG.getNode(ISD::SRL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001247 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001248 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001249 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1250 if (N1.getOpcode() == ISD::SHL) {
1251 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1252 if (isPowerOf2_64(SHC->getValue())) {
1253 MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +00001254 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
1255 DAG.getConstant(Log2_64(SHC->getValue()),
1256 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +00001257 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001258 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001259 }
1260 }
1261 }
Nate Begeman69575232005-10-20 02:15:44 +00001262 // fold (udiv x, c) -> alternate
Chris Lattnere9936d12005-10-22 18:50:15 +00001263 if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
1264 SDOperand Op = BuildUDIV(N);
1265 if (Op.Val) return Op;
1266 }
Dan Gohman7f321562007-06-25 16:23:39 +00001267
Dan Gohman613e0d82007-07-03 14:03:57 +00001268 // undef / X -> 0
1269 if (N0.getOpcode() == ISD::UNDEF)
1270 return DAG.getConstant(0, VT);
1271 // X / undef -> undef
1272 if (N1.getOpcode() == ISD::UNDEF)
1273 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001274
Nate Begeman83e75ec2005-09-06 04:43:02 +00001275 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001276}
1277
Nate Begeman83e75ec2005-09-06 04:43:02 +00001278SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001279 SDOperand N0 = N->getOperand(0);
1280 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001281 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1282 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001283 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001284
1285 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001286 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001287 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001288 // If we know the sign bits of both operands are zero, strength reduce to a
1289 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
1290 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001291 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1292 DAG.MaskedValueIsZero(N0, SignBit))
Nate Begemana148d982006-01-18 22:35:16 +00001293 return DAG.getNode(ISD::UREM, VT, N0, N1);
Chris Lattner26d29902006-10-12 20:58:32 +00001294
Dan Gohman77003042007-11-26 23:46:11 +00001295 // If X/C can be simplified by the division-by-constant logic, lower
1296 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001297 if (N1C && !N1C->isNullValue()) {
1298 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001299 SDOperand OptimizedDiv = combine(Div.Val);
1300 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1301 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1302 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1303 AddToWorkList(Mul.Val);
1304 return Sub;
1305 }
Chris Lattner26d29902006-10-12 20:58:32 +00001306 }
1307
Dan Gohman613e0d82007-07-03 14:03:57 +00001308 // undef % X -> 0
1309 if (N0.getOpcode() == ISD::UNDEF)
1310 return DAG.getConstant(0, VT);
1311 // X % undef -> undef
1312 if (N1.getOpcode() == ISD::UNDEF)
1313 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001314
Nate Begeman83e75ec2005-09-06 04:43:02 +00001315 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001316}
1317
Nate Begeman83e75ec2005-09-06 04:43:02 +00001318SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001319 SDOperand N0 = N->getOperand(0);
1320 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001321 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1322 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001323 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001324
1325 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001326 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001327 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001328 // fold (urem x, pow2) -> (and x, pow2-1)
1329 if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
Nate Begemana148d982006-01-18 22:35:16 +00001330 return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00001331 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1332 if (N1.getOpcode() == ISD::SHL) {
1333 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1334 if (isPowerOf2_64(SHC->getValue())) {
Nate Begemanbab92392006-02-05 08:07:24 +00001335 SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001336 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001337 return DAG.getNode(ISD::AND, VT, N0, Add);
1338 }
1339 }
1340 }
Chris Lattner26d29902006-10-12 20:58:32 +00001341
Dan Gohman77003042007-11-26 23:46:11 +00001342 // If X/C can be simplified by the division-by-constant logic, lower
1343 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001344 if (N1C && !N1C->isNullValue()) {
1345 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001346 SDOperand OptimizedDiv = combine(Div.Val);
1347 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1348 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1349 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1350 AddToWorkList(Mul.Val);
1351 return Sub;
1352 }
Chris Lattner26d29902006-10-12 20:58:32 +00001353 }
1354
Dan Gohman613e0d82007-07-03 14:03:57 +00001355 // undef % X -> 0
1356 if (N0.getOpcode() == ISD::UNDEF)
1357 return DAG.getConstant(0, VT);
1358 // X % undef -> undef
1359 if (N1.getOpcode() == ISD::UNDEF)
1360 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001361
Nate Begeman83e75ec2005-09-06 04:43:02 +00001362 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001363}
1364
Nate Begeman83e75ec2005-09-06 04:43:02 +00001365SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001366 SDOperand N0 = N->getOperand(0);
1367 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001368 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001369 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001370
1371 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001372 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001373 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001374 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001375 if (N1C && N1C->getValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001376 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
1377 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001378 TLI.getShiftAmountTy()));
Dan Gohman613e0d82007-07-03 14:03:57 +00001379 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001380 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001381 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001382
Nate Begeman83e75ec2005-09-06 04:43:02 +00001383 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001384}
1385
Nate Begeman83e75ec2005-09-06 04:43:02 +00001386SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001387 SDOperand N0 = N->getOperand(0);
1388 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001389 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001390 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001391
1392 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001393 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001394 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001395 // fold (mulhu x, 1) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001396 if (N1C && N1C->getValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001397 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00001398 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001399 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001400 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001401
Nate Begeman83e75ec2005-09-06 04:43:02 +00001402 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001403}
1404
Dan Gohman389079b2007-10-08 17:57:15 +00001405/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1406/// compute two values. LoOp and HiOp give the opcodes for the two computations
1407/// that are being performed. Return true if a simplification was made.
1408///
1409bool DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N,
1410 unsigned LoOp, unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00001411 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00001412 bool HiExists = N->hasAnyUseOfValue(1);
1413 if (!HiExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001414 (!AfterLegalize ||
1415 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
1416 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0),
1417 DAG.getNode(LoOp, N->getValueType(0),
1418 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001419 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001420 return true;
1421 }
1422
1423 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00001424 bool LoExists = N->hasAnyUseOfValue(0);
1425 if (!LoExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001426 (!AfterLegalize ||
1427 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
1428 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
1429 DAG.getNode(HiOp, N->getValueType(1),
1430 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001431 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001432 return true;
1433 }
1434
Evan Cheng44711942007-11-08 09:25:29 +00001435 // If both halves are used, return as it is.
1436 if (LoExists && HiExists)
1437 return false;
1438
1439 // If the two computed results can be simplified separately, separate them.
1440 bool RetVal = false;
1441 if (LoExists) {
1442 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1443 N->op_begin(), N->getNumOperands());
1444 SDOperand LoOpt = combine(Lo.Val);
1445 if (LoOpt.Val && LoOpt != Lo &&
1446 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())) {
1447 RetVal = true;
1448 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), LoOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001449 } else
1450 DAG.DeleteNode(Lo.Val);
Dan Gohman389079b2007-10-08 17:57:15 +00001451 }
1452
Evan Cheng44711942007-11-08 09:25:29 +00001453 if (HiExists) {
1454 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1455 N->op_begin(), N->getNumOperands());
1456 SDOperand HiOpt = combine(Hi.Val);
1457 if (HiOpt.Val && HiOpt != Hi &&
1458 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())) {
1459 RetVal = true;
1460 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), HiOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001461 } else
1462 DAG.DeleteNode(Hi.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001463 }
1464
1465 return RetVal;
Dan Gohman389079b2007-10-08 17:57:15 +00001466}
1467
1468SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
1469
1470 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS))
1471 return SDOperand();
1472
1473 return SDOperand();
1474}
1475
1476SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
1477
1478 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU))
1479 return SDOperand();
1480
1481 return SDOperand();
1482}
1483
1484SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
1485
1486 if (SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM))
1487 return SDOperand();
1488
1489 return SDOperand();
1490}
1491
1492SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
1493
1494 if (SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM))
1495 return SDOperand();
1496
1497 return SDOperand();
1498}
1499
Chris Lattner35e5c142006-05-05 05:51:50 +00001500/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1501/// two operands of the same opcode, try to simplify it.
1502SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1503 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
1504 MVT::ValueType VT = N0.getValueType();
1505 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1506
Chris Lattner540121f2006-05-05 06:31:05 +00001507 // For each of OP in AND/OR/XOR:
1508 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1509 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1510 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Chris Lattner0d8dae72006-05-05 06:32:04 +00001511 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
Chris Lattner540121f2006-05-05 06:31:05 +00001512 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
Chris Lattner0d8dae72006-05-05 06:32:04 +00001513 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001514 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1515 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1516 N0.getOperand(0).getValueType(),
1517 N0.getOperand(0), N1.getOperand(0));
1518 AddToWorkList(ORNode.Val);
Chris Lattner540121f2006-05-05 06:31:05 +00001519 return DAG.getNode(N0.getOpcode(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00001520 }
1521
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001522 // For each of OP in SHL/SRL/SRA/AND...
1523 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1524 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1525 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00001526 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001527 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001528 N0.getOperand(1) == N1.getOperand(1)) {
1529 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1530 N0.getOperand(0).getValueType(),
1531 N0.getOperand(0), N1.getOperand(0));
1532 AddToWorkList(ORNode.Val);
1533 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1534 }
1535
1536 return SDOperand();
1537}
1538
Nate Begeman83e75ec2005-09-06 04:43:02 +00001539SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001540 SDOperand N0 = N->getOperand(0);
1541 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001542 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001543 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1544 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001545 MVT::ValueType VT = N1.getValueType();
1546
Dan Gohman7f321562007-06-25 16:23:39 +00001547 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001548 if (MVT::isVector(VT)) {
1549 SDOperand FoldedVOp = SimplifyVBinOp(N);
1550 if (FoldedVOp.Val) return FoldedVOp;
1551 }
Dan Gohman7f321562007-06-25 16:23:39 +00001552
Dan Gohman613e0d82007-07-03 14:03:57 +00001553 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001554 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001555 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001556 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001557 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001558 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001559 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001560 if (N0C && !N1C)
1561 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001562 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001563 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001564 return N0;
1565 // if (and x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001566 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001567 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001568 // reassociate and
1569 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1570 if (RAND.Val != 0)
1571 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001572 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001573 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001574 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Nate Begeman646d7e22005-09-02 21:18:40 +00001575 if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001576 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001577 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1578 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001579 unsigned InMask = MVT::getIntVTBitMask(N0.getOperand(0).getValueType());
Dan Gohmanea859be2007-06-22 14:59:07 +00001580 if (DAG.MaskedValueIsZero(N0.getOperand(0),
Chris Lattner1ec05d12006-03-01 21:47:21 +00001581 ~N1C->getValue() & InMask)) {
1582 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
1583 N0.getOperand(0));
1584
1585 // Replace uses of the AND with uses of the Zero extend node.
1586 CombineTo(N, Zext);
1587
Chris Lattner3603cd62006-02-02 07:17:31 +00001588 // We actually want to replace all uses of the any_extend with the
1589 // zero_extend, to avoid duplicating things. This will later cause this
1590 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001591 CombineTo(N0.Val, Zext);
Chris Lattnerfedced72006-04-20 23:55:59 +00001592 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00001593 }
1594 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001595 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1596 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1597 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1598 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1599
1600 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1601 MVT::isInteger(LL.getValueType())) {
1602 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
1603 if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
1604 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001605 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001606 return DAG.getSetCC(VT, ORNode, LR, Op1);
1607 }
1608 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1609 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1610 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001611 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001612 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1613 }
1614 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1615 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1616 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001617 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001618 return DAG.getSetCC(VT, ORNode, LR, Op1);
1619 }
1620 }
1621 // canonicalize equivalent to ll == rl
1622 if (LL == RR && LR == RL) {
1623 Op1 = ISD::getSetCCSwappedOperands(Op1);
1624 std::swap(RL, RR);
1625 }
1626 if (LL == RL && LR == RR) {
1627 bool isInteger = MVT::isInteger(LL.getValueType());
1628 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1629 if (Result != ISD::SETCC_INVALID)
1630 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1631 }
1632 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001633
1634 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1635 if (N0.getOpcode() == N1.getOpcode()) {
1636 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1637 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001638 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001639
Nate Begemande996292006-02-03 22:24:05 +00001640 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1641 // fold (and (sra)) -> (and (srl)) when possible.
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001642 if (!MVT::isVector(VT) &&
1643 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001644 return SDOperand(N, 0);
Nate Begemanded49632005-10-13 03:11:28 +00001645 // fold (zext_inreg (extload x)) -> (zextload x)
Evan Cheng83060c52007-03-07 08:07:03 +00001646 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
Evan Cheng466685d2006-10-09 20:57:25 +00001647 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001648 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001649 // If we zero all the possible extended bits, then we can turn this into
1650 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001651 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001652 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001653 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1654 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001655 LN0->getSrcValueOffset(), EVT,
1656 LN0->isVolatile(),
1657 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001658 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001659 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001660 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001661 }
1662 }
1663 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00001664 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1665 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001666 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001667 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001668 // If we zero all the possible extended bits, then we can turn this into
1669 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001670 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001671 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001672 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1673 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001674 LN0->getSrcValueOffset(), EVT,
1675 LN0->isVolatile(),
1676 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001677 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001678 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001679 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001680 }
1681 }
Chris Lattner15045b62006-02-28 06:35:35 +00001682
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001683 // fold (and (load x), 255) -> (zextload x, i8)
1684 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng466685d2006-10-09 20:57:25 +00001685 if (N1C && N0.getOpcode() == ISD::LOAD) {
1686 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1687 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Evan Cheng83060c52007-03-07 08:07:03 +00001688 LN0->getAddressingMode() == ISD::UNINDEXED &&
Evan Cheng466685d2006-10-09 20:57:25 +00001689 N0.hasOneUse()) {
1690 MVT::ValueType EVT, LoadedVT;
1691 if (N1C->getValue() == 255)
1692 EVT = MVT::i8;
1693 else if (N1C->getValue() == 65535)
1694 EVT = MVT::i16;
1695 else if (N1C->getValue() == ~0U)
1696 EVT = MVT::i32;
1697 else
1698 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001699
Evan Cheng2e49f092006-10-11 07:10:22 +00001700 LoadedVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001701 if (EVT != MVT::Other && LoadedVT > EVT &&
1702 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1703 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1704 // For big endian targets, we need to add an offset to the pointer to
1705 // load the correct bytes. For little endian systems, we merely need to
1706 // read fewer bytes from the same pointer.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00001707 unsigned LVTStoreBytes = MVT::getStoreSizeInBits(LoadedVT)/8;
1708 unsigned EVTStoreBytes = MVT::getStoreSizeInBits(EVT)/8;
1709 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Duncan Sandsdc846502007-10-28 12:59:45 +00001710 unsigned Alignment = LN0->getAlignment();
Evan Cheng466685d2006-10-09 20:57:25 +00001711 SDOperand NewPtr = LN0->getBasePtr();
Duncan Sandsdc846502007-10-28 12:59:45 +00001712 if (!TLI.isLittleEndian()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001713 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1714 DAG.getConstant(PtrOff, PtrType));
Duncan Sandsdc846502007-10-28 12:59:45 +00001715 Alignment = MinAlign(Alignment, PtrOff);
1716 }
Evan Cheng466685d2006-10-09 20:57:25 +00001717 AddToWorkList(NewPtr.Val);
1718 SDOperand Load =
1719 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001720 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00001721 LN0->isVolatile(), Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00001722 AddToWorkList(N);
1723 CombineTo(N0.Val, Load, Load.getValue(1));
1724 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1725 }
Chris Lattner15045b62006-02-28 06:35:35 +00001726 }
1727 }
1728
Nate Begeman83e75ec2005-09-06 04:43:02 +00001729 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001730}
1731
Nate Begeman83e75ec2005-09-06 04:43:02 +00001732SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001733 SDOperand N0 = N->getOperand(0);
1734 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001735 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001736 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1737 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001738 MVT::ValueType VT = N1.getValueType();
1739 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001740
Dan Gohman7f321562007-06-25 16:23:39 +00001741 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001742 if (MVT::isVector(VT)) {
1743 SDOperand FoldedVOp = SimplifyVBinOp(N);
1744 if (FoldedVOp.Val) return FoldedVOp;
1745 }
Dan Gohman7f321562007-06-25 16:23:39 +00001746
Dan Gohman613e0d82007-07-03 14:03:57 +00001747 // fold (or x, undef) -> -1
Dan Gohmand595b5f2007-07-10 14:20:37 +00001748 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Chris Lattnere094f542007-07-09 16:16:34 +00001749 return DAG.getConstant(~0ULL, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001750 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001751 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001752 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001753 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001754 if (N0C && !N1C)
1755 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001756 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001757 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001758 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001759 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001760 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001761 return N1;
1762 // fold (or x, c) -> c iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001763 if (N1C &&
Dan Gohmanea859be2007-06-22 14:59:07 +00001764 DAG.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001765 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001766 // reassociate or
1767 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1768 if (ROR.Val != 0)
1769 return ROR;
1770 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1771 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001772 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001773 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1774 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1775 N1),
1776 DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001777 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001778 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1779 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1780 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1781 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1782
1783 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1784 MVT::isInteger(LL.getValueType())) {
1785 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1786 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
1787 if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1788 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1789 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001790 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001791 return DAG.getSetCC(VT, ORNode, LR, Op1);
1792 }
1793 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1794 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1795 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1796 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1797 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001798 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001799 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1800 }
1801 }
1802 // canonicalize equivalent to ll == rl
1803 if (LL == RR && LR == RL) {
1804 Op1 = ISD::getSetCCSwappedOperands(Op1);
1805 std::swap(RL, RR);
1806 }
1807 if (LL == RL && LR == RR) {
1808 bool isInteger = MVT::isInteger(LL.getValueType());
1809 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1810 if (Result != ISD::SETCC_INVALID)
1811 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1812 }
1813 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001814
1815 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1816 if (N0.getOpcode() == N1.getOpcode()) {
1817 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1818 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001819 }
Chris Lattner516b9622006-09-14 20:50:57 +00001820
Chris Lattner1ec72732006-09-14 21:11:37 +00001821 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1822 if (N0.getOpcode() == ISD::AND &&
1823 N1.getOpcode() == ISD::AND &&
1824 N0.getOperand(1).getOpcode() == ISD::Constant &&
1825 N1.getOperand(1).getOpcode() == ISD::Constant &&
1826 // Don't increase # computations.
1827 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1828 // We can only do this xform if we know that bits from X that are set in C2
1829 // but not in C1 are already zero. Likewise for Y.
1830 uint64_t LHSMask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1831 uint64_t RHSMask = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1832
Dan Gohmanea859be2007-06-22 14:59:07 +00001833 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1834 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Chris Lattner1ec72732006-09-14 21:11:37 +00001835 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1836 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1837 }
1838 }
1839
1840
Chris Lattner516b9622006-09-14 20:50:57 +00001841 // See if this is some rotate idiom.
1842 if (SDNode *Rot = MatchRotate(N0, N1))
1843 return SDOperand(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00001844
Nate Begeman83e75ec2005-09-06 04:43:02 +00001845 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001846}
1847
Chris Lattner516b9622006-09-14 20:50:57 +00001848
1849/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1850static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1851 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00001852 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001853 Mask = Op.getOperand(1);
1854 Op = Op.getOperand(0);
1855 } else {
1856 return false;
1857 }
1858 }
1859
1860 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1861 Shift = Op;
1862 return true;
1863 }
1864 return false;
1865}
1866
1867
1868// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1869// idioms for rotate, and if the target supports rotation instructions, generate
1870// a rot[lr].
1871SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1872 // Must be a legal type. Expanded an promoted things won't work with rotates.
1873 MVT::ValueType VT = LHS.getValueType();
1874 if (!TLI.isTypeLegal(VT)) return 0;
1875
1876 // The target must have at least one rotate flavor.
1877 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1878 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1879 if (!HasROTL && !HasROTR) return 0;
1880
1881 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1882 SDOperand LHSShift; // The shift.
1883 SDOperand LHSMask; // AND value if any.
1884 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1885 return 0; // Not part of a rotate.
1886
1887 SDOperand RHSShift; // The shift.
1888 SDOperand RHSMask; // AND value if any.
1889 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1890 return 0; // Not part of a rotate.
1891
1892 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1893 return 0; // Not shifting the same value.
1894
1895 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1896 return 0; // Shifts must disagree.
1897
1898 // Canonicalize shl to left side in a shl/srl pair.
1899 if (RHSShift.getOpcode() == ISD::SHL) {
1900 std::swap(LHS, RHS);
1901 std::swap(LHSShift, RHSShift);
1902 std::swap(LHSMask , RHSMask );
1903 }
1904
1905 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Scott Michelc9dc1142007-04-02 21:36:32 +00001906 SDOperand LHSShiftArg = LHSShift.getOperand(0);
1907 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1908 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00001909
1910 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1911 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00001912 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
1913 RHSShiftAmt.getOpcode() == ISD::Constant) {
1914 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
1915 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
Chris Lattner516b9622006-09-14 20:50:57 +00001916 if ((LShVal + RShVal) != OpSizeInBits)
1917 return 0;
1918
1919 SDOperand Rot;
1920 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001921 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001922 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001923 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001924
1925 // If there is an AND of either shifted operand, apply it to the result.
1926 if (LHSMask.Val || RHSMask.Val) {
1927 uint64_t Mask = MVT::getIntVTBitMask(VT);
1928
1929 if (LHSMask.Val) {
1930 uint64_t RHSBits = (1ULL << LShVal)-1;
1931 Mask &= cast<ConstantSDNode>(LHSMask)->getValue() | RHSBits;
1932 }
1933 if (RHSMask.Val) {
1934 uint64_t LHSBits = ~((1ULL << (OpSizeInBits-RShVal))-1);
1935 Mask &= cast<ConstantSDNode>(RHSMask)->getValue() | LHSBits;
1936 }
1937
1938 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
1939 }
1940
1941 return Rot.Val;
1942 }
1943
1944 // If there is a mask here, and we have a variable shift, we can't be sure
1945 // that we're masking out the right stuff.
1946 if (LHSMask.Val || RHSMask.Val)
1947 return 0;
1948
1949 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1950 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001951 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
1952 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001953 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001954 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001955 if (SUBC->getValue() == OpSizeInBits)
1956 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001957 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001958 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001959 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001960 }
1961 }
1962
1963 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1964 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001965 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
1966 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001967 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001968 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001969 if (SUBC->getValue() == OpSizeInBits)
1970 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001971 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001972 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001973 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1974 }
1975 }
1976
1977 // Look for sign/zext/any-extended cases:
1978 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1979 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1980 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
1981 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1982 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1983 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
1984 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
1985 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
1986 if (RExtOp0.getOpcode() == ISD::SUB &&
1987 RExtOp0.getOperand(1) == LExtOp0) {
1988 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1989 // (rotr x, y)
1990 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1991 // (rotl x, (sub 32, y))
1992 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
1993 if (SUBC->getValue() == OpSizeInBits) {
1994 if (HasROTL)
1995 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
1996 else
1997 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1998 }
1999 }
2000 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2001 RExtOp0 == LExtOp0.getOperand(1)) {
2002 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2003 // (rotl x, y)
2004 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2005 // (rotr x, (sub 32, y))
2006 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
2007 if (SUBC->getValue() == OpSizeInBits) {
2008 if (HasROTL)
2009 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2010 else
2011 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2012 }
2013 }
Chris Lattner516b9622006-09-14 20:50:57 +00002014 }
2015 }
2016
2017 return 0;
2018}
2019
2020
Nate Begeman83e75ec2005-09-06 04:43:02 +00002021SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002022 SDOperand N0 = N->getOperand(0);
2023 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002024 SDOperand LHS, RHS, CC;
2025 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2026 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002027 MVT::ValueType VT = N0.getValueType();
2028
Dan Gohman7f321562007-06-25 16:23:39 +00002029 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00002030 if (MVT::isVector(VT)) {
2031 SDOperand FoldedVOp = SimplifyVBinOp(N);
2032 if (FoldedVOp.Val) return FoldedVOp;
2033 }
Dan Gohman7f321562007-06-25 16:23:39 +00002034
Dan Gohman613e0d82007-07-03 14:03:57 +00002035 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00002036 if (N0.getOpcode() == ISD::UNDEF)
2037 return N0;
2038 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002039 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002040 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002041 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002042 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00002043 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002044 if (N0C && !N1C)
2045 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002046 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002047 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002048 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00002049 // reassociate xor
2050 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2051 if (RXOR.Val != 0)
2052 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002053 // fold !(x cc y) -> (x !cc y)
Nate Begeman646d7e22005-09-02 21:18:40 +00002054 if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
2055 bool isInt = MVT::isInteger(LHS.getValueType());
2056 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2057 isInt);
2058 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002059 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002060 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002061 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002062 assert(0 && "Unhandled SetCC Equivalent!");
2063 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002064 }
Chris Lattner61c5ff42007-09-10 21:39:07 +00002065 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
2066 if (N1C && N1C->getValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
2067 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2068 SDOperand V = N0.getOperand(0);
2069 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00002070 DAG.getConstant(1, V.getValueType()));
Chris Lattner61c5ff42007-09-10 21:39:07 +00002071 AddToWorkList(V.Val);
2072 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2073 }
2074
Nate Begeman99801192005-09-07 23:25:52 +00002075 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Chris Lattner734c91d2006-11-10 21:37:15 +00002076 if (N1C && N1C->getValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00002077 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002078 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002079 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2080 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002081 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2082 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002083 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002084 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002085 }
2086 }
Nate Begeman99801192005-09-07 23:25:52 +00002087 // fold !(x or y) -> (!x and !y) iff x or y are constants
2088 if (N1C && N1C->isAllOnesValue() &&
2089 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002090 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002091 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2092 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002093 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2094 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002095 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002096 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002097 }
2098 }
Nate Begeman223df222005-09-08 20:18:10 +00002099 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2100 if (N1C && N0.getOpcode() == ISD::XOR) {
2101 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2102 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2103 if (N00C)
2104 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
2105 DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
2106 if (N01C)
2107 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
2108 DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
2109 }
2110 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00002111 if (N0 == N1) {
2112 if (!MVT::isVector(VT)) {
2113 return DAG.getConstant(0, VT);
2114 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2115 // Produce a vector of zeros.
Dan Gohman51eaa862007-06-14 22:58:02 +00002116 SDOperand El = DAG.getConstant(0, MVT::getVectorElementType(VT));
Chris Lattner4fbdd592006-03-28 19:11:05 +00002117 std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002118 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4fbdd592006-03-28 19:11:05 +00002119 }
2120 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002121
2122 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2123 if (N0.getOpcode() == N1.getOpcode()) {
2124 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2125 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002126 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002127
Chris Lattner3e104b12006-04-08 04:15:24 +00002128 // Simplify the expression using non-local knowledge.
2129 if (!MVT::isVector(VT) &&
2130 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002131 return SDOperand(N, 0);
Chris Lattner3e104b12006-04-08 04:15:24 +00002132
Nate Begeman83e75ec2005-09-06 04:43:02 +00002133 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002134}
2135
Chris Lattnere70da202007-12-06 07:33:36 +00002136/// visitShiftByConstant - Handle transforms common to the three shifts, when
2137/// the shift amount is a constant.
2138SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2139 SDNode *LHS = N->getOperand(0).Val;
2140 if (!LHS->hasOneUse()) return SDOperand();
2141
2142 // We want to pull some binops through shifts, so that we have (and (shift))
2143 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
2144 // thing happens with address calculations, so it's important to canonicalize
2145 // it.
2146 bool HighBitSet = false; // Can we transform this if the high bit is set?
2147
2148 switch (LHS->getOpcode()) {
2149 default: return SDOperand();
2150 case ISD::OR:
2151 case ISD::XOR:
2152 HighBitSet = false; // We can only transform sra if the high bit is clear.
2153 break;
2154 case ISD::AND:
2155 HighBitSet = true; // We can only transform sra if the high bit is set.
2156 break;
2157 case ISD::ADD:
2158 if (N->getOpcode() != ISD::SHL)
2159 return SDOperand(); // only shl(add) not sr[al](add).
2160 HighBitSet = false; // We can only transform sra if the high bit is clear.
2161 break;
2162 }
2163
2164 // We require the RHS of the binop to be a constant as well.
2165 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2166 if (!BinOpCst) return SDOperand();
2167
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00002168
2169 // FIXME: disable this for unless the input to the binop is a shift by a
2170 // constant. If it is not a shift, it pessimizes some common cases like:
2171 //
2172 //void foo(int *X, int i) { X[i & 1235] = 1; }
2173 //int bar(int *X, int i) { return X[i & 255]; }
2174 SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2175 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
2176 BinOpLHSVal->getOpcode() != ISD::SRA &&
2177 BinOpLHSVal->getOpcode() != ISD::SRL) ||
2178 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2179 return SDOperand();
2180
Chris Lattnere70da202007-12-06 07:33:36 +00002181 MVT::ValueType VT = N->getValueType(0);
2182
2183 // If this is a signed shift right, and the high bit is modified
2184 // by the logical operation, do not perform the transformation.
2185 // The highBitSet boolean indicates the value of the high bit of
2186 // the constant which would cause it to be modified for this
2187 // operation.
2188 if (N->getOpcode() == ISD::SRA) {
2189 uint64_t BinOpRHSSign = BinOpCst->getValue() >> MVT::getSizeInBits(VT)-1;
2190 if ((bool)BinOpRHSSign != HighBitSet)
2191 return SDOperand();
2192 }
2193
2194 // Fold the constants, shifting the binop RHS by the shift amount.
2195 SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2196 LHS->getOperand(1), N->getOperand(1));
2197
2198 // Create the new shift.
2199 SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2200 N->getOperand(1));
2201
2202 // Create the new binop.
2203 return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2204}
2205
2206
Nate Begeman83e75ec2005-09-06 04:43:02 +00002207SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002208 SDOperand N0 = N->getOperand(0);
2209 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002210 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2211 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002212 MVT::ValueType VT = N0.getValueType();
2213 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2214
2215 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002216 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002217 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002218 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002219 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002220 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002221 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002222 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002223 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002224 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002225 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002226 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002227 // if (shl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002228 if (DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002229 return DAG.getConstant(0, VT);
Chris Lattner61a4c072007-04-18 03:06:49 +00002230 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002231 return SDOperand(N, 0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002232 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002233 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002234 N0.getOperand(1).getOpcode() == ISD::Constant) {
2235 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002236 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002237 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002238 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002239 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002240 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002241 }
2242 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2243 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002244 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002245 N0.getOperand(1).getOpcode() == ISD::Constant) {
2246 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002247 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002248 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2249 DAG.getConstant(~0ULL << c1, VT));
2250 if (c2 > c1)
2251 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00002252 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002253 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00002254 return DAG.getNode(ISD::SRL, VT, Mask,
2255 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002256 }
2257 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002258 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00002259 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002260 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattnere70da202007-12-06 07:33:36 +00002261
2262 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002263}
2264
Nate Begeman83e75ec2005-09-06 04:43:02 +00002265SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002266 SDOperand N0 = N->getOperand(0);
2267 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002268 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2269 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002270 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002271
2272 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002273 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002274 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002275 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002276 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002277 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002278 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002279 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002280 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002281 // fold (sra x, c >= size(x)) -> undef
Nate Begemanfb7217b2006-02-17 19:54:08 +00002282 if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002283 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002284 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002285 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002286 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002287 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2288 // sext_inreg.
2289 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
2290 unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
2291 MVT::ValueType EVT;
2292 switch (LowBits) {
2293 default: EVT = MVT::Other; break;
2294 case 1: EVT = MVT::i1; break;
2295 case 8: EVT = MVT::i8; break;
2296 case 16: EVT = MVT::i16; break;
2297 case 32: EVT = MVT::i32; break;
2298 }
2299 if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
2300 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2301 DAG.getValueType(EVT));
2302 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002303
2304 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2305 if (N1C && N0.getOpcode() == ISD::SRA) {
2306 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2307 unsigned Sum = N1C->getValue() + C1->getValue();
2308 if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
2309 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2310 DAG.getConstant(Sum, N1C->getValueType(0)));
2311 }
2312 }
2313
Chris Lattnera8504462006-05-08 20:51:54 +00002314 // Simplify, based on bits shifted out of the LHS.
2315 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2316 return SDOperand(N, 0);
2317
2318
Nate Begeman1d4d4142005-09-01 00:19:25 +00002319 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohmanea859be2007-06-22 14:59:07 +00002320 if (DAG.MaskedValueIsZero(N0, MVT::getIntVTSignBit(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002321 return DAG.getNode(ISD::SRL, VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00002322
2323 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002324}
2325
Nate Begeman83e75ec2005-09-06 04:43:02 +00002326SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002327 SDOperand N0 = N->getOperand(0);
2328 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002329 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2330 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002331 MVT::ValueType VT = N0.getValueType();
2332 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2333
2334 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002335 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002336 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002337 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002338 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002339 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002340 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002341 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002342 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002343 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002344 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002345 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002346 // if (srl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002347 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002348 return DAG.getConstant(0, VT);
Chris Lattnerec06e9a2007-04-18 03:05:22 +00002349
Nate Begeman1d4d4142005-09-01 00:19:25 +00002350 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002351 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002352 N0.getOperand(1).getOpcode() == ISD::Constant) {
2353 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002354 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002355 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002356 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002357 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002358 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002359 }
Chris Lattner350bec02006-04-02 06:11:11 +00002360
Chris Lattner06afe072006-05-05 22:53:17 +00002361 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2362 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2363 // Shifting in all undef bits?
2364 MVT::ValueType SmallVT = N0.getOperand(0).getValueType();
2365 if (N1C->getValue() >= MVT::getSizeInBits(SmallVT))
2366 return DAG.getNode(ISD::UNDEF, VT);
2367
2368 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2369 AddToWorkList(SmallShift.Val);
2370 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2371 }
2372
Chris Lattner3657ffe2006-10-12 20:23:19 +00002373 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2374 // bit, which is unmodified by sra.
2375 if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
2376 if (N0.getOpcode() == ISD::SRA)
2377 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2378 }
2379
Chris Lattner350bec02006-04-02 06:11:11 +00002380 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2381 if (N1C && N0.getOpcode() == ISD::CTLZ &&
2382 N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
2383 uint64_t KnownZero, KnownOne, Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002384 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Chris Lattner350bec02006-04-02 06:11:11 +00002385
2386 // If any of the input bits are KnownOne, then the input couldn't be all
2387 // zeros, thus the result of the srl will always be zero.
2388 if (KnownOne) return DAG.getConstant(0, VT);
2389
2390 // If all of the bits input the to ctlz node are known to be zero, then
2391 // the result of the ctlz is "32" and the result of the shift is one.
2392 uint64_t UnknownBits = ~KnownZero & Mask;
2393 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2394
2395 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2396 if ((UnknownBits & (UnknownBits-1)) == 0) {
2397 // Okay, we know that only that the single bit specified by UnknownBits
2398 // could be set on input to the CTLZ node. If this bit is set, the SRL
2399 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2400 // to an SRL,XOR pair, which is likely to simplify more.
2401 unsigned ShAmt = CountTrailingZeros_64(UnknownBits);
2402 SDOperand Op = N0.getOperand(0);
2403 if (ShAmt) {
2404 Op = DAG.getNode(ISD::SRL, VT, Op,
2405 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2406 AddToWorkList(Op.Val);
2407 }
2408 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2409 }
2410 }
Chris Lattner61a4c072007-04-18 03:06:49 +00002411
2412 // fold operands of srl based on knowledge that the low bits are not
2413 // demanded.
2414 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2415 return SDOperand(N, 0);
2416
Chris Lattnere70da202007-12-06 07:33:36 +00002417 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002418}
2419
Nate Begeman83e75ec2005-09-06 04:43:02 +00002420SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002421 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002422 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002423
2424 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002425 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002426 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002427 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002428}
2429
Nate Begeman83e75ec2005-09-06 04:43:02 +00002430SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002431 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002432 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002433
2434 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002435 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002436 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002437 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002438}
2439
Nate Begeman83e75ec2005-09-06 04:43:02 +00002440SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002441 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002442 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002443
2444 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002445 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002446 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002447 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002448}
2449
Nate Begeman452d7beb2005-09-16 00:54:12 +00002450SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2451 SDOperand N0 = N->getOperand(0);
2452 SDOperand N1 = N->getOperand(1);
2453 SDOperand N2 = N->getOperand(2);
2454 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2455 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2456 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2457 MVT::ValueType VT = N->getValueType(0);
Evan Cheng571c4782007-08-18 05:57:05 +00002458 MVT::ValueType VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00002459
Nate Begeman452d7beb2005-09-16 00:54:12 +00002460 // fold select C, X, X -> X
2461 if (N1 == N2)
2462 return N1;
2463 // fold select true, X, Y -> X
2464 if (N0C && !N0C->isNullValue())
2465 return N1;
2466 // fold select false, X, Y -> Y
2467 if (N0C && N0C->isNullValue())
2468 return N2;
2469 // fold select C, 1, X -> C | X
Nate Begeman44728a72005-09-19 22:34:01 +00002470 if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
Nate Begeman452d7beb2005-09-16 00:54:12 +00002471 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Cheng571c4782007-08-18 05:57:05 +00002472 // fold select C, 0, 1 -> ~C
2473 if (MVT::isInteger(VT) && MVT::isInteger(VT0) &&
2474 N1C && N2C && N1C->isNullValue() && N2C->getValue() == 1) {
2475 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2476 if (VT == VT0)
2477 return XORNode;
2478 AddToWorkList(XORNode.Val);
2479 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(VT0))
2480 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2481 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2482 }
Nate Begeman452d7beb2005-09-16 00:54:12 +00002483 // fold select C, 0, X -> ~C & X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002484 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
2485 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002486 AddToWorkList(XORNode.Val);
Nate Begeman452d7beb2005-09-16 00:54:12 +00002487 return DAG.getNode(ISD::AND, VT, XORNode, N2);
2488 }
2489 // fold select C, X, 1 -> ~C | X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002490 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getValue() == 1) {
2491 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002492 AddToWorkList(XORNode.Val);
Nate Begeman452d7beb2005-09-16 00:54:12 +00002493 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2494 }
2495 // fold select C, X, 0 -> C & X
2496 // FIXME: this should check for C type == X type, not i1?
2497 if (MVT::i1 == VT && N2C && N2C->isNullValue())
2498 return DAG.getNode(ISD::AND, VT, N0, N1);
2499 // fold X ? X : Y --> X ? 1 : Y --> X | Y
2500 if (MVT::i1 == VT && N0 == N1)
2501 return DAG.getNode(ISD::OR, VT, N0, N2);
2502 // fold X ? Y : X --> X ? Y : 0 --> X & Y
2503 if (MVT::i1 == VT && N0 == N2)
2504 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner729c6d12006-05-27 00:43:02 +00002505
Chris Lattner40c62d52005-10-18 06:04:22 +00002506 // If we can fold this based on the true/false value, do so.
2507 if (SimplifySelectOps(N, N1, N2))
Chris Lattner729c6d12006-05-27 00:43:02 +00002508 return SDOperand(N, 0); // Don't revisit N.
2509
Nate Begeman44728a72005-09-19 22:34:01 +00002510 // fold selects based on a setcc into other things, such as min/max/abs
2511 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman750ac1b2006-02-01 07:19:44 +00002512 // FIXME:
2513 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2514 // having to say they don't support SELECT_CC on every type the DAG knows
2515 // about, since there is no way to mark an opcode illegal at all value types
2516 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2517 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2518 N1, N2, N0.getOperand(2));
2519 else
2520 return SimplifySelect(N0, N1, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00002521 return SDOperand();
2522}
2523
2524SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00002525 SDOperand N0 = N->getOperand(0);
2526 SDOperand N1 = N->getOperand(1);
2527 SDOperand N2 = N->getOperand(2);
2528 SDOperand N3 = N->getOperand(3);
2529 SDOperand N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00002530 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2531
Nate Begeman44728a72005-09-19 22:34:01 +00002532 // fold select_cc lhs, rhs, x, x, cc -> x
2533 if (N2 == N3)
2534 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00002535
Chris Lattner5f42a242006-09-20 06:19:26 +00002536 // Determine if the condition we're dealing with is constant
2537 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00002538 if (SCC.Val) AddToWorkList(SCC.Val);
Chris Lattner5f42a242006-09-20 06:19:26 +00002539
2540 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
2541 if (SCCC->getValue())
2542 return N2; // cond always true -> true val
2543 else
2544 return N3; // cond always false -> false val
2545 }
2546
2547 // Fold to a simpler select_cc
2548 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2549 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2550 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2551 SCC.getOperand(2));
2552
Chris Lattner40c62d52005-10-18 06:04:22 +00002553 // If we can fold this based on the true/false value, do so.
2554 if (SimplifySelectOps(N, N2, N3))
Chris Lattner729c6d12006-05-27 00:43:02 +00002555 return SDOperand(N, 0); // Don't revisit N.
Chris Lattner40c62d52005-10-18 06:04:22 +00002556
Nate Begeman44728a72005-09-19 22:34:01 +00002557 // fold select_cc into other things, such as min/max/abs
2558 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00002559}
2560
2561SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2562 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2563 cast<CondCodeSDNode>(N->getOperand(2))->get());
2564}
2565
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002566// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2567// "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2568// transformation. Returns true if extension are possible and the above
2569// mentioned transformation is profitable.
2570static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2571 unsigned ExtOpc,
2572 SmallVector<SDNode*, 4> &ExtendNodes,
2573 TargetLowering &TLI) {
2574 bool HasCopyToRegUses = false;
2575 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2576 for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2577 UI != UE; ++UI) {
2578 SDNode *User = *UI;
2579 if (User == N)
2580 continue;
2581 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2582 if (User->getOpcode() == ISD::SETCC) {
2583 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2584 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2585 // Sign bits will be lost after a zext.
2586 return false;
2587 bool Add = false;
2588 for (unsigned i = 0; i != 2; ++i) {
2589 SDOperand UseOp = User->getOperand(i);
2590 if (UseOp == N0)
2591 continue;
2592 if (!isa<ConstantSDNode>(UseOp))
2593 return false;
2594 Add = true;
2595 }
2596 if (Add)
2597 ExtendNodes.push_back(User);
2598 } else {
2599 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2600 SDOperand UseOp = User->getOperand(i);
2601 if (UseOp == N0) {
2602 // If truncate from extended type to original load type is free
2603 // on this target, then it's ok to extend a CopyToReg.
2604 if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2605 HasCopyToRegUses = true;
2606 else
2607 return false;
2608 }
2609 }
2610 }
2611 }
2612
2613 if (HasCopyToRegUses) {
2614 bool BothLiveOut = false;
2615 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2616 UI != UE; ++UI) {
2617 SDNode *User = *UI;
2618 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2619 SDOperand UseOp = User->getOperand(i);
2620 if (UseOp.Val == N && UseOp.ResNo == 0) {
2621 BothLiveOut = true;
2622 break;
2623 }
2624 }
2625 }
2626 if (BothLiveOut)
2627 // Both unextended and extended values are live out. There had better be
2628 // good a reason for the transformation.
2629 return ExtendNodes.size();
2630 }
2631 return true;
2632}
2633
Nate Begeman83e75ec2005-09-06 04:43:02 +00002634SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002635 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002636 MVT::ValueType VT = N->getValueType(0);
2637
Nate Begeman1d4d4142005-09-01 00:19:25 +00002638 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002639 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002640 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Chris Lattner310b5782006-05-06 23:06:26 +00002641
Nate Begeman1d4d4142005-09-01 00:19:25 +00002642 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002643 // fold (sext (aext x)) -> (sext x)
2644 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002645 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattner310b5782006-05-06 23:06:26 +00002646
Evan Chengc88138f2007-03-22 01:54:19 +00002647 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2648 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Chris Lattner22558872007-02-26 03:13:59 +00002649 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002650 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002651 if (NarrowLoad.Val) {
2652 if (NarrowLoad.Val != N0.Val)
2653 CombineTo(N0.Val, NarrowLoad);
2654 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2655 }
Evan Chengc88138f2007-03-22 01:54:19 +00002656 }
2657
2658 // See if the value being truncated is already sign extended. If so, just
2659 // eliminate the trunc/sext pair.
2660 if (N0.getOpcode() == ISD::TRUNCATE) {
Chris Lattner6007b842006-09-21 06:00:20 +00002661 SDOperand Op = N0.getOperand(0);
Chris Lattner22558872007-02-26 03:13:59 +00002662 unsigned OpBits = MVT::getSizeInBits(Op.getValueType());
2663 unsigned MidBits = MVT::getSizeInBits(N0.getValueType());
2664 unsigned DestBits = MVT::getSizeInBits(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002665 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Chris Lattner22558872007-02-26 03:13:59 +00002666
2667 if (OpBits == DestBits) {
2668 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2669 // bits, it is already ready.
2670 if (NumSignBits > DestBits-MidBits)
2671 return Op;
2672 } else if (OpBits < DestBits) {
2673 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2674 // bits, just sext from i32.
2675 if (NumSignBits > OpBits-MidBits)
2676 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2677 } else {
2678 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2679 // bits, just truncate to i32.
2680 if (NumSignBits > OpBits-MidBits)
2681 return DAG.getNode(ISD::TRUNCATE, VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00002682 }
Chris Lattner22558872007-02-26 03:13:59 +00002683
2684 // fold (sext (truncate x)) -> (sextinreg x).
2685 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2686 N0.getValueType())) {
2687 if (Op.getValueType() < VT)
2688 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2689 else if (Op.getValueType() > VT)
2690 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2691 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2692 DAG.getValueType(N0.getValueType()));
2693 }
Chris Lattner6007b842006-09-21 06:00:20 +00002694 }
Chris Lattner310b5782006-05-06 23:06:26 +00002695
Evan Cheng110dec22005-12-14 02:19:23 +00002696 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002697 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002698 (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002699 bool DoXform = true;
2700 SmallVector<SDNode*, 4> SetCCs;
2701 if (!N0.hasOneUse())
2702 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2703 if (DoXform) {
2704 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2705 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2706 LN0->getBasePtr(), LN0->getSrcValue(),
2707 LN0->getSrcValueOffset(),
2708 N0.getValueType(),
2709 LN0->isVolatile(),
2710 LN0->getAlignment());
2711 CombineTo(N, ExtLoad);
2712 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2713 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2714 // Extend SetCC uses if necessary.
2715 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2716 SDNode *SetCC = SetCCs[i];
2717 SmallVector<SDOperand, 4> Ops;
2718 for (unsigned j = 0; j != 2; ++j) {
2719 SDOperand SOp = SetCC->getOperand(j);
2720 if (SOp == Trunc)
2721 Ops.push_back(ExtLoad);
2722 else
2723 Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2724 }
2725 Ops.push_back(SetCC->getOperand(2));
2726 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2727 &Ops[0], Ops.size()));
2728 }
2729 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2730 }
Nate Begeman3df4d522005-10-12 20:40:40 +00002731 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002732
2733 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2734 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002735 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2736 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002737 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002738 MVT::ValueType EVT = LN0->getLoadedVT();
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002739 if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2740 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2741 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002742 LN0->getSrcValueOffset(), EVT,
2743 LN0->isVolatile(),
2744 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002745 CombineTo(N, ExtLoad);
2746 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2747 ExtLoad.getValue(1));
2748 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2749 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002750 }
2751
Chris Lattner20a35c32007-04-11 05:32:27 +00002752 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2753 if (N0.getOpcode() == ISD::SETCC) {
2754 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002755 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2756 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2757 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2758 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002759 }
2760
Nate Begeman83e75ec2005-09-06 04:43:02 +00002761 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002762}
2763
Nate Begeman83e75ec2005-09-06 04:43:02 +00002764SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002765 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002766 MVT::ValueType VT = N->getValueType(0);
2767
Nate Begeman1d4d4142005-09-01 00:19:25 +00002768 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002769 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002770 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002771 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002772 // fold (zext (aext x)) -> (zext x)
2773 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002774 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00002775
Evan Chengc88138f2007-03-22 01:54:19 +00002776 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2777 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00002778 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002779 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002780 if (NarrowLoad.Val) {
2781 if (NarrowLoad.Val != N0.Val)
2782 CombineTo(N0.Val, NarrowLoad);
2783 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2784 }
Evan Chengc88138f2007-03-22 01:54:19 +00002785 }
2786
Chris Lattner6007b842006-09-21 06:00:20 +00002787 // fold (zext (truncate x)) -> (and x, mask)
2788 if (N0.getOpcode() == ISD::TRUNCATE &&
2789 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2790 SDOperand Op = N0.getOperand(0);
2791 if (Op.getValueType() < VT) {
2792 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2793 } else if (Op.getValueType() > VT) {
2794 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2795 }
2796 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2797 }
2798
Chris Lattner111c2282006-09-21 06:14:31 +00002799 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2800 if (N0.getOpcode() == ISD::AND &&
2801 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2802 N0.getOperand(1).getOpcode() == ISD::Constant) {
2803 SDOperand X = N0.getOperand(0).getOperand(0);
2804 if (X.getValueType() < VT) {
2805 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2806 } else if (X.getValueType() > VT) {
2807 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2808 }
2809 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2810 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2811 }
2812
Evan Cheng110dec22005-12-14 02:19:23 +00002813 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002814 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002815 (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002816 bool DoXform = true;
2817 SmallVector<SDNode*, 4> SetCCs;
2818 if (!N0.hasOneUse())
2819 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
2820 if (DoXform) {
2821 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2822 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2823 LN0->getBasePtr(), LN0->getSrcValue(),
2824 LN0->getSrcValueOffset(),
2825 N0.getValueType(),
2826 LN0->isVolatile(),
2827 LN0->getAlignment());
2828 CombineTo(N, ExtLoad);
2829 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2830 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2831 // Extend SetCC uses if necessary.
2832 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2833 SDNode *SetCC = SetCCs[i];
2834 SmallVector<SDOperand, 4> Ops;
2835 for (unsigned j = 0; j != 2; ++j) {
2836 SDOperand SOp = SetCC->getOperand(j);
2837 if (SOp == Trunc)
2838 Ops.push_back(ExtLoad);
2839 else
Evan Chengde1631b2007-10-30 20:11:21 +00002840 Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002841 }
2842 Ops.push_back(SetCC->getOperand(2));
2843 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2844 &Ops[0], Ops.size()));
2845 }
2846 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2847 }
Evan Cheng110dec22005-12-14 02:19:23 +00002848 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002849
2850 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2851 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002852 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2853 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002854 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002855 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002856 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2857 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002858 LN0->getSrcValueOffset(), EVT,
2859 LN0->isVolatile(),
2860 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002861 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002862 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2863 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002864 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002865 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002866
2867 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2868 if (N0.getOpcode() == ISD::SETCC) {
2869 SDOperand SCC =
2870 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2871 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00002872 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2873 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002874 }
2875
Nate Begeman83e75ec2005-09-06 04:43:02 +00002876 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002877}
2878
Chris Lattner5ffc0662006-05-05 05:58:59 +00002879SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
2880 SDOperand N0 = N->getOperand(0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00002881 MVT::ValueType VT = N->getValueType(0);
2882
2883 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00002884 if (isa<ConstantSDNode>(N0))
Chris Lattner5ffc0662006-05-05 05:58:59 +00002885 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
2886 // fold (aext (aext x)) -> (aext x)
2887 // fold (aext (zext x)) -> (zext x)
2888 // fold (aext (sext x)) -> (sext x)
2889 if (N0.getOpcode() == ISD::ANY_EXTEND ||
2890 N0.getOpcode() == ISD::ZERO_EXTEND ||
2891 N0.getOpcode() == ISD::SIGN_EXTEND)
2892 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
2893
Evan Chengc88138f2007-03-22 01:54:19 +00002894 // fold (aext (truncate (load x))) -> (aext (smaller load x))
2895 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
2896 if (N0.getOpcode() == ISD::TRUNCATE) {
2897 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002898 if (NarrowLoad.Val) {
2899 if (NarrowLoad.Val != N0.Val)
2900 CombineTo(N0.Val, NarrowLoad);
2901 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
2902 }
Evan Chengc88138f2007-03-22 01:54:19 +00002903 }
2904
Chris Lattner84750582006-09-20 06:29:17 +00002905 // fold (aext (truncate x))
2906 if (N0.getOpcode() == ISD::TRUNCATE) {
2907 SDOperand TruncOp = N0.getOperand(0);
2908 if (TruncOp.getValueType() == VT)
2909 return TruncOp; // x iff x size == zext size.
2910 if (TruncOp.getValueType() > VT)
2911 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
2912 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
2913 }
Chris Lattner0e4b9222006-09-21 06:40:43 +00002914
2915 // fold (aext (and (trunc x), cst)) -> (and x, cst).
2916 if (N0.getOpcode() == ISD::AND &&
2917 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2918 N0.getOperand(1).getOpcode() == ISD::Constant) {
2919 SDOperand X = N0.getOperand(0).getOperand(0);
2920 if (X.getValueType() < VT) {
2921 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2922 } else if (X.getValueType() > VT) {
2923 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2924 }
2925 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2926 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2927 }
2928
Chris Lattner5ffc0662006-05-05 05:58:59 +00002929 // fold (aext (load x)) -> (aext (truncate (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00002930 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00002931 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002932 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2933 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
2934 LN0->getBasePtr(), LN0->getSrcValue(),
2935 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002936 N0.getValueType(),
2937 LN0->isVolatile(),
2938 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002939 CombineTo(N, ExtLoad);
2940 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2941 ExtLoad.getValue(1));
2942 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2943 }
2944
2945 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
2946 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
2947 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002948 if (N0.getOpcode() == ISD::LOAD &&
2949 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng466685d2006-10-09 20:57:25 +00002950 N0.hasOneUse()) {
2951 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002952 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002953 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
2954 LN0->getChain(), LN0->getBasePtr(),
2955 LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002956 LN0->getSrcValueOffset(), EVT,
2957 LN0->isVolatile(),
2958 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002959 CombineTo(N, ExtLoad);
2960 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2961 ExtLoad.getValue(1));
2962 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2963 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002964
2965 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2966 if (N0.getOpcode() == ISD::SETCC) {
2967 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002968 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2969 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00002970 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Chris Lattner1eba01e2007-04-11 06:50:51 +00002971 if (SCC.Val)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00002972 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002973 }
2974
Chris Lattner5ffc0662006-05-05 05:58:59 +00002975 return SDOperand();
2976}
2977
Chris Lattner2b4c2792007-10-13 06:35:54 +00002978/// GetDemandedBits - See if the specified operand can be simplified with the
2979/// knowledge that only the bits specified by Mask are used. If so, return the
2980/// simpler operand, otherwise return a null SDOperand.
2981SDOperand DAGCombiner::GetDemandedBits(SDOperand V, uint64_t Mask) {
2982 switch (V.getOpcode()) {
2983 default: break;
2984 case ISD::OR:
2985 case ISD::XOR:
2986 // If the LHS or RHS don't contribute bits to the or, drop them.
2987 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
2988 return V.getOperand(1);
2989 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
2990 return V.getOperand(0);
2991 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00002992 case ISD::SRL:
2993 // Only look at single-use SRLs.
2994 if (!V.Val->hasOneUse())
2995 break;
2996 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
2997 // See if we can recursively simplify the LHS.
2998 unsigned Amt = RHSC->getValue();
2999 Mask = (Mask << Amt) & MVT::getIntVTBitMask(V.getValueType());
3000 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), Mask);
3001 if (SimplifyLHS.Val) {
3002 return DAG.getNode(ISD::SRL, V.getValueType(),
3003 SimplifyLHS, V.getOperand(1));
3004 }
3005 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00003006 }
3007 return SDOperand();
3008}
3009
Evan Chengc88138f2007-03-22 01:54:19 +00003010/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3011/// bits and then truncated to a narrower type and where N is a multiple
3012/// of number of bits of the narrower type, transform it to a narrower load
3013/// from address + N / num of bits of new type. If the result is to be
3014/// extended, also fold the extension to form a extending load.
3015SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3016 unsigned Opc = N->getOpcode();
3017 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3018 SDOperand N0 = N->getOperand(0);
3019 MVT::ValueType VT = N->getValueType(0);
3020 MVT::ValueType EVT = N->getValueType(0);
3021
Evan Chenge177e302007-03-23 22:13:36 +00003022 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3023 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00003024 if (Opc == ISD::SIGN_EXTEND_INREG) {
3025 ExtType = ISD::SEXTLOAD;
3026 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Evan Chenge177e302007-03-23 22:13:36 +00003027 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3028 return SDOperand();
Evan Chengc88138f2007-03-22 01:54:19 +00003029 }
3030
3031 unsigned EVTBits = MVT::getSizeInBits(EVT);
3032 unsigned ShAmt = 0;
Evan Chengb37b80c2007-03-23 20:55:21 +00003033 bool CombineSRL = false;
Evan Chengc88138f2007-03-22 01:54:19 +00003034 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3035 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3036 ShAmt = N01->getValue();
3037 // Is the shift amount a multiple of size of VT?
3038 if ((ShAmt & (EVTBits-1)) == 0) {
3039 N0 = N0.getOperand(0);
3040 if (MVT::getSizeInBits(N0.getValueType()) <= EVTBits)
3041 return SDOperand();
Evan Chengb37b80c2007-03-23 20:55:21 +00003042 CombineSRL = true;
Evan Chengc88138f2007-03-22 01:54:19 +00003043 }
3044 }
3045 }
3046
3047 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3048 // Do not allow folding to i1 here. i1 is implicitly stored in memory in
3049 // zero extended form: by shrinking the load, we lose track of the fact
3050 // that it is already zero extended.
3051 // FIXME: This should be reevaluated.
3052 VT != MVT::i1) {
3053 assert(MVT::getSizeInBits(N0.getValueType()) > EVTBits &&
3054 "Cannot truncate to larger type!");
3055 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3056 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Evan Chengdae54ce2007-03-24 00:02:43 +00003057 // For big endian targets, we need to adjust the offset to the pointer to
3058 // load the correct bytes.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00003059 if (!TLI.isLittleEndian()) {
3060 unsigned LVTStoreBits = MVT::getStoreSizeInBits(N0.getValueType());
3061 unsigned EVTStoreBits = MVT::getStoreSizeInBits(EVT);
3062 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3063 }
Evan Chengdae54ce2007-03-24 00:02:43 +00003064 uint64_t PtrOff = ShAmt / 8;
Duncan Sandsdc846502007-10-28 12:59:45 +00003065 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Evan Chengc88138f2007-03-22 01:54:19 +00003066 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3067 DAG.getConstant(PtrOff, PtrType));
3068 AddToWorkList(NewPtr.Val);
3069 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3070 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003071 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Duncan Sandsdc846502007-10-28 12:59:45 +00003072 LN0->isVolatile(), NewAlign)
Evan Chengc88138f2007-03-22 01:54:19 +00003073 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003074 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00003075 LN0->isVolatile(), NewAlign);
Evan Chengc88138f2007-03-22 01:54:19 +00003076 AddToWorkList(N);
Evan Chengb37b80c2007-03-23 20:55:21 +00003077 if (CombineSRL) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003078 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Evan Chengb37b80c2007-03-23 20:55:21 +00003079 CombineTo(N->getOperand(0).Val, Load);
3080 } else
3081 CombineTo(N0.Val, Load, Load.getValue(1));
Evan Cheng15213b72007-03-26 07:12:51 +00003082 if (ShAmt) {
3083 if (Opc == ISD::SIGN_EXTEND_INREG)
3084 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3085 else
3086 return DAG.getNode(Opc, VT, Load);
3087 }
Evan Chengc88138f2007-03-22 01:54:19 +00003088 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3089 }
3090
3091 return SDOperand();
3092}
3093
Chris Lattner5ffc0662006-05-05 05:58:59 +00003094
Nate Begeman83e75ec2005-09-06 04:43:02 +00003095SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003096 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003097 SDOperand N1 = N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003098 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003099 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Nate Begeman07ed4172005-10-10 21:26:48 +00003100 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003101
Nate Begeman1d4d4142005-09-01 00:19:25 +00003102 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00003103 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Chris Lattner310b5782006-05-06 23:06:26 +00003104 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
Chris Lattneree4ea922006-05-06 09:30:03 +00003105
Chris Lattner541a24f2006-05-06 22:43:44 +00003106 // If the input is already sign extended, just drop the extension.
Dan Gohmanea859be2007-06-22 14:59:07 +00003107 if (DAG.ComputeNumSignBits(N0) >= MVT::getSizeInBits(VT)-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00003108 return N0;
3109
Nate Begeman646d7e22005-09-02 21:18:40 +00003110 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3111 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3112 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00003113 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003114 }
Chris Lattner4b37e872006-05-08 21:18:59 +00003115
Chris Lattner95a5e052007-04-17 19:03:21 +00003116 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohmanea859be2007-06-22 14:59:07 +00003117 if (DAG.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
Nate Begemande996292006-02-03 22:24:05 +00003118 return DAG.getZeroExtendInReg(N0, EVT);
Chris Lattner4b37e872006-05-08 21:18:59 +00003119
Chris Lattner95a5e052007-04-17 19:03:21 +00003120 // fold operands of sext_in_reg based on knowledge that the top bits are not
3121 // demanded.
3122 if (SimplifyDemandedBits(SDOperand(N, 0)))
3123 return SDOperand(N, 0);
3124
Evan Chengc88138f2007-03-22 01:54:19 +00003125 // fold (sext_in_reg (load x)) -> (smaller sextload x)
3126 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3127 SDOperand NarrowLoad = ReduceLoadWidth(N);
3128 if (NarrowLoad.Val)
3129 return NarrowLoad;
3130
Chris Lattner4b37e872006-05-08 21:18:59 +00003131 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3132 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3133 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3134 if (N0.getOpcode() == ISD::SRL) {
3135 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
3136 if (ShAmt->getValue()+EVTBits <= MVT::getSizeInBits(VT)) {
3137 // We can turn this into an SRA iff the input to the SRL is already sign
3138 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00003139 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Chris Lattner4b37e872006-05-08 21:18:59 +00003140 if (MVT::getSizeInBits(VT)-(ShAmt->getValue()+EVTBits) < InSignBits)
3141 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3142 }
3143 }
Evan Chengc88138f2007-03-22 01:54:19 +00003144
Nate Begemanded49632005-10-13 03:11:28 +00003145 // fold (sext_inreg (extload x)) -> (sextload x)
Evan Chengc5484282006-10-04 00:56:09 +00003146 if (ISD::isEXTLoad(N0.Val) &&
Evan Cheng83060c52007-03-07 08:07:03 +00003147 ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003148 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003149 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003150 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3151 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3152 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003153 LN0->getSrcValueOffset(), EVT,
3154 LN0->isVolatile(),
3155 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003156 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003157 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003158 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003159 }
3160 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00003161 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3162 N0.hasOneUse() &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003163 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003164 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003165 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3166 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3167 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003168 LN0->getSrcValueOffset(), EVT,
3169 LN0->isVolatile(),
3170 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003171 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003172 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003173 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003174 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003175 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003176}
3177
Nate Begeman83e75ec2005-09-06 04:43:02 +00003178SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003179 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003180 MVT::ValueType VT = N->getValueType(0);
3181
3182 // noop truncate
3183 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003184 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003185 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003186 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00003187 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003188 // fold (truncate (truncate x)) -> (truncate x)
3189 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003190 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003191 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattnerb72773b2006-05-05 22:56:26 +00003192 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3193 N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003194 if (N0.getOperand(0).getValueType() < VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003195 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00003196 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003197 else if (N0.getOperand(0).getValueType() > VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003198 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003199 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003200 else
3201 // if the source and dest are the same type, we can drop both the extend
3202 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003203 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003204 }
Evan Cheng007b69e2007-03-21 20:14:05 +00003205
Chris Lattner2b4c2792007-10-13 06:35:54 +00003206 // See if we can simplify the input to this truncate through knowledge that
3207 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3208 // -> trunc y
3209 SDOperand Shorter = GetDemandedBits(N0, MVT::getIntVTBitMask(VT));
3210 if (Shorter.Val)
3211 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3212
Nate Begeman3df4d522005-10-12 20:40:40 +00003213 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00003214 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Evan Chengc88138f2007-03-22 01:54:19 +00003215 return ReduceLoadWidth(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003216}
3217
Chris Lattner94683772005-12-23 05:30:37 +00003218SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3219 SDOperand N0 = N->getOperand(0);
3220 MVT::ValueType VT = N->getValueType(0);
3221
Dan Gohman7f321562007-06-25 16:23:39 +00003222 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3223 // Only do this before legalize, since afterward the target may be depending
3224 // on the bitconvert.
3225 // First check to see if this is all constant.
3226 if (!AfterLegalize &&
3227 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
3228 MVT::isVector(VT)) {
3229 bool isSimple = true;
3230 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3231 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3232 N0.getOperand(i).getOpcode() != ISD::Constant &&
3233 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3234 isSimple = false;
3235 break;
3236 }
3237
3238 MVT::ValueType DestEltVT = MVT::getVectorElementType(N->getValueType(0));
3239 assert(!MVT::isVector(DestEltVT) &&
3240 "Element type of vector ValueType must not be vector!");
3241 if (isSimple) {
3242 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3243 }
3244 }
3245
Chris Lattner94683772005-12-23 05:30:37 +00003246 // If the input is a constant, let getNode() fold it.
3247 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3248 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3249 if (Res.Val != N) return Res;
3250 }
3251
Chris Lattnerc8547d82005-12-23 05:37:50 +00003252 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3253 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00003254
Chris Lattner57104102005-12-23 05:44:41 +00003255 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00003256 // If the resultant load doesn't need a higher alignment than the original!
3257 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Evan Cheng59d5b682007-05-07 21:27:48 +00003258 TLI.isOperationLegal(ISD::LOAD, VT)) {
Evan Cheng466685d2006-10-09 20:57:25 +00003259 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng59d5b682007-05-07 21:27:48 +00003260 unsigned Align = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00003261 getABITypeAlignment(MVT::getTypeForValueType(VT));
Evan Cheng59d5b682007-05-07 21:27:48 +00003262 unsigned OrigAlign = LN0->getAlignment();
3263 if (Align <= OrigAlign) {
3264 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3265 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003266 LN0->isVolatile(), Align);
Evan Cheng59d5b682007-05-07 21:27:48 +00003267 AddToWorkList(N);
3268 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3269 Load.getValue(1));
3270 return Load;
3271 }
Chris Lattner57104102005-12-23 05:44:41 +00003272 }
3273
Chris Lattner94683772005-12-23 05:30:37 +00003274 return SDOperand();
3275}
3276
Dan Gohman7f321562007-06-25 16:23:39 +00003277/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
Chris Lattner6258fb22006-04-02 02:53:43 +00003278/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3279/// destination element value type.
3280SDOperand DAGCombiner::
Dan Gohman7f321562007-06-25 16:23:39 +00003281ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003282 MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
3283
3284 // If this is already the right type, we're done.
3285 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3286
3287 unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
3288 unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
3289
3290 // If this is a conversion of N elements of one type to N elements of another
3291 // type, convert each element. This handles FP<->INT cases.
3292 if (SrcBitSize == DstBitSize) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003293 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003294 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003295 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
Chris Lattner3e104b12006-04-08 04:15:24 +00003296 AddToWorkList(Ops.back().Val);
3297 }
Dan Gohman7f321562007-06-25 16:23:39 +00003298 MVT::ValueType VT =
3299 MVT::getVectorType(DstEltVT,
3300 MVT::getVectorNumElements(BV->getValueType(0)));
3301 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003302 }
3303
3304 // Otherwise, we're growing or shrinking the elements. To avoid having to
3305 // handle annoying details of growing/shrinking FP values, we convert them to
3306 // int first.
3307 if (MVT::isFloatingPoint(SrcEltVT)) {
3308 // Convert the input float vector to a int vector where the elements are the
3309 // same sizes.
3310 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
3311 MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003312 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003313 SrcEltVT = IntVT;
3314 }
3315
3316 // Now we know the input is an integer vector. If the output is a FP type,
3317 // convert to integer first, then to FP of the right size.
3318 if (MVT::isFloatingPoint(DstEltVT)) {
3319 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
3320 MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003321 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003322
3323 // Next, convert to FP elements of the same size.
Dan Gohman7f321562007-06-25 16:23:39 +00003324 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00003325 }
3326
3327 // Okay, we know the src/dst types are both integers of differing types.
3328 // Handling growing first.
3329 assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
3330 if (SrcBitSize < DstBitSize) {
3331 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3332
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003333 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003334 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00003335 i += NumInputsPerOutput) {
3336 bool isLE = TLI.isLittleEndian();
3337 uint64_t NewBits = 0;
3338 bool EltIsUndef = true;
3339 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3340 // Shift the previously computed bits over.
3341 NewBits <<= SrcBitSize;
3342 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3343 if (Op.getOpcode() == ISD::UNDEF) continue;
3344 EltIsUndef = false;
3345
3346 NewBits |= cast<ConstantSDNode>(Op)->getValue();
3347 }
3348
3349 if (EltIsUndef)
3350 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3351 else
3352 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3353 }
3354
Dan Gohman7f321562007-06-25 16:23:39 +00003355 MVT::ValueType VT = MVT::getVectorType(DstEltVT,
3356 Ops.size());
3357 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003358 }
3359
3360 // Finally, this must be the case where we are shrinking elements: each input
3361 // turns into multiple outputs.
3362 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003363 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003364 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003365 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3366 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3367 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3368 continue;
3369 }
3370 uint64_t OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getValue();
3371
3372 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
3373 unsigned ThisVal = OpVal & ((1ULL << DstBitSize)-1);
3374 OpVal >>= DstBitSize;
3375 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
3376 }
3377
3378 // For big endian targets, swap the order of the pieces of each element.
3379 if (!TLI.isLittleEndian())
3380 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3381 }
Dan Gohman7f321562007-06-25 16:23:39 +00003382 MVT::ValueType VT = MVT::getVectorType(DstEltVT, Ops.size());
3383 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003384}
3385
3386
3387
Chris Lattner01b3d732005-09-28 22:28:18 +00003388SDOperand DAGCombiner::visitFADD(SDNode *N) {
3389 SDOperand N0 = N->getOperand(0);
3390 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003391 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3392 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003393 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003394
Dan Gohman7f321562007-06-25 16:23:39 +00003395 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003396 if (MVT::isVector(VT)) {
3397 SDOperand FoldedVOp = SimplifyVBinOp(N);
3398 if (FoldedVOp.Val) return FoldedVOp;
3399 }
Dan Gohman7f321562007-06-25 16:23:39 +00003400
Nate Begemana0e221d2005-10-18 00:28:13 +00003401 // fold (fadd c1, c2) -> c1+c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003402 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003403 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003404 // canonicalize constant to RHS
3405 if (N0CFP && !N1CFP)
3406 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003407 // fold (A + (-B)) -> A-B
Chris Lattner29446522007-05-14 22:04:50 +00003408 if (isNegatibleForFree(N1) == 2)
3409 return DAG.getNode(ISD::FSUB, VT, N0, GetNegatedExpression(N1, DAG));
Chris Lattner01b3d732005-09-28 22:28:18 +00003410 // fold ((-A) + B) -> B-A
Chris Lattner29446522007-05-14 22:04:50 +00003411 if (isNegatibleForFree(N0) == 2)
3412 return DAG.getNode(ISD::FSUB, VT, N1, GetNegatedExpression(N0, DAG));
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003413
3414 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3415 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3416 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3417 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3418 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3419
Chris Lattner01b3d732005-09-28 22:28:18 +00003420 return SDOperand();
3421}
3422
3423SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3424 SDOperand N0 = N->getOperand(0);
3425 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003426 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3427 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003428 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003429
Dan Gohman7f321562007-06-25 16:23:39 +00003430 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003431 if (MVT::isVector(VT)) {
3432 SDOperand FoldedVOp = SimplifyVBinOp(N);
3433 if (FoldedVOp.Val) return FoldedVOp;
3434 }
Dan Gohman7f321562007-06-25 16:23:39 +00003435
Nate Begemana0e221d2005-10-18 00:28:13 +00003436 // fold (fsub c1, c2) -> c1-c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003437 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003438 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00003439 // fold (0-B) -> -B
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003440 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Dan Gohman23ff1822007-07-02 15:48:56 +00003441 if (isNegatibleForFree(N1))
3442 return GetNegatedExpression(N1, DAG);
3443 return DAG.getNode(ISD::FNEG, VT, N1);
3444 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003445 // fold (A-(-B)) -> A+B
Chris Lattner29446522007-05-14 22:04:50 +00003446 if (isNegatibleForFree(N1))
3447 return DAG.getNode(ISD::FADD, VT, N0, GetNegatedExpression(N1, DAG));
3448
Chris Lattner01b3d732005-09-28 22:28:18 +00003449 return SDOperand();
3450}
3451
3452SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3453 SDOperand N0 = N->getOperand(0);
3454 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003455 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3456 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003457 MVT::ValueType VT = N->getValueType(0);
3458
Dan Gohman7f321562007-06-25 16:23:39 +00003459 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003460 if (MVT::isVector(VT)) {
3461 SDOperand FoldedVOp = SimplifyVBinOp(N);
3462 if (FoldedVOp.Val) return FoldedVOp;
3463 }
Dan Gohman7f321562007-06-25 16:23:39 +00003464
Nate Begeman11af4ea2005-10-17 20:40:11 +00003465 // fold (fmul c1, c2) -> c1*c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003466 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003467 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003468 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003469 if (N0CFP && !N1CFP)
3470 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003471 // fold (fmul X, 2.0) -> (fadd X, X)
3472 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3473 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner29446522007-05-14 22:04:50 +00003474 // fold (fmul X, -1.0) -> (fneg X)
3475 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3476 return DAG.getNode(ISD::FNEG, VT, N0);
3477
3478 // -X * -Y -> X*Y
3479 if (char LHSNeg = isNegatibleForFree(N0)) {
3480 if (char RHSNeg = isNegatibleForFree(N1)) {
3481 // Both can be negated for free, check to see if at least one is cheaper
3482 // negated.
3483 if (LHSNeg == 2 || RHSNeg == 2)
3484 return DAG.getNode(ISD::FMUL, VT, GetNegatedExpression(N0, DAG),
3485 GetNegatedExpression(N1, DAG));
3486 }
3487 }
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003488
3489 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3490 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3491 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3492 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3493 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3494
Chris Lattner01b3d732005-09-28 22:28:18 +00003495 return SDOperand();
3496}
3497
3498SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3499 SDOperand N0 = N->getOperand(0);
3500 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003501 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3502 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003503 MVT::ValueType VT = N->getValueType(0);
3504
Dan Gohman7f321562007-06-25 16:23:39 +00003505 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003506 if (MVT::isVector(VT)) {
3507 SDOperand FoldedVOp = SimplifyVBinOp(N);
3508 if (FoldedVOp.Val) return FoldedVOp;
3509 }
Dan Gohman7f321562007-06-25 16:23:39 +00003510
Nate Begemana148d982006-01-18 22:35:16 +00003511 // fold (fdiv c1, c2) -> c1/c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003512 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003513 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner29446522007-05-14 22:04:50 +00003514
3515
3516 // -X / -Y -> X*Y
3517 if (char LHSNeg = isNegatibleForFree(N0)) {
3518 if (char RHSNeg = isNegatibleForFree(N1)) {
3519 // Both can be negated for free, check to see if at least one is cheaper
3520 // negated.
3521 if (LHSNeg == 2 || RHSNeg == 2)
3522 return DAG.getNode(ISD::FDIV, VT, GetNegatedExpression(N0, DAG),
3523 GetNegatedExpression(N1, DAG));
3524 }
3525 }
3526
Chris Lattner01b3d732005-09-28 22:28:18 +00003527 return SDOperand();
3528}
3529
3530SDOperand DAGCombiner::visitFREM(SDNode *N) {
3531 SDOperand N0 = N->getOperand(0);
3532 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003533 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3534 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003535 MVT::ValueType VT = N->getValueType(0);
3536
Nate Begemana148d982006-01-18 22:35:16 +00003537 // fold (frem c1, c2) -> fmod(c1,c2)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003538 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003539 return DAG.getNode(ISD::FREM, VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00003540
Chris Lattner01b3d732005-09-28 22:28:18 +00003541 return SDOperand();
3542}
3543
Chris Lattner12d83032006-03-05 05:30:57 +00003544SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3545 SDOperand N0 = N->getOperand(0);
3546 SDOperand N1 = N->getOperand(1);
3547 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3548 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3549 MVT::ValueType VT = N->getValueType(0);
3550
Dale Johannesendb44bf82007-10-16 23:38:29 +00003551 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Chris Lattner12d83032006-03-05 05:30:57 +00003552 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3553
3554 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00003555 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00003556 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3557 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen87503a62007-08-25 22:10:57 +00003558 if (!V.isNegative())
Chris Lattner12d83032006-03-05 05:30:57 +00003559 return DAG.getNode(ISD::FABS, VT, N0);
3560 else
3561 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3562 }
3563
3564 // copysign(fabs(x), y) -> copysign(x, y)
3565 // copysign(fneg(x), y) -> copysign(x, y)
3566 // copysign(copysign(x,z), y) -> copysign(x, y)
3567 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3568 N0.getOpcode() == ISD::FCOPYSIGN)
3569 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3570
3571 // copysign(x, abs(y)) -> abs(x)
3572 if (N1.getOpcode() == ISD::FABS)
3573 return DAG.getNode(ISD::FABS, VT, N0);
3574
3575 // copysign(x, copysign(y,z)) -> copysign(x, z)
3576 if (N1.getOpcode() == ISD::FCOPYSIGN)
3577 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3578
3579 // copysign(x, fp_extend(y)) -> copysign(x, y)
3580 // copysign(x, fp_round(y)) -> copysign(x, y)
3581 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3582 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3583
3584 return SDOperand();
3585}
3586
3587
Chris Lattner01b3d732005-09-28 22:28:18 +00003588
Nate Begeman83e75ec2005-09-06 04:43:02 +00003589SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003590 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003591 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003592 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003593
3594 // fold (sint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003595 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003596 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003597 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003598}
3599
Nate Begeman83e75ec2005-09-06 04:43:02 +00003600SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003601 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003602 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003603 MVT::ValueType VT = N->getValueType(0);
3604
Nate Begeman1d4d4142005-09-01 00:19:25 +00003605 // fold (uint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003606 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003607 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003608 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003609}
3610
Nate Begeman83e75ec2005-09-06 04:43:02 +00003611SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003612 SDOperand N0 = N->getOperand(0);
3613 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3614 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003615
3616 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003617 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003618 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003619 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003620}
3621
Nate Begeman83e75ec2005-09-06 04:43:02 +00003622SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003623 SDOperand N0 = N->getOperand(0);
3624 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3625 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003626
3627 // fold (fp_to_uint c1fp) -> c1
Dale Johannesendb44bf82007-10-16 23:38:29 +00003628 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003629 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003630 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003631}
3632
Nate Begeman83e75ec2005-09-06 04:43:02 +00003633SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003634 SDOperand N0 = N->getOperand(0);
3635 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3636 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003637
3638 // fold (fp_round c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003639 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003640 return DAG.getNode(ISD::FP_ROUND, VT, N0);
Chris Lattner79dbea52006-03-13 06:26:26 +00003641
3642 // fold (fp_round (fp_extend x)) -> x
3643 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3644 return N0.getOperand(0);
3645
3646 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3647 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
3648 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0));
3649 AddToWorkList(Tmp.Val);
3650 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3651 }
3652
Nate Begeman83e75ec2005-09-06 04:43:02 +00003653 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003654}
3655
Nate Begeman83e75ec2005-09-06 04:43:02 +00003656SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003657 SDOperand N0 = N->getOperand(0);
3658 MVT::ValueType VT = N->getValueType(0);
3659 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00003660 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003661
Nate Begeman1d4d4142005-09-01 00:19:25 +00003662 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003663 if (N0CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003664 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003665 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003666 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003667 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003668}
3669
Nate Begeman83e75ec2005-09-06 04:43:02 +00003670SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003671 SDOperand N0 = N->getOperand(0);
3672 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3673 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003674
Chris Lattner5938bef2007-12-29 06:55:23 +00003675 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
3676 if (N->hasOneUse() && (*N->use_begin())->getOpcode() == ISD::FP_ROUND)
3677 return SDOperand();
3678
Nate Begeman1d4d4142005-09-01 00:19:25 +00003679 // fold (fp_extend c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003680 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003681 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattnere564dbb2006-05-05 21:34:35 +00003682
3683 // fold (fpext (load x)) -> (fpext (fpround (extload x)))
Dale Johannesenb6210fc2007-10-19 20:29:00 +00003684 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003685 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003686 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3687 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3688 LN0->getBasePtr(), LN0->getSrcValue(),
3689 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003690 N0.getValueType(),
3691 LN0->isVolatile(),
3692 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00003693 CombineTo(N, ExtLoad);
3694 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad),
3695 ExtLoad.getValue(1));
3696 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3697 }
3698
3699
Nate Begeman83e75ec2005-09-06 04:43:02 +00003700 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003701}
3702
Nate Begeman83e75ec2005-09-06 04:43:02 +00003703SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003704 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00003705
Dan Gohman23ff1822007-07-02 15:48:56 +00003706 if (isNegatibleForFree(N0))
3707 return GetNegatedExpression(N0, DAG);
3708
Nate Begeman83e75ec2005-09-06 04:43:02 +00003709 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003710}
3711
Nate Begeman83e75ec2005-09-06 04:43:02 +00003712SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003713 SDOperand N0 = N->getOperand(0);
3714 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3715 MVT::ValueType VT = N->getValueType(0);
3716
Nate Begeman1d4d4142005-09-01 00:19:25 +00003717 // fold (fabs c1) -> fabs(c1)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003718 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003719 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003720 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003721 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003722 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003723 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003724 // fold (fabs (fcopysign x, y)) -> (fabs x)
3725 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
3726 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
3727
Nate Begeman83e75ec2005-09-06 04:43:02 +00003728 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003729}
3730
Nate Begeman44728a72005-09-19 22:34:01 +00003731SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
3732 SDOperand Chain = N->getOperand(0);
3733 SDOperand N1 = N->getOperand(1);
3734 SDOperand N2 = N->getOperand(2);
3735 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3736
3737 // never taken branch, fold to chain
3738 if (N1C && N1C->isNullValue())
3739 return Chain;
3740 // unconditional branch
Nate Begemane17daeb2005-10-05 21:43:42 +00003741 if (N1C && N1C->getValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00003742 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003743 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
3744 // on the target.
3745 if (N1.getOpcode() == ISD::SETCC &&
3746 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
3747 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
3748 N1.getOperand(0), N1.getOperand(1), N2);
3749 }
Nate Begeman44728a72005-09-19 22:34:01 +00003750 return SDOperand();
3751}
3752
Chris Lattner3ea0b472005-10-05 06:47:48 +00003753// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
3754//
Nate Begeman44728a72005-09-19 22:34:01 +00003755SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00003756 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
3757 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
3758
3759 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00003760 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
Chris Lattner30f73e72006-10-14 03:52:46 +00003761 if (Simp.Val) AddToWorkList(Simp.Val);
3762
Nate Begemane17daeb2005-10-05 21:43:42 +00003763 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
3764
3765 // fold br_cc true, dest -> br dest (unconditional branch)
3766 if (SCCC && SCCC->getValue())
3767 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
3768 N->getOperand(4));
3769 // fold br_cc false, dest -> unconditional fall through
3770 if (SCCC && SCCC->isNullValue())
3771 return N->getOperand(0);
Chris Lattner30f73e72006-10-14 03:52:46 +00003772
Nate Begemane17daeb2005-10-05 21:43:42 +00003773 // fold to a simpler setcc
3774 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
3775 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
3776 Simp.getOperand(2), Simp.getOperand(0),
3777 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00003778 return SDOperand();
3779}
3780
Chris Lattner448f2192006-11-11 00:39:41 +00003781
3782/// CombineToPreIndexedLoadStore - Try turning a load / store and a
3783/// pre-indexed load / store when the base pointer is a add or subtract
3784/// and it has other uses besides the load / store. After the
3785/// transformation, the new indexed load / store has effectively folded
3786/// the add / subtract in and all of its other uses are redirected to the
3787/// new load / store.
3788bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
3789 if (!AfterLegalize)
3790 return false;
3791
3792 bool isLoad = true;
3793 SDOperand Ptr;
3794 MVT::ValueType VT;
3795 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003796 if (LD->getAddressingMode() != ISD::UNINDEXED)
3797 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003798 VT = LD->getLoadedVT();
Evan Cheng83060c52007-03-07 08:07:03 +00003799 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00003800 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
3801 return false;
3802 Ptr = LD->getBasePtr();
3803 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003804 if (ST->getAddressingMode() != ISD::UNINDEXED)
3805 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003806 VT = ST->getStoredVT();
3807 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
3808 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
3809 return false;
3810 Ptr = ST->getBasePtr();
3811 isLoad = false;
3812 } else
3813 return false;
3814
Chris Lattner9f1794e2006-11-11 00:56:29 +00003815 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
3816 // out. There is no reason to make this a preinc/predec.
3817 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
3818 Ptr.Val->hasOneUse())
3819 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003820
Chris Lattner9f1794e2006-11-11 00:56:29 +00003821 // Ask the target to do addressing mode selection.
3822 SDOperand BasePtr;
3823 SDOperand Offset;
3824 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3825 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
3826 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00003827 // Don't create a indexed load / store with zero offset.
3828 if (isa<ConstantSDNode>(Offset) &&
3829 cast<ConstantSDNode>(Offset)->getValue() == 0)
3830 return false;
Chris Lattner9f1794e2006-11-11 00:56:29 +00003831
Chris Lattner41e53fd2006-11-11 01:00:15 +00003832 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00003833 // 1) The new base ptr is a frame index.
3834 // 2) If N is a store and the new base ptr is either the same as or is a
Chris Lattner9f1794e2006-11-11 00:56:29 +00003835 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00003836 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00003837 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00003838 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00003839
Chris Lattner41e53fd2006-11-11 01:00:15 +00003840 // Check #1. Preinc'ing a frame index would require copying the stack pointer
3841 // (plus the implicit offset) to a register to preinc anyway.
3842 if (isa<FrameIndexSDNode>(BasePtr))
3843 return false;
3844
3845 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003846 if (!isLoad) {
3847 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Chengc843abe2007-05-24 02:35:39 +00003848 if (Val == BasePtr || BasePtr.Val->isPredecessor(Val.Val))
Chris Lattner9f1794e2006-11-11 00:56:29 +00003849 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003850 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003851
Evan Chengc843abe2007-05-24 02:35:39 +00003852 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003853 bool RealUse = false;
3854 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3855 E = Ptr.Val->use_end(); I != E; ++I) {
3856 SDNode *Use = *I;
3857 if (Use == N)
3858 continue;
3859 if (Use->isPredecessor(N))
3860 return false;
3861
3862 if (!((Use->getOpcode() == ISD::LOAD &&
3863 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
3864 (Use->getOpcode() == ISD::STORE) &&
3865 cast<StoreSDNode>(Use)->getBasePtr() == Ptr))
3866 RealUse = true;
3867 }
3868 if (!RealUse)
3869 return false;
3870
3871 SDOperand Result;
3872 if (isLoad)
3873 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
3874 else
3875 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
3876 ++PreIndexedNodes;
3877 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00003878 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00003879 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
3880 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00003881 std::vector<SDNode*> NowDead;
3882 if (isLoad) {
3883 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003884 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003885 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00003886 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003887 } else {
3888 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00003889 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003890 }
3891
3892 // Nodes can end up on the worklist more than once. Make sure we do
3893 // not process a node that has been replaced.
3894 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3895 removeFromWorkList(NowDead[i]);
3896 // Finally, since the node is now dead, remove it from the graph.
3897 DAG.DeleteNode(N);
3898
3899 // Replace the uses of Ptr with uses of the updated base value.
3900 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003901 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003902 removeFromWorkList(Ptr.Val);
3903 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3904 removeFromWorkList(NowDead[i]);
3905 DAG.DeleteNode(Ptr.Val);
3906
3907 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00003908}
3909
3910/// CombineToPostIndexedLoadStore - Try combine a load / store with a
3911/// add / sub of the base pointer node into a post-indexed load / store.
3912/// The transformation folded the add / subtract into the new indexed
3913/// load / store effectively and all of its uses are redirected to the
3914/// new load / store.
3915bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
3916 if (!AfterLegalize)
3917 return false;
3918
3919 bool isLoad = true;
3920 SDOperand Ptr;
3921 MVT::ValueType VT;
3922 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003923 if (LD->getAddressingMode() != ISD::UNINDEXED)
3924 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003925 VT = LD->getLoadedVT();
3926 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
3927 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
3928 return false;
3929 Ptr = LD->getBasePtr();
3930 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003931 if (ST->getAddressingMode() != ISD::UNINDEXED)
3932 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003933 VT = ST->getStoredVT();
3934 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
3935 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
3936 return false;
3937 Ptr = ST->getBasePtr();
3938 isLoad = false;
3939 } else
3940 return false;
3941
Evan Chengcc470212006-11-16 00:08:20 +00003942 if (Ptr.Val->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00003943 return false;
3944
3945 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3946 E = Ptr.Val->use_end(); I != E; ++I) {
3947 SDNode *Op = *I;
3948 if (Op == N ||
3949 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
3950 continue;
3951
3952 SDOperand BasePtr;
3953 SDOperand Offset;
3954 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3955 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
3956 if (Ptr == Offset)
3957 std::swap(BasePtr, Offset);
3958 if (Ptr != BasePtr)
Chris Lattner448f2192006-11-11 00:39:41 +00003959 continue;
Evan Chenga7d4a042007-05-03 23:52:19 +00003960 // Don't create a indexed load / store with zero offset.
3961 if (isa<ConstantSDNode>(Offset) &&
3962 cast<ConstantSDNode>(Offset)->getValue() == 0)
3963 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00003964
Chris Lattner9f1794e2006-11-11 00:56:29 +00003965 // Try turning it into a post-indexed load / store except when
3966 // 1) All uses are load / store ops that use it as base ptr.
3967 // 2) Op must be independent of N, i.e. Op is neither a predecessor
3968 // nor a successor of N. Otherwise, if Op is folded that would
3969 // create a cycle.
3970
3971 // Check for #1.
3972 bool TryNext = false;
3973 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
3974 EE = BasePtr.Val->use_end(); II != EE; ++II) {
3975 SDNode *Use = *II;
3976 if (Use == Ptr.Val)
Chris Lattner448f2192006-11-11 00:39:41 +00003977 continue;
3978
Chris Lattner9f1794e2006-11-11 00:56:29 +00003979 // If all the uses are load / store addresses, then don't do the
3980 // transformation.
3981 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
3982 bool RealUse = false;
3983 for (SDNode::use_iterator III = Use->use_begin(),
3984 EEE = Use->use_end(); III != EEE; ++III) {
3985 SDNode *UseUse = *III;
3986 if (!((UseUse->getOpcode() == ISD::LOAD &&
3987 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
3988 (UseUse->getOpcode() == ISD::STORE) &&
3989 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use))
3990 RealUse = true;
3991 }
Chris Lattner448f2192006-11-11 00:39:41 +00003992
Chris Lattner9f1794e2006-11-11 00:56:29 +00003993 if (!RealUse) {
3994 TryNext = true;
3995 break;
Chris Lattner448f2192006-11-11 00:39:41 +00003996 }
3997 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003998 }
3999 if (TryNext)
4000 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004001
Chris Lattner9f1794e2006-11-11 00:56:29 +00004002 // Check for #2
4003 if (!Op->isPredecessor(N) && !N->isPredecessor(Op)) {
4004 SDOperand Result = isLoad
4005 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4006 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4007 ++PostIndexedNodes;
4008 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004009 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004010 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4011 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00004012 std::vector<SDNode*> NowDead;
4013 if (isLoad) {
4014 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004015 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004016 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00004017 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004018 } else {
4019 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00004020 &NowDead);
Chris Lattner448f2192006-11-11 00:39:41 +00004021 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004022
4023 // Nodes can end up on the worklist more than once. Make sure we do
4024 // not process a node that has been replaced.
4025 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4026 removeFromWorkList(NowDead[i]);
4027 // Finally, since the node is now dead, remove it from the graph.
4028 DAG.DeleteNode(N);
4029
4030 // Replace the uses of Use with uses of the updated base value.
4031 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4032 Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004033 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004034 removeFromWorkList(Op);
4035 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4036 removeFromWorkList(NowDead[i]);
4037 DAG.DeleteNode(Op);
4038
4039 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004040 }
4041 }
4042 }
4043 return false;
4044}
4045
4046
Chris Lattner01a22022005-10-10 22:04:48 +00004047SDOperand DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00004048 LoadSDNode *LD = cast<LoadSDNode>(N);
4049 SDOperand Chain = LD->getChain();
4050 SDOperand Ptr = LD->getBasePtr();
Evan Cheng45a7ca92007-05-01 00:38:21 +00004051
4052 // If load is not volatile and there are no uses of the loaded value (and
4053 // the updated indexed value in case of indexed loads), change uses of the
4054 // chain value into uses of the chain input (i.e. delete the dead load).
4055 if (!LD->isVolatile()) {
Evan Cheng498f5592007-05-01 08:53:39 +00004056 if (N->getValueType(1) == MVT::Other) {
4057 // Unindexed loads.
4058 if (N->hasNUsesOfValue(0, 0))
4059 return CombineTo(N, DAG.getNode(ISD::UNDEF, N->getValueType(0)), Chain);
4060 } else {
4061 // Indexed loads.
4062 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4063 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
4064 SDOperand Undef0 = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4065 SDOperand Undef1 = DAG.getNode(ISD::UNDEF, N->getValueType(1));
4066 SDOperand To[] = { Undef0, Undef1, Chain };
4067 return CombineTo(N, To, 3);
Evan Cheng45a7ca92007-05-01 00:38:21 +00004068 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00004069 }
4070 }
Chris Lattner01a22022005-10-10 22:04:48 +00004071
4072 // If this load is directly stored, replace the load value with the stored
4073 // value.
4074 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004075 // TODO: Handle TRUNCSTORE/LOADEXT
4076 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004077 if (ISD::isNON_TRUNCStore(Chain.Val)) {
4078 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4079 if (PrevST->getBasePtr() == Ptr &&
4080 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004081 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00004082 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004083 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00004084
Jim Laskey7ca56af2006-10-11 13:47:09 +00004085 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00004086 // Walk up chain skipping non-aliasing memory nodes.
4087 SDOperand BetterChain = FindBetterChain(N, Chain);
4088
Jim Laskey6ff23e52006-10-04 16:53:27 +00004089 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004090 if (Chain != BetterChain) {
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004091 SDOperand ReplLoad;
4092
Jim Laskey279f0532006-09-25 16:29:54 +00004093 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004094 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4095 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Duncan Sandsdc846502007-10-28 12:59:45 +00004096 LD->getSrcValue(), LD->getSrcValueOffset(),
4097 LD->isVolatile(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004098 } else {
4099 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4100 LD->getValueType(0),
4101 BetterChain, Ptr, LD->getSrcValue(),
4102 LD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004103 LD->getLoadedVT(),
4104 LD->isVolatile(),
4105 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004106 }
Jim Laskey279f0532006-09-25 16:29:54 +00004107
Jim Laskey6ff23e52006-10-04 16:53:27 +00004108 // Create token factor to keep old chain connected.
Jim Laskey288af5e2006-09-25 19:32:58 +00004109 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4110 Chain, ReplLoad.getValue(1));
Jim Laskey6ff23e52006-10-04 16:53:27 +00004111
Jim Laskey274062c2006-10-13 23:32:28 +00004112 // Replace uses with load result and token factor. Don't add users
4113 // to work list.
4114 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004115 }
4116 }
4117
Evan Cheng7fc033a2006-11-03 03:06:21 +00004118 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004119 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng7fc033a2006-11-03 03:06:21 +00004120 return SDOperand(N, 0);
4121
Chris Lattner01a22022005-10-10 22:04:48 +00004122 return SDOperand();
4123}
4124
Chris Lattner87514ca2005-10-10 22:31:19 +00004125SDOperand DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004126 StoreSDNode *ST = cast<StoreSDNode>(N);
4127 SDOperand Chain = ST->getChain();
4128 SDOperand Value = ST->getValue();
4129 SDOperand Ptr = ST->getBasePtr();
Jim Laskey7aed46c2006-10-11 18:55:16 +00004130
Evan Cheng59d5b682007-05-07 21:27:48 +00004131 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00004132 // resultant store does not need a higher alignment than the original.
Dale Johannesen98a6c622007-05-16 22:45:30 +00004133 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
4134 ST->getAddressingMode() == ISD::UNINDEXED) {
Evan Cheng59d5b682007-05-07 21:27:48 +00004135 unsigned Align = ST->getAlignment();
4136 MVT::ValueType SVT = Value.getOperand(0).getValueType();
4137 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00004138 getABITypeAlignment(MVT::getTypeForValueType(SVT));
Evan Chengc2cd2b22007-05-07 21:36:06 +00004139 if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
Evan Cheng59d5b682007-05-07 21:27:48 +00004140 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004141 ST->getSrcValueOffset(), ST->isVolatile(), Align);
Jim Laskey279f0532006-09-25 16:29:54 +00004142 }
4143
Nate Begeman2cbba892006-12-11 02:23:46 +00004144 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00004145 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Evan Cheng25ece662006-12-11 17:25:19 +00004146 if (Value.getOpcode() != ISD::TargetConstantFP) {
4147 SDOperand Tmp;
Chris Lattner62be1a72006-12-12 04:16:14 +00004148 switch (CFP->getValueType(0)) {
4149 default: assert(0 && "Unknown FP type");
Dale Johannesenc7b21d52007-09-18 18:36:59 +00004150 case MVT::f80: // We don't do this for these yet.
4151 case MVT::f128:
4152 case MVT::ppcf128:
4153 break;
Chris Lattner62be1a72006-12-12 04:16:14 +00004154 case MVT::f32:
4155 if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004156 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4157 convertToAPInt().getZExtValue(), MVT::i32);
Chris Lattner62be1a72006-12-12 04:16:14 +00004158 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004159 ST->getSrcValueOffset(), ST->isVolatile(),
4160 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004161 }
4162 break;
4163 case MVT::f64:
4164 if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004165 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4166 getZExtValue(), MVT::i64);
Chris Lattner62be1a72006-12-12 04:16:14 +00004167 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004168 ST->getSrcValueOffset(), ST->isVolatile(),
4169 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004170 } else if (TLI.isTypeLegal(MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00004171 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00004172 // argument passing. Since this is so common, custom legalize the
4173 // 64-bit integer store into two 32-bit stores.
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004174 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner62be1a72006-12-12 04:16:14 +00004175 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4176 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
4177 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
4178
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004179 int SVOffset = ST->getSrcValueOffset();
4180 unsigned Alignment = ST->getAlignment();
4181 bool isVolatile = ST->isVolatile();
4182
Chris Lattner62be1a72006-12-12 04:16:14 +00004183 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004184 ST->getSrcValueOffset(),
4185 isVolatile, ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004186 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4187 DAG.getConstant(4, Ptr.getValueType()));
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004188 SVOffset += 4;
Duncan Sandsdc846502007-10-28 12:59:45 +00004189 Alignment = MinAlign(Alignment, 4U);
Chris Lattner62be1a72006-12-12 04:16:14 +00004190 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004191 SVOffset, isVolatile, Alignment);
Chris Lattner62be1a72006-12-12 04:16:14 +00004192 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4193 }
4194 break;
Evan Cheng25ece662006-12-11 17:25:19 +00004195 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004196 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004197 }
4198
Jim Laskey279f0532006-09-25 16:29:54 +00004199 if (CombinerAA) {
4200 // Walk up chain skipping non-aliasing memory nodes.
4201 SDOperand BetterChain = FindBetterChain(N, Chain);
4202
Jim Laskey6ff23e52006-10-04 16:53:27 +00004203 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004204 if (Chain != BetterChain) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00004205 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004206 SDOperand ReplStore;
4207 if (ST->isTruncatingStore()) {
4208 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004209 ST->getSrcValue(), ST->getSrcValueOffset(), ST->getStoredVT(),
4210 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004211 } else {
4212 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004213 ST->getSrcValue(), ST->getSrcValueOffset(),
4214 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004215 }
4216
Jim Laskey279f0532006-09-25 16:29:54 +00004217 // Create token to keep both nodes around.
Jim Laskey274062c2006-10-13 23:32:28 +00004218 SDOperand Token =
4219 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4220
4221 // Don't add users to work list.
4222 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004223 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00004224 }
Chris Lattnerc33baaa2005-12-23 05:48:07 +00004225
Evan Cheng33dbedc2006-11-05 09:31:14 +00004226 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004227 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng33dbedc2006-11-05 09:31:14 +00004228 return SDOperand(N, 0);
4229
Chris Lattner3c872852007-12-29 06:26:16 +00004230 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattner2b4c2792007-10-13 06:35:54 +00004231 if (ST->isTruncatingStore() && ST->getAddressingMode() == ISD::UNINDEXED &&
4232 MVT::isInteger(Value.getValueType())) {
4233 // See if we can simplify the input to this truncstore with knowledge that
4234 // only the low bits are being used. For example:
4235 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4236 SDOperand Shorter =
4237 GetDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT()));
4238 AddToWorkList(Value.Val);
4239 if (Shorter.Val)
4240 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
4241 ST->getSrcValueOffset(), ST->getStoredVT(),
4242 ST->isVolatile(), ST->getAlignment());
Chris Lattnere33544c2007-10-13 06:58:48 +00004243
4244 // Otherwise, see if we can simplify the operation with
4245 // SimplifyDemandedBits, which only works if the value has a single use.
4246 if (SimplifyDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT())))
4247 return SDOperand(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00004248 }
4249
Chris Lattner3c872852007-12-29 06:26:16 +00004250 // If this is a load followed by a store to the same location, then the store
4251 // is dead/noop.
4252 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
4253 if (Chain.Val == Ld && Ld->getBasePtr() == Ptr &&
4254 ST->getAddressingMode() == ISD::UNINDEXED &&
Chris Lattnerb253a8b2007-12-29 07:15:45 +00004255 ST->getStoredVT() == Ld->getLoadedVT() &&
4256 !ST->isVolatile()) {
Chris Lattner3c872852007-12-29 06:26:16 +00004257 // The store is dead, remove it.
4258 return Chain;
4259 }
4260 }
4261
Chris Lattner87514ca2005-10-10 22:31:19 +00004262 return SDOperand();
4263}
4264
Chris Lattnerca242442006-03-19 01:27:56 +00004265SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4266 SDOperand InVec = N->getOperand(0);
4267 SDOperand InVal = N->getOperand(1);
4268 SDOperand EltNo = N->getOperand(2);
4269
4270 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4271 // vector with the inserted element.
4272 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4273 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004274 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
Chris Lattnerca242442006-03-19 01:27:56 +00004275 if (Elt < Ops.size())
4276 Ops[Elt] = InVal;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004277 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4278 &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00004279 }
4280
4281 return SDOperand();
4282}
4283
Evan Cheng513da432007-10-06 08:19:55 +00004284SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
4285 SDOperand InVec = N->getOperand(0);
4286 SDOperand EltNo = N->getOperand(1);
4287
4288 // (vextract (v4f32 s2v (f32 load $addr)), 0) -> (f32 load $addr)
4289 // (vextract (v4i32 bc (v4f32 s2v (f32 load $addr))), 0) -> (i32 load $addr)
4290 if (isa<ConstantSDNode>(EltNo)) {
4291 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4292 bool NewLoad = false;
4293 if (Elt == 0) {
4294 MVT::ValueType VT = InVec.getValueType();
4295 MVT::ValueType EVT = MVT::getVectorElementType(VT);
4296 MVT::ValueType LVT = EVT;
4297 unsigned NumElts = MVT::getVectorNumElements(VT);
4298 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
4299 MVT::ValueType BCVT = InVec.getOperand(0).getValueType();
Dan Gohman090b38a2007-10-29 20:44:42 +00004300 if (!MVT::isVector(BCVT) ||
4301 NumElts != MVT::getVectorNumElements(BCVT))
Evan Cheng513da432007-10-06 08:19:55 +00004302 return SDOperand();
4303 InVec = InVec.getOperand(0);
4304 EVT = MVT::getVectorElementType(BCVT);
4305 NewLoad = true;
4306 }
4307 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4308 InVec.getOperand(0).getValueType() == EVT &&
4309 ISD::isNormalLoad(InVec.getOperand(0).Val) &&
4310 InVec.getOperand(0).hasOneUse()) {
4311 LoadSDNode *LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4312 unsigned Align = LN0->getAlignment();
4313 if (NewLoad) {
4314 // Check the resultant load doesn't need a higher alignment than the
4315 // original load.
4316 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
4317 getABITypeAlignment(MVT::getTypeForValueType(LVT));
4318 if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4319 return SDOperand();
4320 Align = NewAlign;
4321 }
4322
4323 return DAG.getLoad(LVT, LN0->getChain(), LN0->getBasePtr(),
4324 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4325 LN0->isVolatile(), Align);
4326 }
4327 }
4328 }
4329 return SDOperand();
4330}
4331
4332
Dan Gohman7f321562007-06-25 16:23:39 +00004333SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4334 unsigned NumInScalars = N->getNumOperands();
4335 MVT::ValueType VT = N->getValueType(0);
4336 unsigned NumElts = MVT::getVectorNumElements(VT);
4337 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattnerca242442006-03-19 01:27:56 +00004338
Dan Gohman7f321562007-06-25 16:23:39 +00004339 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4340 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4341 // at most two distinct vectors, turn this into a shuffle node.
Chris Lattnerd7648c82006-03-28 20:28:38 +00004342 SDOperand VecIn1, VecIn2;
4343 for (unsigned i = 0; i != NumInScalars; ++i) {
4344 // Ignore undef inputs.
4345 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4346
Dan Gohman7f321562007-06-25 16:23:39 +00004347 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00004348 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00004349 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00004350 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4351 VecIn1 = VecIn2 = SDOperand(0, 0);
4352 break;
4353 }
4354
Dan Gohman7f321562007-06-25 16:23:39 +00004355 // If the input vector type disagrees with the result of the build_vector,
Chris Lattnerd7648c82006-03-28 20:28:38 +00004356 // we can't make a shuffle.
4357 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004358 if (ExtractedFromVec.getValueType() != VT) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00004359 VecIn1 = VecIn2 = SDOperand(0, 0);
4360 break;
4361 }
4362
4363 // Otherwise, remember this. We allow up to two distinct input vectors.
4364 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4365 continue;
4366
4367 if (VecIn1.Val == 0) {
4368 VecIn1 = ExtractedFromVec;
4369 } else if (VecIn2.Val == 0) {
4370 VecIn2 = ExtractedFromVec;
4371 } else {
4372 // Too many inputs.
4373 VecIn1 = VecIn2 = SDOperand(0, 0);
4374 break;
4375 }
4376 }
4377
4378 // If everything is good, we can make a shuffle operation.
4379 if (VecIn1.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004380 SmallVector<SDOperand, 8> BuildVecIndices;
Chris Lattnerd7648c82006-03-28 20:28:38 +00004381 for (unsigned i = 0; i != NumInScalars; ++i) {
4382 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Evan Cheng597a3bd2007-01-20 10:10:26 +00004383 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004384 continue;
4385 }
4386
4387 SDOperand Extract = N->getOperand(i);
4388
4389 // If extracting from the first vector, just use the index directly.
4390 if (Extract.getOperand(0) == VecIn1) {
4391 BuildVecIndices.push_back(Extract.getOperand(1));
4392 continue;
4393 }
4394
4395 // Otherwise, use InIdx + VecSize
4396 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Evan Cheng597a3bd2007-01-20 10:10:26 +00004397 BuildVecIndices.push_back(DAG.getConstant(Idx+NumInScalars,
4398 TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004399 }
4400
4401 // Add count and size info.
Dan Gohman7f321562007-06-25 16:23:39 +00004402 MVT::ValueType BuildVecVT =
4403 MVT::getVectorType(TLI.getPointerTy(), NumElts);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004404
Dan Gohman7f321562007-06-25 16:23:39 +00004405 // Return the new VECTOR_SHUFFLE node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004406 SDOperand Ops[5];
4407 Ops[0] = VecIn1;
Chris Lattnercef896e2006-03-28 22:19:47 +00004408 if (VecIn2.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004409 Ops[1] = VecIn2;
Chris Lattnercef896e2006-03-28 22:19:47 +00004410 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004411 // Use an undef build_vector as input for the second operand.
Chris Lattnercef896e2006-03-28 22:19:47 +00004412 std::vector<SDOperand> UnOps(NumInScalars,
4413 DAG.getNode(ISD::UNDEF,
Dan Gohman7f321562007-06-25 16:23:39 +00004414 EltType));
4415 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004416 &UnOps[0], UnOps.size());
4417 AddToWorkList(Ops[1].Val);
Chris Lattnercef896e2006-03-28 22:19:47 +00004418 }
Dan Gohman7f321562007-06-25 16:23:39 +00004419 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004420 &BuildVecIndices[0], BuildVecIndices.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004421 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004422 }
4423
4424 return SDOperand();
4425}
4426
Dan Gohman7f321562007-06-25 16:23:39 +00004427SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4428 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4429 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4430 // inputs come from at most two distinct vectors, turn this into a shuffle
4431 // node.
4432
4433 // If we only have one input vector, we don't need to do any concatenation.
4434 if (N->getNumOperands() == 1) {
4435 return N->getOperand(0);
4436 }
4437
4438 return SDOperand();
4439}
4440
Chris Lattner66445d32006-03-28 22:11:53 +00004441SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004442 SDOperand ShufMask = N->getOperand(2);
4443 unsigned NumElts = ShufMask.getNumOperands();
4444
4445 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4446 bool isIdentity = true;
4447 for (unsigned i = 0; i != NumElts; ++i) {
4448 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4449 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4450 isIdentity = false;
4451 break;
4452 }
4453 }
4454 if (isIdentity) return N->getOperand(0);
4455
4456 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4457 isIdentity = true;
4458 for (unsigned i = 0; i != NumElts; ++i) {
4459 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4460 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4461 isIdentity = false;
4462 break;
4463 }
4464 }
4465 if (isIdentity) return N->getOperand(1);
Evan Chenge7bec0d2006-07-20 22:44:41 +00004466
4467 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4468 // needed at all.
4469 bool isUnary = true;
Evan Cheng917ec982006-07-21 08:25:53 +00004470 bool isSplat = true;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004471 int VecNum = -1;
Reid Spencer9160a6a2006-07-25 20:44:41 +00004472 unsigned BaseIdx = 0;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004473 for (unsigned i = 0; i != NumElts; ++i)
4474 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4475 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4476 int V = (Idx < NumElts) ? 0 : 1;
Evan Cheng917ec982006-07-21 08:25:53 +00004477 if (VecNum == -1) {
Evan Chenge7bec0d2006-07-20 22:44:41 +00004478 VecNum = V;
Evan Cheng917ec982006-07-21 08:25:53 +00004479 BaseIdx = Idx;
4480 } else {
4481 if (BaseIdx != Idx)
4482 isSplat = false;
4483 if (VecNum != V) {
4484 isUnary = false;
4485 break;
4486 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00004487 }
4488 }
4489
4490 SDOperand N0 = N->getOperand(0);
4491 SDOperand N1 = N->getOperand(1);
4492 // Normalize unary shuffle so the RHS is undef.
4493 if (isUnary && VecNum == 1)
4494 std::swap(N0, N1);
4495
Evan Cheng917ec982006-07-21 08:25:53 +00004496 // If it is a splat, check if the argument vector is a build_vector with
4497 // all scalar elements the same.
4498 if (isSplat) {
4499 SDNode *V = N0.Val;
Evan Cheng917ec982006-07-21 08:25:53 +00004500
Dan Gohman7f321562007-06-25 16:23:39 +00004501 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00004502 // not the number of vector elements, look through it. Be careful not to
4503 // look though conversions that change things like v4f32 to v2f64.
Dan Gohman7f321562007-06-25 16:23:39 +00004504 if (V->getOpcode() == ISD::BIT_CONVERT) {
Evan Cheng59569222006-10-16 22:49:37 +00004505 SDOperand ConvInput = V->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004506 if (MVT::getVectorNumElements(ConvInput.getValueType()) == NumElts)
Evan Cheng59569222006-10-16 22:49:37 +00004507 V = ConvInput.Val;
4508 }
4509
Dan Gohman7f321562007-06-25 16:23:39 +00004510 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4511 unsigned NumElems = V->getNumOperands();
Evan Cheng917ec982006-07-21 08:25:53 +00004512 if (NumElems > BaseIdx) {
4513 SDOperand Base;
4514 bool AllSame = true;
4515 for (unsigned i = 0; i != NumElems; ++i) {
4516 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4517 Base = V->getOperand(i);
4518 break;
4519 }
4520 }
4521 // Splat of <u, u, u, u>, return <u, u, u, u>
4522 if (!Base.Val)
4523 return N0;
4524 for (unsigned i = 0; i != NumElems; ++i) {
Evan Chenge0480d22007-09-18 21:54:37 +00004525 if (V->getOperand(i) != Base) {
Evan Cheng917ec982006-07-21 08:25:53 +00004526 AllSame = false;
4527 break;
4528 }
4529 }
4530 // Splat of <x, x, x, x>, return <x, x, x, x>
4531 if (AllSame)
4532 return N0;
4533 }
4534 }
4535 }
4536
Evan Chenge7bec0d2006-07-20 22:44:41 +00004537 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4538 // into an undef.
4539 if (isUnary || N0 == N1) {
Chris Lattner17614ea2006-04-08 05:34:25 +00004540 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4541 // first operand.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004542 SmallVector<SDOperand, 8> MappedOps;
Chris Lattner17614ea2006-04-08 05:34:25 +00004543 for (unsigned i = 0; i != NumElts; ++i) {
4544 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4545 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4546 MappedOps.push_back(ShufMask.getOperand(i));
4547 } else {
4548 unsigned NewIdx =
4549 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4550 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4551 }
4552 }
Dan Gohman7f321562007-06-25 16:23:39 +00004553 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004554 &MappedOps[0], MappedOps.size());
Chris Lattner17614ea2006-04-08 05:34:25 +00004555 AddToWorkList(ShufMask.Val);
Dan Gohman7f321562007-06-25 16:23:39 +00004556 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4557 N0,
4558 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4559 ShufMask);
Chris Lattner17614ea2006-04-08 05:34:25 +00004560 }
Dan Gohman7f321562007-06-25 16:23:39 +00004561
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004562 return SDOperand();
4563}
4564
Evan Cheng44f1f092006-04-20 08:56:16 +00004565/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00004566/// an AND to a vector_shuffle with the destination vector and a zero vector.
4567/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00004568/// vector_shuffle V, Zero, <0, 4, 2, 4>
4569SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4570 SDOperand LHS = N->getOperand(0);
4571 SDOperand RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00004572 if (N->getOpcode() == ISD::AND) {
4573 if (RHS.getOpcode() == ISD::BIT_CONVERT)
Evan Cheng44f1f092006-04-20 08:56:16 +00004574 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004575 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Evan Cheng44f1f092006-04-20 08:56:16 +00004576 std::vector<SDOperand> IdxOps;
4577 unsigned NumOps = RHS.getNumOperands();
Dan Gohman7f321562007-06-25 16:23:39 +00004578 unsigned NumElts = NumOps;
4579 MVT::ValueType EVT = MVT::getVectorElementType(RHS.getValueType());
Evan Cheng44f1f092006-04-20 08:56:16 +00004580 for (unsigned i = 0; i != NumElts; ++i) {
4581 SDOperand Elt = RHS.getOperand(i);
4582 if (!isa<ConstantSDNode>(Elt))
4583 return SDOperand();
4584 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
4585 IdxOps.push_back(DAG.getConstant(i, EVT));
4586 else if (cast<ConstantSDNode>(Elt)->isNullValue())
4587 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
4588 else
4589 return SDOperand();
4590 }
4591
4592 // Let's see if the target supports this vector_shuffle.
4593 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
4594 return SDOperand();
4595
Dan Gohman7f321562007-06-25 16:23:39 +00004596 // Return the new VECTOR_SHUFFLE node.
4597 MVT::ValueType VT = MVT::getVectorType(EVT, NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00004598 std::vector<SDOperand> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004599 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
Evan Cheng44f1f092006-04-20 08:56:16 +00004600 Ops.push_back(LHS);
4601 AddToWorkList(LHS.Val);
4602 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
Dan Gohman7f321562007-06-25 16:23:39 +00004603 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004604 &ZeroOps[0], ZeroOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004605 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004606 &IdxOps[0], IdxOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004607 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004608 &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004609 if (VT != LHS.getValueType()) {
4610 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
Evan Cheng44f1f092006-04-20 08:56:16 +00004611 }
4612 return Result;
4613 }
4614 }
4615 return SDOperand();
4616}
4617
Dan Gohman7f321562007-06-25 16:23:39 +00004618/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
4619SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
4620 // After legalize, the target may be depending on adds and other
4621 // binary ops to provide legal ways to construct constants or other
4622 // things. Simplifying them may result in a loss of legality.
4623 if (AfterLegalize) return SDOperand();
4624
4625 MVT::ValueType VT = N->getValueType(0);
Dan Gohman05d92fe2007-07-13 20:03:40 +00004626 assert(MVT::isVector(VT) && "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00004627
4628 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattneredab1b92006-04-02 03:25:57 +00004629 SDOperand LHS = N->getOperand(0);
4630 SDOperand RHS = N->getOperand(1);
Evan Cheng44f1f092006-04-20 08:56:16 +00004631 SDOperand Shuffle = XformToShuffleWithZero(N);
4632 if (Shuffle.Val) return Shuffle;
4633
Dan Gohman7f321562007-06-25 16:23:39 +00004634 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00004635 // this operation.
Dan Gohman7f321562007-06-25 16:23:39 +00004636 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
4637 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004638 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004639 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Chris Lattneredab1b92006-04-02 03:25:57 +00004640 SDOperand LHSOp = LHS.getOperand(i);
4641 SDOperand RHSOp = RHS.getOperand(i);
4642 // If these two elements can't be folded, bail out.
4643 if ((LHSOp.getOpcode() != ISD::UNDEF &&
4644 LHSOp.getOpcode() != ISD::Constant &&
4645 LHSOp.getOpcode() != ISD::ConstantFP) ||
4646 (RHSOp.getOpcode() != ISD::UNDEF &&
4647 RHSOp.getOpcode() != ISD::Constant &&
4648 RHSOp.getOpcode() != ISD::ConstantFP))
4649 break;
Evan Cheng7b336a82006-05-31 06:08:35 +00004650 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00004651 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
4652 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00004653 if ((RHSOp.getOpcode() == ISD::Constant &&
4654 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
4655 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00004656 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00004657 break;
4658 }
Dan Gohman7f321562007-06-25 16:23:39 +00004659 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
Chris Lattner3e104b12006-04-08 04:15:24 +00004660 AddToWorkList(Ops.back().Val);
Chris Lattneredab1b92006-04-02 03:25:57 +00004661 assert((Ops.back().getOpcode() == ISD::UNDEF ||
4662 Ops.back().getOpcode() == ISD::Constant ||
4663 Ops.back().getOpcode() == ISD::ConstantFP) &&
4664 "Scalar binop didn't fold!");
4665 }
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004666
Dan Gohman7f321562007-06-25 16:23:39 +00004667 if (Ops.size() == LHS.getNumOperands()) {
4668 MVT::ValueType VT = LHS.getValueType();
4669 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004670 }
Chris Lattneredab1b92006-04-02 03:25:57 +00004671 }
4672
4673 return SDOperand();
4674}
4675
Nate Begeman44728a72005-09-19 22:34:01 +00004676SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00004677 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
4678
4679 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
4680 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4681 // If we got a simplified select_cc node back from SimplifySelectCC, then
4682 // break it down into a new SETCC node, and a new SELECT node, and then return
4683 // the SELECT node, since we were called with a SELECT node.
4684 if (SCC.Val) {
4685 // Check to see if we got a select_cc back (to turn into setcc/select).
4686 // Otherwise, just return whatever node we got back, like fabs.
4687 if (SCC.getOpcode() == ISD::SELECT_CC) {
4688 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
4689 SCC.getOperand(0), SCC.getOperand(1),
4690 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00004691 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004692 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
4693 SCC.getOperand(3), SETCC);
4694 }
4695 return SCC;
4696 }
Nate Begeman44728a72005-09-19 22:34:01 +00004697 return SDOperand();
4698}
4699
Chris Lattner40c62d52005-10-18 06:04:22 +00004700/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
4701/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00004702/// select. Callers of this should assume that TheSelect is deleted if this
4703/// returns true. As such, they should return the appropriate thing (e.g. the
4704/// node) back to the top-level of the DAG combiner loop to avoid it being
4705/// looked at.
Chris Lattner40c62d52005-10-18 06:04:22 +00004706///
4707bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
4708 SDOperand RHS) {
4709
4710 // If this is a select from two identical things, try to pull the operation
4711 // through the select.
4712 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
Chris Lattner40c62d52005-10-18 06:04:22 +00004713 // If this is a load and the token chain is identical, replace the select
4714 // of two loads with a load through a select of the address to load from.
4715 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
4716 // constants have been dropped into the constant pool.
Evan Cheng466685d2006-10-09 20:57:25 +00004717 if (LHS.getOpcode() == ISD::LOAD &&
Chris Lattner40c62d52005-10-18 06:04:22 +00004718 // Token chains must be identical.
Evan Cheng466685d2006-10-09 20:57:25 +00004719 LHS.getOperand(0) == RHS.getOperand(0)) {
4720 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
4721 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
4722
4723 // If this is an EXTLOAD, the VT's must match.
Evan Cheng2e49f092006-10-11 07:10:22 +00004724 if (LLD->getLoadedVT() == RLD->getLoadedVT()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004725 // FIXME: this conflates two src values, discarding one. This is not
4726 // the right thing to do, but nothing uses srcvalues now. When they do,
4727 // turn SrcValue into a list of locations.
4728 SDOperand Addr;
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004729 if (TheSelect->getOpcode() == ISD::SELECT) {
4730 // Check that the condition doesn't reach either load. If so, folding
4731 // this will induce a cycle into the DAG.
4732 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4733 !RLD->isPredecessor(TheSelect->getOperand(0).Val)) {
4734 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
4735 TheSelect->getOperand(0), LLD->getBasePtr(),
4736 RLD->getBasePtr());
4737 }
4738 } else {
4739 // Check that the condition doesn't reach either load. If so, folding
4740 // this will induce a cycle into the DAG.
4741 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4742 !RLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4743 !LLD->isPredecessor(TheSelect->getOperand(1).Val) &&
4744 !RLD->isPredecessor(TheSelect->getOperand(1).Val)) {
4745 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
Evan Cheng466685d2006-10-09 20:57:25 +00004746 TheSelect->getOperand(0),
4747 TheSelect->getOperand(1),
4748 LLD->getBasePtr(), RLD->getBasePtr(),
4749 TheSelect->getOperand(4));
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004750 }
Evan Cheng466685d2006-10-09 20:57:25 +00004751 }
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004752
4753 if (Addr.Val) {
4754 SDOperand Load;
4755 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
4756 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
4757 Addr,LLD->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004758 LLD->getSrcValueOffset(),
4759 LLD->isVolatile(),
4760 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004761 else {
4762 Load = DAG.getExtLoad(LLD->getExtensionType(),
4763 TheSelect->getValueType(0),
4764 LLD->getChain(), Addr, LLD->getSrcValue(),
4765 LLD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004766 LLD->getLoadedVT(),
4767 LLD->isVolatile(),
4768 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004769 }
4770 // Users of the select now use the result of the load.
4771 CombineTo(TheSelect, Load);
4772
4773 // Users of the old loads now use the new load's chain. We know the
4774 // old-load value is dead now.
4775 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
4776 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
4777 return true;
4778 }
Evan Chengc5484282006-10-04 00:56:09 +00004779 }
Chris Lattner40c62d52005-10-18 06:04:22 +00004780 }
4781 }
4782
4783 return false;
4784}
4785
Nate Begeman44728a72005-09-19 22:34:01 +00004786SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
4787 SDOperand N2, SDOperand N3,
Chris Lattner1eba01e2007-04-11 06:50:51 +00004788 ISD::CondCode CC, bool NotExtCompare) {
Nate Begemanf845b452005-10-08 00:29:44 +00004789
4790 MVT::ValueType VT = N2.getValueType();
Nate Begemanf845b452005-10-08 00:29:44 +00004791 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
4792 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
4793 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
4794
4795 // Determine if the condition we're dealing with is constant
4796 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00004797 if (SCC.Val) AddToWorkList(SCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004798 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
4799
4800 // fold select_cc true, x, y -> x
4801 if (SCCC && SCCC->getValue())
4802 return N2;
4803 // fold select_cc false, x, y -> y
4804 if (SCCC && SCCC->getValue() == 0)
4805 return N3;
4806
4807 // Check to see if we can simplify the select into an fabs node
4808 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
4809 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00004810 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00004811 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
4812 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
4813 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
4814 N2 == N3.getOperand(0))
4815 return DAG.getNode(ISD::FABS, VT, N0);
4816
4817 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
4818 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
4819 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
4820 N2.getOperand(0) == N3)
4821 return DAG.getNode(ISD::FABS, VT, N3);
4822 }
4823 }
4824
4825 // Check to see if we can perform the "gzip trick", transforming
4826 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
Chris Lattnere3152e52006-09-20 06:41:35 +00004827 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Nate Begemanf845b452005-10-08 00:29:44 +00004828 MVT::isInteger(N0.getValueType()) &&
Chris Lattnere3152e52006-09-20 06:41:35 +00004829 MVT::isInteger(N2.getValueType()) &&
4830 (N1C->isNullValue() || // (a < 0) ? b : 0
4831 (N1C->getValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Nate Begemanf845b452005-10-08 00:29:44 +00004832 MVT::ValueType XType = N0.getValueType();
4833 MVT::ValueType AType = N2.getValueType();
4834 if (XType >= AType) {
4835 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00004836 // single-bit constant.
Nate Begemanf845b452005-10-08 00:29:44 +00004837 if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
4838 unsigned ShCtV = Log2_64(N2C->getValue());
4839 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
4840 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
4841 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00004842 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004843 if (XType > AType) {
4844 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004845 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004846 }
4847 return DAG.getNode(ISD::AND, AType, Shift, N2);
4848 }
4849 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4850 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4851 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00004852 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004853 if (XType > AType) {
4854 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004855 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004856 }
4857 return DAG.getNode(ISD::AND, AType, Shift, N2);
4858 }
4859 }
Nate Begeman07ed4172005-10-10 21:26:48 +00004860
4861 // fold select C, 16, 0 -> shl C, 4
4862 if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
4863 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
Chris Lattner1eba01e2007-04-11 06:50:51 +00004864
4865 // If the caller doesn't want us to simplify this into a zext of a compare,
4866 // don't do it.
4867 if (NotExtCompare && N2C->getValue() == 1)
4868 return SDOperand();
4869
Nate Begeman07ed4172005-10-10 21:26:48 +00004870 // Get a SetCC of the condition
4871 // FIXME: Should probably make sure that setcc is legal if we ever have a
4872 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00004873 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00004874 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00004875 if (AfterLegalize) {
4876 SCC = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
Chris Lattner555d8d62006-12-07 22:36:47 +00004877 if (N2.getValueType() < SCC.getValueType())
4878 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
4879 else
4880 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004881 } else {
4882 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00004883 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004884 }
Chris Lattner5750df92006-03-01 04:03:14 +00004885 AddToWorkList(SCC.Val);
4886 AddToWorkList(Temp.Val);
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004887
4888 if (N2C->getValue() == 1)
4889 return Temp;
Nate Begeman07ed4172005-10-10 21:26:48 +00004890 // shl setcc result by log2 n2c
4891 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
4892 DAG.getConstant(Log2_64(N2C->getValue()),
4893 TLI.getShiftAmountTy()));
4894 }
4895
Nate Begemanf845b452005-10-08 00:29:44 +00004896 // Check to see if this is the equivalent of setcc
4897 // FIXME: Turn all of these into setcc if setcc if setcc is legal
4898 // otherwise, go ahead with the folds.
4899 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
4900 MVT::ValueType XType = N0.getValueType();
4901 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
4902 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
4903 if (Res.getValueType() != VT)
4904 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
4905 return Res;
4906 }
4907
4908 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
4909 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
4910 TLI.isOperationLegal(ISD::CTLZ, XType)) {
4911 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
4912 return DAG.getNode(ISD::SRL, XType, Ctlz,
4913 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
4914 TLI.getShiftAmountTy()));
4915 }
4916 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
4917 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
4918 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
4919 N0);
4920 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
4921 DAG.getConstant(~0ULL, XType));
4922 return DAG.getNode(ISD::SRL, XType,
4923 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
4924 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4925 TLI.getShiftAmountTy()));
4926 }
4927 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
4928 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
4929 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
4930 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4931 TLI.getShiftAmountTy()));
4932 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
4933 }
4934 }
4935
4936 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
4937 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4938 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
Chris Lattner1982ef22007-04-11 05:11:38 +00004939 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
4940 N2.getOperand(0) == N1 && MVT::isInteger(N0.getValueType())) {
4941 MVT::ValueType XType = N0.getValueType();
4942 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4943 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4944 TLI.getShiftAmountTy()));
4945 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
4946 AddToWorkList(Shift.Val);
4947 AddToWorkList(Add.Val);
4948 return DAG.getNode(ISD::XOR, XType, Add, Shift);
4949 }
4950 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
4951 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4952 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
4953 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
4954 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Nate Begemanf845b452005-10-08 00:29:44 +00004955 MVT::ValueType XType = N0.getValueType();
4956 if (SubC->isNullValue() && MVT::isInteger(XType)) {
4957 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4958 DAG.getConstant(MVT::getSizeInBits(XType)-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00004959 TLI.getShiftAmountTy()));
Nate Begemanf845b452005-10-08 00:29:44 +00004960 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004961 AddToWorkList(Shift.Val);
4962 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004963 return DAG.getNode(ISD::XOR, XType, Add, Shift);
4964 }
4965 }
4966 }
Chris Lattner1982ef22007-04-11 05:11:38 +00004967
Nate Begeman44728a72005-09-19 22:34:01 +00004968 return SDOperand();
4969}
4970
Evan Chengfa1eb272007-02-08 22:13:59 +00004971/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Nate Begeman452d7beb2005-09-16 00:54:12 +00004972SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00004973 SDOperand N1, ISD::CondCode Cond,
4974 bool foldBooleans) {
Evan Chengfa1eb272007-02-08 22:13:59 +00004975 TargetLowering::DAGCombinerInfo
4976 DagCombineInfo(DAG, !AfterLegalize, false, this);
4977 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004978}
4979
Nate Begeman69575232005-10-20 02:15:44 +00004980/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
4981/// return a DAG expression to select that will generate the same value by
4982/// multiplying by a magic number. See:
4983/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
4984SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00004985 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00004986 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
4987
Andrew Lenharth232c9102006-06-12 16:07:18 +00004988 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00004989 ii != ee; ++ii)
4990 AddToWorkList(*ii);
4991 return S;
Nate Begeman69575232005-10-20 02:15:44 +00004992}
4993
4994/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
4995/// return a DAG expression to select that will generate the same value by
4996/// multiplying by a magic number. See:
4997/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
4998SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00004999 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005000 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00005001
Andrew Lenharth232c9102006-06-12 16:07:18 +00005002 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005003 ii != ee; ++ii)
5004 AddToWorkList(*ii);
5005 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005006}
5007
Jim Laskey71382342006-10-07 23:37:56 +00005008/// FindBaseOffset - Return true if base is known not to alias with anything
5009/// but itself. Provides base object and offset as results.
5010static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5011 // Assume it is a primitive operation.
5012 Base = Ptr; Offset = 0;
5013
5014 // If it's an adding a simple constant then integrate the offset.
5015 if (Base.getOpcode() == ISD::ADD) {
5016 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5017 Base = Base.getOperand(0);
5018 Offset += C->getValue();
5019 }
5020 }
5021
5022 // If it's any of the following then it can't alias with anything but itself.
5023 return isa<FrameIndexSDNode>(Base) ||
5024 isa<ConstantPoolSDNode>(Base) ||
5025 isa<GlobalAddressSDNode>(Base);
5026}
5027
5028/// isAlias - Return true if there is any possibility that the two addresses
5029/// overlap.
Jim Laskey096c22e2006-10-18 12:29:57 +00005030bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5031 const Value *SrcValue1, int SrcValueOffset1,
5032 SDOperand Ptr2, int64_t Size2,
5033 const Value *SrcValue2, int SrcValueOffset2)
5034{
Jim Laskey71382342006-10-07 23:37:56 +00005035 // If they are the same then they must be aliases.
5036 if (Ptr1 == Ptr2) return true;
5037
5038 // Gather base node and offset information.
5039 SDOperand Base1, Base2;
5040 int64_t Offset1, Offset2;
5041 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5042 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5043
5044 // If they have a same base address then...
5045 if (Base1 == Base2) {
5046 // Check to see if the addresses overlap.
5047 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5048 }
5049
Jim Laskey096c22e2006-10-18 12:29:57 +00005050 // If we know both bases then they can't alias.
5051 if (KnownBase1 && KnownBase2) return false;
5052
Jim Laskey07a27092006-10-18 19:08:31 +00005053 if (CombinerGlobalAA) {
5054 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00005055 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5056 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5057 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Jim Laskey07a27092006-10-18 19:08:31 +00005058 AliasAnalysis::AliasResult AAResult =
Jim Laskey096c22e2006-10-18 12:29:57 +00005059 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
Jim Laskey07a27092006-10-18 19:08:31 +00005060 if (AAResult == AliasAnalysis::NoAlias)
5061 return false;
5062 }
Jim Laskey096c22e2006-10-18 12:29:57 +00005063
5064 // Otherwise we have to assume they alias.
5065 return true;
Jim Laskey71382342006-10-07 23:37:56 +00005066}
5067
5068/// FindAliasInfo - Extracts the relevant alias information from the memory
5069/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00005070bool DAGCombiner::FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +00005071 SDOperand &Ptr, int64_t &Size,
5072 const Value *&SrcValue, int &SrcValueOffset) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005073 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5074 Ptr = LD->getBasePtr();
Jim Laskeyc2b19f32006-10-11 17:47:52 +00005075 Size = MVT::getSizeInBits(LD->getLoadedVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005076 SrcValue = LD->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005077 SrcValueOffset = LD->getSrcValueOffset();
Jim Laskey71382342006-10-07 23:37:56 +00005078 return true;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005079 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005080 Ptr = ST->getBasePtr();
Evan Cheng8b2794a2006-10-13 21:14:26 +00005081 Size = MVT::getSizeInBits(ST->getStoredVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005082 SrcValue = ST->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005083 SrcValueOffset = ST->getSrcValueOffset();
Jim Laskey7ca56af2006-10-11 13:47:09 +00005084 } else {
Jim Laskey71382342006-10-07 23:37:56 +00005085 assert(0 && "FindAliasInfo expected a memory operand");
Jim Laskey71382342006-10-07 23:37:56 +00005086 }
5087
5088 return false;
5089}
5090
Jim Laskey6ff23e52006-10-04 16:53:27 +00005091/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5092/// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +00005093void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +00005094 SmallVector<SDOperand, 8> &Aliases) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005095 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
Jim Laskey6ff23e52006-10-04 16:53:27 +00005096 std::set<SDNode *> Visited; // Visited node set.
5097
Jim Laskey279f0532006-09-25 16:29:54 +00005098 // Get alias information for node.
5099 SDOperand Ptr;
5100 int64_t Size;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005101 const Value *SrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005102 int SrcValueOffset;
5103 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
Jim Laskey279f0532006-09-25 16:29:54 +00005104
Jim Laskey6ff23e52006-10-04 16:53:27 +00005105 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00005106 Chains.push_back(OriginalChain);
Jim Laskey6ff23e52006-10-04 16:53:27 +00005107
Jim Laskeybc588b82006-10-05 15:07:25 +00005108 // Look at each chain and determine if it is an alias. If so, add it to the
5109 // aliases list. If not, then continue up the chain looking for the next
5110 // candidate.
5111 while (!Chains.empty()) {
5112 SDOperand Chain = Chains.back();
5113 Chains.pop_back();
Jim Laskey6ff23e52006-10-04 16:53:27 +00005114
Jim Laskeybc588b82006-10-05 15:07:25 +00005115 // Don't bother if we've been before.
5116 if (Visited.find(Chain.Val) != Visited.end()) continue;
5117 Visited.insert(Chain.Val);
5118
5119 switch (Chain.getOpcode()) {
5120 case ISD::EntryToken:
5121 // Entry token is ideal chain operand, but handled in FindBetterChain.
5122 break;
Jim Laskey6ff23e52006-10-04 16:53:27 +00005123
Jim Laskeybc588b82006-10-05 15:07:25 +00005124 case ISD::LOAD:
5125 case ISD::STORE: {
5126 // Get alias information for Chain.
5127 SDOperand OpPtr;
5128 int64_t OpSize;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005129 const Value *OpSrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005130 int OpSrcValueOffset;
5131 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5132 OpSrcValue, OpSrcValueOffset);
Jim Laskeybc588b82006-10-05 15:07:25 +00005133
5134 // If chain is alias then stop here.
5135 if (!(IsLoad && IsOpLoad) &&
Jim Laskey096c22e2006-10-18 12:29:57 +00005136 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5137 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005138 Aliases.push_back(Chain);
5139 } else {
5140 // Look further up the chain.
5141 Chains.push_back(Chain.getOperand(0));
5142 // Clean up old chain.
5143 AddToWorkList(Chain.Val);
Jim Laskey279f0532006-09-25 16:29:54 +00005144 }
Jim Laskeybc588b82006-10-05 15:07:25 +00005145 break;
5146 }
5147
5148 case ISD::TokenFactor:
5149 // We have to check each of the operands of the token factor, so we queue
5150 // then up. Adding the operands to the queue (stack) in reverse order
5151 // maintains the original order and increases the likelihood that getNode
5152 // will find a matching token factor (CSE.)
5153 for (unsigned n = Chain.getNumOperands(); n;)
5154 Chains.push_back(Chain.getOperand(--n));
5155 // Eliminate the token factor if we can.
5156 AddToWorkList(Chain.Val);
5157 break;
5158
5159 default:
5160 // For all other instructions we will just have to take what we can get.
5161 Aliases.push_back(Chain);
5162 break;
Jim Laskey279f0532006-09-25 16:29:54 +00005163 }
5164 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00005165}
5166
5167/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5168/// for a better chain (aliasing node.)
5169SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5170 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00005171
Jim Laskey6ff23e52006-10-04 16:53:27 +00005172 // Accumulate all the aliases to this node.
5173 GatherAllAliases(N, OldChain, Aliases);
5174
5175 if (Aliases.size() == 0) {
5176 // If no operands then chain to entry token.
5177 return DAG.getEntryNode();
5178 } else if (Aliases.size() == 1) {
5179 // If a single operand then chain to it. We don't need to revisit it.
5180 return Aliases[0];
5181 }
5182
5183 // Construct a custom tailored token factor.
5184 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5185 &Aliases[0], Aliases.size());
5186
5187 // Make sure the old chain gets cleaned up.
5188 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5189
5190 return NewChain;
Jim Laskey279f0532006-09-25 16:29:54 +00005191}
5192
Nate Begeman1d4d4142005-09-01 00:19:25 +00005193// SelectionDAG::Combine - This is the entry point for the file.
5194//
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005195void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
Chris Lattner938ab022007-01-16 04:55:25 +00005196 if (!RunningAfterLegalize && ViewDAGCombine1)
5197 viewGraph();
5198 if (RunningAfterLegalize && ViewDAGCombine2)
5199 viewGraph();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005200 /// run - This is the main entry point to this class.
5201 ///
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005202 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005203}