blob: 6ce29fb89fbafcb416a0cc2ad1996040e1b47394 [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 }
Chris Lattner0bd48932008-01-17 07:00:52 +0000138
Chris Lattner24664722006-03-01 04:53:38 +0000139 private:
140
Chris Lattner012f2412006-02-17 21:58:01 +0000141 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000142 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000143 /// propagation. If so, return true.
Chris Lattnere33544c2007-10-13 06:58:48 +0000144 bool SimplifyDemandedBits(SDOperand Op, uint64_t Demanded = ~0ULL) {
Chris Lattnerb16f55f2007-12-22 20:56:36 +0000145 TargetLowering::TargetLoweringOpt TLO(DAG, AfterLegalize);
Nate Begeman368e18d2006-02-16 21:11:51 +0000146 uint64_t KnownZero, KnownOne;
Chris Lattnere33544c2007-10-13 06:58:48 +0000147 Demanded &= MVT::getIntVTBitMask(Op.getValueType());
Chris Lattner012f2412006-02-17 21:58:01 +0000148 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
149 return false;
150
151 // Revisit the node.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000152 AddToWorkList(Op.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000153
154 // Replace the old value with the new one.
155 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000156 DOUT << "\nReplacing.2 "; DEBUG(TLO.Old.Val->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000157 DOUT << "\nWith: "; DEBUG(TLO.New.Val->dump(&DAG));
158 DOUT << '\n';
Chris Lattner012f2412006-02-17 21:58:01 +0000159
160 std::vector<SDNode*> NowDead;
Chris Lattner01d029b2007-10-15 06:10:22 +0000161 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &NowDead);
Chris Lattner012f2412006-02-17 21:58:01 +0000162
Chris Lattner7d20d392006-02-20 06:51:04 +0000163 // Push the new node and any (possibly new) users onto the worklist.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000164 AddToWorkList(TLO.New.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000165 AddUsersToWorkList(TLO.New.Val);
166
167 // Nodes can end up on the worklist more than once. Make sure we do
168 // not process a node that has been replaced.
Chris Lattner012f2412006-02-17 21:58:01 +0000169 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
170 removeFromWorkList(NowDead[i]);
171
Chris Lattner7d20d392006-02-20 06:51:04 +0000172 // Finally, if the node is now dead, remove it from the graph. The node
173 // may not be dead if the replacement process recursively simplified to
174 // something else needing this node.
175 if (TLO.Old.Val->use_empty()) {
176 removeFromWorkList(TLO.Old.Val);
Chris Lattnerec06e9a2007-04-18 03:05:22 +0000177
178 // If the operands of this node are only used by the node, they will now
179 // be dead. Make sure to visit them first to delete dead nodes early.
180 for (unsigned i = 0, e = TLO.Old.Val->getNumOperands(); i != e; ++i)
181 if (TLO.Old.Val->getOperand(i).Val->hasOneUse())
182 AddToWorkList(TLO.Old.Val->getOperand(i).Val);
183
Chris Lattner7d20d392006-02-20 06:51:04 +0000184 DAG.DeleteNode(TLO.Old.Val);
185 }
Chris Lattner012f2412006-02-17 21:58:01 +0000186 return true;
Nate Begeman368e18d2006-02-16 21:11:51 +0000187 }
Chris Lattner87514ca2005-10-10 22:31:19 +0000188
Chris Lattner448f2192006-11-11 00:39:41 +0000189 bool CombineToPreIndexedLoadStore(SDNode *N);
190 bool CombineToPostIndexedLoadStore(SDNode *N);
191
192
Dan Gohman389079b2007-10-08 17:57:15 +0000193 /// combine - call the node-specific routine that knows how to fold each
194 /// particular type of node. If that doesn't do anything, try the
195 /// target-specific DAG combines.
196 SDOperand combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000197
198 // Visitation implementation - Implement dag node combining for different
199 // node types. The semantics are as follows:
200 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000201 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000202 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000203 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000204 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000205 SDOperand visitTokenFactor(SDNode *N);
206 SDOperand visitADD(SDNode *N);
207 SDOperand visitSUB(SDNode *N);
Chris Lattner91153682007-03-04 20:03:15 +0000208 SDOperand visitADDC(SDNode *N);
209 SDOperand visitADDE(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000210 SDOperand visitMUL(SDNode *N);
211 SDOperand visitSDIV(SDNode *N);
212 SDOperand visitUDIV(SDNode *N);
213 SDOperand visitSREM(SDNode *N);
214 SDOperand visitUREM(SDNode *N);
215 SDOperand visitMULHU(SDNode *N);
216 SDOperand visitMULHS(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000217 SDOperand visitSMUL_LOHI(SDNode *N);
218 SDOperand visitUMUL_LOHI(SDNode *N);
219 SDOperand visitSDIVREM(SDNode *N);
220 SDOperand visitUDIVREM(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000221 SDOperand visitAND(SDNode *N);
222 SDOperand visitOR(SDNode *N);
223 SDOperand visitXOR(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000224 SDOperand SimplifyVBinOp(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000225 SDOperand visitSHL(SDNode *N);
226 SDOperand visitSRA(SDNode *N);
227 SDOperand visitSRL(SDNode *N);
228 SDOperand visitCTLZ(SDNode *N);
229 SDOperand visitCTTZ(SDNode *N);
230 SDOperand visitCTPOP(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000231 SDOperand visitSELECT(SDNode *N);
232 SDOperand visitSELECT_CC(SDNode *N);
233 SDOperand visitSETCC(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000234 SDOperand visitSIGN_EXTEND(SDNode *N);
235 SDOperand visitZERO_EXTEND(SDNode *N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000236 SDOperand visitANY_EXTEND(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000237 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
238 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000239 SDOperand visitBIT_CONVERT(SDNode *N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000240 SDOperand visitFADD(SDNode *N);
241 SDOperand visitFSUB(SDNode *N);
242 SDOperand visitFMUL(SDNode *N);
243 SDOperand visitFDIV(SDNode *N);
244 SDOperand visitFREM(SDNode *N);
Chris Lattner12d83032006-03-05 05:30:57 +0000245 SDOperand visitFCOPYSIGN(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000246 SDOperand visitSINT_TO_FP(SDNode *N);
247 SDOperand visitUINT_TO_FP(SDNode *N);
248 SDOperand visitFP_TO_SINT(SDNode *N);
249 SDOperand visitFP_TO_UINT(SDNode *N);
250 SDOperand visitFP_ROUND(SDNode *N);
251 SDOperand visitFP_ROUND_INREG(SDNode *N);
252 SDOperand visitFP_EXTEND(SDNode *N);
253 SDOperand visitFNEG(SDNode *N);
254 SDOperand visitFABS(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000255 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000256 SDOperand visitBR_CC(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000257 SDOperand visitLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000258 SDOperand visitSTORE(SDNode *N);
Chris Lattnerca242442006-03-19 01:27:56 +0000259 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
Evan Cheng513da432007-10-06 08:19:55 +0000260 SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000261 SDOperand visitBUILD_VECTOR(SDNode *N);
262 SDOperand visitCONCAT_VECTORS(SDNode *N);
Chris Lattner66445d32006-03-28 22:11:53 +0000263 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000264
Evan Cheng44f1f092006-04-20 08:56:16 +0000265 SDOperand XformToShuffleWithZero(SDNode *N);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000266 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
267
Chris Lattnere70da202007-12-06 07:33:36 +0000268 SDOperand visitShiftByConstant(SDNode *N, unsigned Amt);
269
Chris Lattner40c62d52005-10-18 06:04:22 +0000270 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Chris Lattner35e5c142006-05-05 05:51:50 +0000271 SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000272 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
273 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
Chris Lattner1eba01e2007-04-11 06:50:51 +0000274 SDOperand N3, ISD::CondCode CC,
275 bool NotExtCompare = false);
Nate Begeman452d7be2005-09-16 00:54:12 +0000276 SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000277 ISD::CondCode Cond, bool foldBooleans = true);
Dan Gohman389079b2007-10-08 17:57:15 +0000278 bool SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, unsigned HiOp);
Dan Gohman7f321562007-06-25 16:23:39 +0000279 SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT::ValueType);
Nate Begeman69575232005-10-20 02:15:44 +0000280 SDOperand BuildSDIV(SDNode *N);
Chris Lattner516b9622006-09-14 20:50:57 +0000281 SDOperand BuildUDIV(SDNode *N);
282 SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
Evan Chengc88138f2007-03-22 01:54:19 +0000283 SDOperand ReduceLoadWidth(SDNode *N);
Jim Laskey279f0532006-09-25 16:29:54 +0000284
Chris Lattner2b4c2792007-10-13 06:35:54 +0000285 SDOperand GetDemandedBits(SDOperand V, uint64_t Mask);
286
Jim Laskey6ff23e52006-10-04 16:53:27 +0000287 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
288 /// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +0000289 void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000290 SmallVector<SDOperand, 8> &Aliases);
291
Jim Laskey096c22e2006-10-18 12:29:57 +0000292 /// isAlias - Return true if there is any possibility that the two addresses
293 /// overlap.
294 bool isAlias(SDOperand Ptr1, int64_t Size1,
295 const Value *SrcValue1, int SrcValueOffset1,
296 SDOperand Ptr2, int64_t Size2,
Jeff Cohend41b30d2006-11-05 19:31:28 +0000297 const Value *SrcValue2, int SrcValueOffset2);
Jim Laskey096c22e2006-10-18 12:29:57 +0000298
Jim Laskey7ca56af2006-10-11 13:47:09 +0000299 /// FindAliasInfo - Extracts the relevant alias information from the memory
300 /// node. Returns true if the operand was a load.
301 bool FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +0000302 SDOperand &Ptr, int64_t &Size,
303 const Value *&SrcValue, int &SrcValueOffset);
Jim Laskey7ca56af2006-10-11 13:47:09 +0000304
Jim Laskey279f0532006-09-25 16:29:54 +0000305 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000306 /// looking for a better chain (aliasing node.)
Jim Laskey279f0532006-09-25 16:29:54 +0000307 SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
308
Nate Begeman1d4d4142005-09-01 00:19:25 +0000309public:
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000310 DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
311 : DAG(D),
312 TLI(D.getTargetLoweringInfo()),
313 AfterLegalize(false),
314 AA(A) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000315
316 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000317 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000318 };
319}
320
Chris Lattner24664722006-03-01 04:53:38 +0000321//===----------------------------------------------------------------------===//
322// TargetLowering::DAGCombinerInfo implementation
323//===----------------------------------------------------------------------===//
324
325void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
326 ((DAGCombiner*)DC)->AddToWorkList(N);
327}
328
329SDOperand TargetLowering::DAGCombinerInfo::
330CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
Chris Lattner3577e382006-08-11 17:56:38 +0000331 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
Chris Lattner24664722006-03-01 04:53:38 +0000332}
333
334SDOperand TargetLowering::DAGCombinerInfo::
335CombineTo(SDNode *N, SDOperand Res) {
336 return ((DAGCombiner*)DC)->CombineTo(N, Res);
337}
338
339
340SDOperand TargetLowering::DAGCombinerInfo::
341CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
342 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
343}
344
345
Chris Lattner24664722006-03-01 04:53:38 +0000346//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000347// Helper Functions
348//===----------------------------------------------------------------------===//
349
350/// isNegatibleForFree - Return 1 if we can compute the negated form of the
351/// specified expression for the same cost as the expression itself, or 2 if we
352/// can compute the negated form more cheaply than the expression itself.
Chris Lattner501fee72007-05-23 07:35:22 +0000353static char isNegatibleForFree(SDOperand Op, unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000354 // No compile time optimizations on this type.
355 if (Op.getValueType() == MVT::ppcf128)
356 return 0;
357
Chris Lattner29446522007-05-14 22:04:50 +0000358 // fneg is removable even if it has multiple uses.
359 if (Op.getOpcode() == ISD::FNEG) return 2;
360
361 // Don't allow anything with multiple uses.
362 if (!Op.hasOneUse()) return 0;
363
Chris Lattner3adf9512007-05-25 02:19:06 +0000364 // Don't recurse exponentially.
365 if (Depth > 6) return 0;
366
Chris Lattner29446522007-05-14 22:04:50 +0000367 switch (Op.getOpcode()) {
368 default: return false;
369 case ISD::ConstantFP:
370 return 1;
371 case ISD::FADD:
372 // FIXME: determine better conditions for this xform.
373 if (!UnsafeFPMath) return 0;
374
375 // -(A+B) -> -A - B
Chris Lattner501fee72007-05-23 07:35:22 +0000376 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000377 return V;
378 // -(A+B) -> -B - A
Chris Lattner501fee72007-05-23 07:35:22 +0000379 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000380 case ISD::FSUB:
381 // We can't turn -(A-B) into B-A when we honor signed zeros.
382 if (!UnsafeFPMath) return 0;
383
384 // -(A-B) -> B-A
385 return 1;
386
387 case ISD::FMUL:
388 case ISD::FDIV:
389 if (HonorSignDependentRoundingFPMath()) return 0;
390
391 // -(X*Y) -> (-X * Y) or (X*-Y)
Chris Lattner501fee72007-05-23 07:35:22 +0000392 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000393 return V;
394
Chris Lattner501fee72007-05-23 07:35:22 +0000395 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000396
397 case ISD::FP_EXTEND:
398 case ISD::FP_ROUND:
399 case ISD::FSIN:
Chris Lattner501fee72007-05-23 07:35:22 +0000400 return isNegatibleForFree(Op.getOperand(0), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000401 }
402}
403
404/// GetNegatedExpression - If isNegatibleForFree returns true, this function
405/// returns the newly negated expression.
Chris Lattner3adf9512007-05-25 02:19:06 +0000406static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
407 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000408 // fneg is removable even if it has multiple uses.
409 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
410
411 // Don't allow anything with multiple uses.
412 assert(Op.hasOneUse() && "Unknown reuse!");
413
Chris Lattner3adf9512007-05-25 02:19:06 +0000414 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000415 switch (Op.getOpcode()) {
416 default: assert(0 && "Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000417 case ISD::ConstantFP: {
418 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
419 V.changeSign();
420 return DAG.getConstantFP(V, Op.getValueType());
421 }
Chris Lattner29446522007-05-14 22:04:50 +0000422 case ISD::FADD:
423 // FIXME: determine better conditions for this xform.
424 assert(UnsafeFPMath);
425
426 // -(A+B) -> -A - B
Chris Lattner3adf9512007-05-25 02:19:06 +0000427 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000428 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000429 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000430 Op.getOperand(1));
431 // -(A+B) -> -B - A
432 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000433 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000434 Op.getOperand(0));
435 case ISD::FSUB:
436 // We can't turn -(A-B) into B-A when we honor signed zeros.
437 assert(UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000438
439 // -(0-B) -> B
440 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000441 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000442 return Op.getOperand(1);
Chris Lattner29446522007-05-14 22:04:50 +0000443
444 // -(A-B) -> B-A
445 return DAG.getNode(ISD::FSUB, Op.getValueType(), Op.getOperand(1),
446 Op.getOperand(0));
447
448 case ISD::FMUL:
449 case ISD::FDIV:
450 assert(!HonorSignDependentRoundingFPMath());
451
452 // -(X*Y) -> -X * Y
Chris Lattner3adf9512007-05-25 02:19:06 +0000453 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000454 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000455 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000456 Op.getOperand(1));
457
458 // -(X*Y) -> X * -Y
459 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
460 Op.getOperand(0),
Chris Lattner3adf9512007-05-25 02:19:06 +0000461 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000462
463 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000464 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 Lattner0bd48932008-01-17 07:00:52 +0000467 case ISD::FP_ROUND:
468 return DAG.getNode(ISD::FP_ROUND, Op.getValueType(),
469 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
470 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000471 }
472}
Chris Lattner24664722006-03-01 04:53:38 +0000473
474
Nate Begeman4ebd8052005-09-01 23:24:04 +0000475// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
476// that selects between the values 1 and 0, making it equivalent to a setcc.
Nate Begeman646d7e22005-09-02 21:18:40 +0000477// Also, set the incoming LHS, RHS, and CC references to the appropriate
478// nodes based on the type of node we are checking. This simplifies life a
479// bit for the callers.
480static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
481 SDOperand &CC) {
482 if (N.getOpcode() == ISD::SETCC) {
483 LHS = N.getOperand(0);
484 RHS = N.getOperand(1);
485 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000486 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000487 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000488 if (N.getOpcode() == ISD::SELECT_CC &&
489 N.getOperand(2).getOpcode() == ISD::Constant &&
490 N.getOperand(3).getOpcode() == ISD::Constant &&
491 cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000492 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
493 LHS = N.getOperand(0);
494 RHS = N.getOperand(1);
495 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000496 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000497 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000498 return false;
499}
500
Nate Begeman99801192005-09-07 23:25:52 +0000501// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
502// one use. If this is true, it allows the users to invert the operation for
503// free when it is profitable to do so.
504static bool isOneUseSetCC(SDOperand N) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000505 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000506 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000507 return true;
508 return false;
509}
510
Nate Begemancd4d58c2006-02-03 06:46:56 +0000511SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
512 MVT::ValueType VT = N0.getValueType();
513 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
514 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
515 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
516 if (isa<ConstantSDNode>(N1)) {
517 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), 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(0));
520 } else if (N0.hasOneUse()) {
521 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000522 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000523 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
524 }
525 }
526 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
527 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
528 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
529 if (isa<ConstantSDNode>(N0)) {
530 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), 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(0));
533 } else if (N1.hasOneUse()) {
534 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000535 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000536 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
537 }
538 }
539 return SDOperand();
540}
541
Chris Lattner29446522007-05-14 22:04:50 +0000542//===----------------------------------------------------------------------===//
543// Main DAG Combiner implementation
544//===----------------------------------------------------------------------===//
545
Nate Begeman4ebd8052005-09-01 23:24:04 +0000546void DAGCombiner::Run(bool RunningAfterLegalize) {
547 // set the instance variable, so that the various visit routines may use it.
548 AfterLegalize = RunningAfterLegalize;
549
Nate Begeman646d7e22005-09-02 21:18:40 +0000550 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000551 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
552 E = DAG.allnodes_end(); I != E; ++I)
553 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000554
Chris Lattner95038592005-10-05 06:35:28 +0000555 // Create a dummy node (which is not added to allnodes), that adds a reference
556 // to the root node, preventing it from being deleted, and tracking any
557 // changes of the root.
558 HandleSDNode Dummy(DAG.getRoot());
559
Jim Laskey26f7fa72006-10-17 19:33:52 +0000560 // The root of the dag may dangle to deleted nodes until the dag combiner is
561 // done. Set it to null to avoid confusion.
562 DAG.setRoot(SDOperand());
Chris Lattner24664722006-03-01 04:53:38 +0000563
Nate Begeman1d4d4142005-09-01 00:19:25 +0000564 // while the worklist isn't empty, inspect the node on the end of it and
565 // try and combine it.
566 while (!WorkList.empty()) {
567 SDNode *N = WorkList.back();
568 WorkList.pop_back();
569
570 // If N has no uses, it is dead. Make sure to revisit all N's operands once
Chris Lattner95038592005-10-05 06:35:28 +0000571 // N is deleted from the DAG, since they too may now be dead or may have a
572 // reduced number of uses, allowing other xforms.
573 if (N->use_empty() && N != &Dummy) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000574 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jim Laskey6ff23e52006-10-04 16:53:27 +0000575 AddToWorkList(N->getOperand(i).Val);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000576
Chris Lattner95038592005-10-05 06:35:28 +0000577 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000578 continue;
579 }
580
Dan Gohman389079b2007-10-08 17:57:15 +0000581 SDOperand RV = combine(N);
Chris Lattner24664722006-03-01 04:53:38 +0000582
Nate Begeman83e75ec2005-09-06 04:43:02 +0000583 if (RV.Val) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000584 ++NodesCombined;
Nate Begeman646d7e22005-09-02 21:18:40 +0000585 // If we get back the same node we passed in, rather than a new node or
586 // zero, we know that the node must have defined multiple values and
587 // CombineTo was used. Since CombineTo takes care of the worklist
588 // mechanics for us, we have no work to do in this case.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000589 if (RV.Val != N) {
Chris Lattner729c6d12006-05-27 00:43:02 +0000590 assert(N->getOpcode() != ISD::DELETED_NODE &&
591 RV.Val->getOpcode() != ISD::DELETED_NODE &&
592 "Node was deleted but visit returned new node!");
593
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000594 DOUT << "\nReplacing.3 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000595 DOUT << "\nWith: "; DEBUG(RV.Val->dump(&DAG));
596 DOUT << '\n';
Chris Lattner01a22022005-10-10 22:04:48 +0000597 std::vector<SDNode*> NowDead;
Evan Cheng2adffa12006-09-21 19:04:05 +0000598 if (N->getNumValues() == RV.Val->getNumValues())
599 DAG.ReplaceAllUsesWith(N, RV.Val, &NowDead);
600 else {
601 assert(N->getValueType(0) == RV.getValueType() && "Type mismatch");
602 SDOperand OpV = RV;
603 DAG.ReplaceAllUsesWith(N, &OpV, &NowDead);
604 }
Nate Begeman646d7e22005-09-02 21:18:40 +0000605
606 // Push the new node and any users onto the worklist
Jim Laskey6ff23e52006-10-04 16:53:27 +0000607 AddToWorkList(RV.Val);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000608 AddUsersToWorkList(RV.Val);
Chris Lattner20e3d862008-01-24 07:18:21 +0000609
610 // Add any uses of the old node to the worklist if they have a single
611 // use. They may be dead after this node is deleted.
612 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
613 AddToWorkList(N->getOperand(i).Val);
Nate Begeman646d7e22005-09-02 21:18:40 +0000614
Jim Laskey6ff23e52006-10-04 16:53:27 +0000615 // Nodes can be reintroduced into the worklist. Make sure we do not
616 // process a node that has been replaced.
Nate Begeman646d7e22005-09-02 21:18:40 +0000617 removeFromWorkList(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000618 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
619 removeFromWorkList(NowDead[i]);
Chris Lattner5c46f742005-10-05 06:11:08 +0000620
621 // Finally, since the node is now dead, remove it from the graph.
622 DAG.DeleteNode(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000623 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000624 }
625 }
Chris Lattner95038592005-10-05 06:35:28 +0000626
627 // If the root changed (e.g. it was a dead load, update the root).
628 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000629}
630
Nate Begeman83e75ec2005-09-06 04:43:02 +0000631SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000632 switch(N->getOpcode()) {
633 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000634 case ISD::TokenFactor: return visitTokenFactor(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000635 case ISD::ADD: return visitADD(N);
636 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +0000637 case ISD::ADDC: return visitADDC(N);
638 case ISD::ADDE: return visitADDE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000639 case ISD::MUL: return visitMUL(N);
640 case ISD::SDIV: return visitSDIV(N);
641 case ISD::UDIV: return visitUDIV(N);
642 case ISD::SREM: return visitSREM(N);
643 case ISD::UREM: return visitUREM(N);
644 case ISD::MULHU: return visitMULHU(N);
645 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +0000646 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
647 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
648 case ISD::SDIVREM: return visitSDIVREM(N);
649 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000650 case ISD::AND: return visitAND(N);
651 case ISD::OR: return visitOR(N);
652 case ISD::XOR: return visitXOR(N);
653 case ISD::SHL: return visitSHL(N);
654 case ISD::SRA: return visitSRA(N);
655 case ISD::SRL: return visitSRL(N);
656 case ISD::CTLZ: return visitCTLZ(N);
657 case ISD::CTTZ: return visitCTTZ(N);
658 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000659 case ISD::SELECT: return visitSELECT(N);
660 case ISD::SELECT_CC: return visitSELECT_CC(N);
661 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000662 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
663 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000664 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000665 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
666 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000667 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000668 case ISD::FADD: return visitFADD(N);
669 case ISD::FSUB: return visitFSUB(N);
670 case ISD::FMUL: return visitFMUL(N);
671 case ISD::FDIV: return visitFDIV(N);
672 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +0000673 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000674 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
675 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
676 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
677 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
678 case ISD::FP_ROUND: return visitFP_ROUND(N);
679 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
680 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
681 case ISD::FNEG: return visitFNEG(N);
682 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000683 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000684 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000685 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000686 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +0000687 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +0000688 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +0000689 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
690 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Chris Lattner66445d32006-03-28 22:11:53 +0000691 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000692 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000693 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000694}
695
Dan Gohman389079b2007-10-08 17:57:15 +0000696SDOperand DAGCombiner::combine(SDNode *N) {
697
698 SDOperand RV = visit(N);
699
700 // If nothing happened, try a target-specific DAG combine.
701 if (RV.Val == 0) {
702 assert(N->getOpcode() != ISD::DELETED_NODE &&
703 "Node was deleted but visit returned NULL!");
704
705 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
706 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
707
708 // Expose the DAG combiner to the target combiner impls.
709 TargetLowering::DAGCombinerInfo
710 DagCombineInfo(DAG, !AfterLegalize, false, this);
711
712 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
713 }
714 }
715
716 return RV;
717}
718
Chris Lattner6270f682006-10-08 22:57:01 +0000719/// getInputChainForNode - Given a node, return its input chain if it has one,
720/// otherwise return a null sd operand.
721static SDOperand getInputChainForNode(SDNode *N) {
722 if (unsigned NumOps = N->getNumOperands()) {
723 if (N->getOperand(0).getValueType() == MVT::Other)
724 return N->getOperand(0);
725 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
726 return N->getOperand(NumOps-1);
727 for (unsigned i = 1; i < NumOps-1; ++i)
728 if (N->getOperand(i).getValueType() == MVT::Other)
729 return N->getOperand(i);
730 }
731 return SDOperand(0, 0);
732}
733
Nate Begeman83e75ec2005-09-06 04:43:02 +0000734SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +0000735 // If N has two operands, where one has an input chain equal to the other,
736 // the 'other' chain is redundant.
737 if (N->getNumOperands() == 2) {
738 if (getInputChainForNode(N->getOperand(0).Val) == N->getOperand(1))
739 return N->getOperand(0);
740 if (getInputChainForNode(N->getOperand(1).Val) == N->getOperand(0))
741 return N->getOperand(1);
742 }
743
Chris Lattnerc76d4412007-05-16 06:37:59 +0000744 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
745 SmallVector<SDOperand, 8> Ops; // Ops for replacing token factor.
746 SmallPtrSet<SDNode*, 16> SeenOps;
747 bool Changed = false; // If we should replace this token factor.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000748
749 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +0000750 TFs.push_back(N);
Jim Laskey279f0532006-09-25 16:29:54 +0000751
Jim Laskey71382342006-10-07 23:37:56 +0000752 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +0000753 // encountered.
754 for (unsigned i = 0; i < TFs.size(); ++i) {
755 SDNode *TF = TFs[i];
756
Jim Laskey6ff23e52006-10-04 16:53:27 +0000757 // Check each of the operands.
758 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
759 SDOperand Op = TF->getOperand(i);
Jim Laskey279f0532006-09-25 16:29:54 +0000760
Jim Laskey6ff23e52006-10-04 16:53:27 +0000761 switch (Op.getOpcode()) {
762 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +0000763 // Entry tokens don't need to be added to the list. They are
764 // rededundant.
765 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000766 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000767
Jim Laskey6ff23e52006-10-04 16:53:27 +0000768 case ISD::TokenFactor:
Jim Laskeybc588b82006-10-05 15:07:25 +0000769 if ((CombinerAA || Op.hasOneUse()) &&
770 std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000771 // Queue up for processing.
772 TFs.push_back(Op.Val);
773 // Clean up in case the token factor is removed.
774 AddToWorkList(Op.Val);
775 Changed = true;
776 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000777 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000778 // Fall thru
779
780 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +0000781 // Only add if it isn't already in the list.
782 if (SeenOps.insert(Op.Val))
Jim Laskeybc588b82006-10-05 15:07:25 +0000783 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +0000784 else
785 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000786 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000787 }
788 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000789 }
790
791 SDOperand Result;
792
793 // If we've change things around then replace token factor.
794 if (Changed) {
795 if (Ops.size() == 0) {
796 // The entry token is the only possible outcome.
797 Result = DAG.getEntryNode();
798 } else {
799 // New and improved token factor.
800 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +0000801 }
Jim Laskey274062c2006-10-13 23:32:28 +0000802
803 // Don't add users to work list.
804 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +0000805 }
Jim Laskey279f0532006-09-25 16:29:54 +0000806
Jim Laskey6ff23e52006-10-04 16:53:27 +0000807 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000808}
809
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000810static
811SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
812 MVT::ValueType VT = N0.getValueType();
813 SDOperand N00 = N0.getOperand(0);
814 SDOperand N01 = N0.getOperand(1);
815 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
816 if (N01C && N00.getOpcode() == ISD::ADD && N00.Val->hasOneUse() &&
817 isa<ConstantSDNode>(N00.getOperand(1))) {
818 N0 = DAG.getNode(ISD::ADD, VT,
819 DAG.getNode(ISD::SHL, VT, N00.getOperand(0), N01),
820 DAG.getNode(ISD::SHL, VT, N00.getOperand(1), N01));
821 return DAG.getNode(ISD::ADD, VT, N0, N1);
822 }
823 return SDOperand();
824}
825
Evan Chengb13cdbd2007-06-21 07:39:16 +0000826static
827SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
828 SelectionDAG &DAG) {
829 MVT::ValueType VT = N->getValueType(0);
830 unsigned Opc = N->getOpcode();
831 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
832 SDOperand LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
833 SDOperand RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
834 ISD::CondCode CC = ISD::SETCC_INVALID;
835 if (isSlctCC)
836 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
837 else {
838 SDOperand CCOp = Slct.getOperand(0);
839 if (CCOp.getOpcode() == ISD::SETCC)
840 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
841 }
842
843 bool DoXform = false;
844 bool InvCC = false;
845 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
846 "Bad input!");
847 if (LHS.getOpcode() == ISD::Constant &&
848 cast<ConstantSDNode>(LHS)->isNullValue())
849 DoXform = true;
850 else if (CC != ISD::SETCC_INVALID &&
851 RHS.getOpcode() == ISD::Constant &&
852 cast<ConstantSDNode>(RHS)->isNullValue()) {
853 std::swap(LHS, RHS);
Chris Lattner4626b252008-01-17 07:20:38 +0000854 SDOperand Op0 = Slct.getOperand(0);
855 bool isInt = MVT::isInteger(isSlctCC ? Op0.getValueType()
856 : Op0.getOperand(0).getValueType());
Evan Chengb13cdbd2007-06-21 07:39:16 +0000857 CC = ISD::getSetCCInverse(CC, isInt);
858 DoXform = true;
859 InvCC = true;
860 }
861
862 if (DoXform) {
863 SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
864 if (isSlctCC)
865 return DAG.getSelectCC(OtherOp, Result,
866 Slct.getOperand(0), Slct.getOperand(1), CC);
867 SDOperand CCOp = Slct.getOperand(0);
868 if (InvCC)
869 CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
870 CCOp.getOperand(1), CC);
871 return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
872 }
873 return SDOperand();
874}
875
Nate Begeman83e75ec2005-09-06 04:43:02 +0000876SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000877 SDOperand N0 = N->getOperand(0);
878 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000879 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
880 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000881 MVT::ValueType VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000882
883 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +0000884 if (MVT::isVector(VT)) {
885 SDOperand FoldedVOp = SimplifyVBinOp(N);
886 if (FoldedVOp.Val) return FoldedVOp;
887 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000888
Dan Gohman613e0d82007-07-03 14:03:57 +0000889 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +0000890 if (N0.getOpcode() == ISD::UNDEF)
891 return N0;
892 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +0000893 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000894 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000895 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000896 return DAG.getNode(ISD::ADD, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000897 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000898 if (N0C && !N1C)
899 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000900 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000901 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000902 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000903 // fold ((c1-A)+c2) -> (c1+c2)-A
904 if (N1C && N0.getOpcode() == ISD::SUB)
905 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
906 return DAG.getNode(ISD::SUB, VT,
907 DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
908 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000909 // reassociate add
910 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
911 if (RADD.Val != 0)
912 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000913 // fold ((0-A) + B) -> B-A
914 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
915 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000916 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000917 // fold (A + (0-B)) -> A-B
918 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
919 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000920 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000921 // fold (A+(B-A)) -> B
922 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000923 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +0000924
Evan Cheng860771d2006-03-01 01:09:54 +0000925 if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +0000926 return SDOperand(N, 0);
Chris Lattner947c2892006-03-13 06:51:27 +0000927
928 // fold (a+b) -> (a|b) iff a and b share no bits.
929 if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
930 uint64_t LHSZero, LHSOne;
931 uint64_t RHSZero, RHSOne;
932 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000933 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000934 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000935 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000936
937 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
938 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
939 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
940 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
941 return DAG.getNode(ISD::OR, VT, N0, N1);
942 }
943 }
Evan Cheng3ef554d2006-11-06 08:14:30 +0000944
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000945 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
946 if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
947 SDOperand Result = combineShlAddConstant(N0, N1, DAG);
948 if (Result.Val) return Result;
949 }
950 if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
951 SDOperand Result = combineShlAddConstant(N1, N0, DAG);
952 if (Result.Val) return Result;
953 }
954
Evan Chengb13cdbd2007-06-21 07:39:16 +0000955 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
956 if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
957 SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
958 if (Result.Val) return Result;
959 }
960 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
961 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
962 if (Result.Val) return Result;
963 }
964
Nate Begeman83e75ec2005-09-06 04:43:02 +0000965 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000966}
967
Chris Lattner91153682007-03-04 20:03:15 +0000968SDOperand DAGCombiner::visitADDC(SDNode *N) {
969 SDOperand N0 = N->getOperand(0);
970 SDOperand N1 = N->getOperand(1);
971 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
972 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
973 MVT::ValueType VT = N0.getValueType();
974
975 // If the flag result is dead, turn this into an ADD.
976 if (N->hasNUsesOfValue(0, 1))
977 return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
Chris Lattnerb6541762007-03-04 20:40:38 +0000978 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
Chris Lattner91153682007-03-04 20:03:15 +0000979
980 // canonicalize constant to RHS.
Chris Lattnerbcf24842007-03-04 20:08:45 +0000981 if (N0C && !N1C) {
982 SDOperand Ops[] = { N1, N0 };
983 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
984 }
Chris Lattner91153682007-03-04 20:03:15 +0000985
Chris Lattnerb6541762007-03-04 20:40:38 +0000986 // fold (addc x, 0) -> x + no carry out
987 if (N1C && N1C->isNullValue())
988 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
989
990 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
991 uint64_t LHSZero, LHSOne;
992 uint64_t RHSZero, RHSOne;
993 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000994 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000995 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000996 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000997
998 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
999 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1000 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1001 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1002 return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
1003 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1004 }
Chris Lattner91153682007-03-04 20:03:15 +00001005
1006 return SDOperand();
1007}
1008
1009SDOperand DAGCombiner::visitADDE(SDNode *N) {
1010 SDOperand N0 = N->getOperand(0);
1011 SDOperand N1 = N->getOperand(1);
Chris Lattnerb6541762007-03-04 20:40:38 +00001012 SDOperand CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001013 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1014 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Chris Lattnerbcf24842007-03-04 20:08:45 +00001015 //MVT::ValueType VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +00001016
1017 // canonicalize constant to RHS
Chris Lattnerbcf24842007-03-04 20:08:45 +00001018 if (N0C && !N1C) {
Chris Lattnerb6541762007-03-04 20:40:38 +00001019 SDOperand Ops[] = { N1, N0, CarryIn };
Chris Lattnerbcf24842007-03-04 20:08:45 +00001020 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1021 }
Chris Lattner91153682007-03-04 20:03:15 +00001022
Chris Lattnerb6541762007-03-04 20:40:38 +00001023 // fold (adde x, y, false) -> (addc x, y)
1024 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1025 SDOperand Ops[] = { N1, N0 };
1026 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1027 }
Chris Lattner91153682007-03-04 20:03:15 +00001028
1029 return SDOperand();
1030}
1031
1032
1033
Nate Begeman83e75ec2005-09-06 04:43:02 +00001034SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001035 SDOperand N0 = N->getOperand(0);
1036 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001037 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1038 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001039 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001040
Dan Gohman7f321562007-06-25 16:23:39 +00001041 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001042 if (MVT::isVector(VT)) {
1043 SDOperand FoldedVOp = SimplifyVBinOp(N);
1044 if (FoldedVOp.Val) return FoldedVOp;
1045 }
Dan Gohman7f321562007-06-25 16:23:39 +00001046
Chris Lattner854077d2005-10-17 01:07:11 +00001047 // fold (sub x, x) -> 0
1048 if (N0 == N1)
1049 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001050 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001051 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001052 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +00001053 // fold (sub x, c) -> (add x, -c)
1054 if (N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001055 return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001056 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001057 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001058 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001059 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001060 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001061 return N0.getOperand(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +00001062 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1063 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1064 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1065 if (Result.Val) return Result;
1066 }
Dan Gohman613e0d82007-07-03 14:03:57 +00001067 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001068 if (N0.getOpcode() == ISD::UNDEF)
1069 return N0;
1070 if (N1.getOpcode() == ISD::UNDEF)
1071 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001072
Nate Begeman83e75ec2005-09-06 04:43:02 +00001073 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001074}
1075
Nate Begeman83e75ec2005-09-06 04:43:02 +00001076SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001077 SDOperand N0 = N->getOperand(0);
1078 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001079 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1080 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +00001081 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001082
Dan Gohman7f321562007-06-25 16:23:39 +00001083 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001084 if (MVT::isVector(VT)) {
1085 SDOperand FoldedVOp = SimplifyVBinOp(N);
1086 if (FoldedVOp.Val) return FoldedVOp;
1087 }
Dan Gohman7f321562007-06-25 16:23:39 +00001088
Dan Gohman613e0d82007-07-03 14:03:57 +00001089 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001090 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001091 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001092 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001093 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001094 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001095 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001096 if (N0C && !N1C)
1097 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001098 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001099 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001100 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001101 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001102 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001103 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001104 // fold (mul x, (1 << c)) -> x << c
Nate Begeman646d7e22005-09-02 21:18:40 +00001105 if (N1C && isPowerOf2_64(N1C->getValue()))
Chris Lattner3e6099b2005-10-30 06:41:49 +00001106 return DAG.getNode(ISD::SHL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001107 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001108 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001109 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1110 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1111 // FIXME: If the input is something that is easily negated (e.g. a
1112 // single-use add), we should put the negate there.
1113 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1114 DAG.getNode(ISD::SHL, VT, N0,
1115 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1116 TLI.getShiftAmountTy())));
1117 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +00001118
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001119 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1120 if (N1C && N0.getOpcode() == ISD::SHL &&
1121 isa<ConstantSDNode>(N0.getOperand(1))) {
1122 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
Chris Lattner5750df92006-03-01 04:03:14 +00001123 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001124 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1125 }
1126
1127 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1128 // use.
1129 {
1130 SDOperand Sh(0,0), Y(0,0);
1131 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1132 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1133 N0.Val->hasOneUse()) {
1134 Sh = N0; Y = N1;
1135 } else if (N1.getOpcode() == ISD::SHL &&
1136 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1137 Sh = N1; Y = N0;
1138 }
1139 if (Sh.Val) {
1140 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1141 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1142 }
1143 }
Chris Lattnera1deca32006-03-04 23:33:26 +00001144 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1145 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1146 isa<ConstantSDNode>(N0.getOperand(1))) {
1147 return DAG.getNode(ISD::ADD, VT,
1148 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1149 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1150 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001151
Nate Begemancd4d58c2006-02-03 06:46:56 +00001152 // reassociate mul
1153 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1154 if (RMUL.Val != 0)
1155 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001156
Nate Begeman83e75ec2005-09-06 04:43:02 +00001157 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001158}
1159
Nate Begeman83e75ec2005-09-06 04:43:02 +00001160SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001161 SDOperand N0 = N->getOperand(0);
1162 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001163 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1164 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001165 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001166
Dan Gohman7f321562007-06-25 16:23:39 +00001167 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001168 if (MVT::isVector(VT)) {
1169 SDOperand FoldedVOp = SimplifyVBinOp(N);
1170 if (FoldedVOp.Val) return FoldedVOp;
1171 }
Dan Gohman7f321562007-06-25 16:23:39 +00001172
Nate Begeman1d4d4142005-09-01 00:19:25 +00001173 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001174 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001175 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001176 // fold (sdiv X, 1) -> X
1177 if (N1C && N1C->getSignExtended() == 1LL)
1178 return N0;
1179 // fold (sdiv X, -1) -> 0-X
1180 if (N1C && N1C->isAllOnesValue())
1181 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001182 // If we know the sign bits of both operands are zero, strength reduce to a
1183 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
1184 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001185 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1186 DAG.MaskedValueIsZero(N0, SignBit))
Chris Lattner094c8fc2005-10-07 06:10:46 +00001187 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001188 // fold (sdiv X, pow2) -> simple ops after legalize
Nate Begemanfb7217b2006-02-17 19:54:08 +00001189 if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +00001190 (isPowerOf2_64(N1C->getSignExtended()) ||
1191 isPowerOf2_64(-N1C->getSignExtended()))) {
1192 // If dividing by powers of two is cheap, then don't perform the following
1193 // fold.
1194 if (TLI.isPow2DivCheap())
1195 return SDOperand();
1196 int64_t pow2 = N1C->getSignExtended();
1197 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
Chris Lattner8f4880b2006-02-16 08:02:36 +00001198 unsigned lg2 = Log2_64(abs2);
1199 // Splat the sign bit into the register
1200 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001201 DAG.getConstant(MVT::getSizeInBits(VT)-1,
1202 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00001203 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +00001204 // Add (N0 < 0) ? abs2 - 1 : 0;
1205 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
1206 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001207 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +00001208 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +00001209 AddToWorkList(SRL.Val);
1210 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +00001211 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1212 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +00001213 // If we're dividing by a positive value, we're done. Otherwise, we must
1214 // negate the result.
1215 if (pow2 > 0)
1216 return SRA;
Chris Lattner5750df92006-03-01 04:03:14 +00001217 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001218 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1219 }
Nate Begeman69575232005-10-20 02:15:44 +00001220 // if integer divide is expensive and we satisfy the requirements, emit an
1221 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +00001222 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +00001223 !TLI.isIntDivCheap()) {
1224 SDOperand Op = BuildSDIV(N);
1225 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001226 }
Dan Gohman7f321562007-06-25 16:23:39 +00001227
Dan Gohman613e0d82007-07-03 14:03:57 +00001228 // undef / X -> 0
1229 if (N0.getOpcode() == ISD::UNDEF)
1230 return DAG.getConstant(0, VT);
1231 // X / undef -> undef
1232 if (N1.getOpcode() == ISD::UNDEF)
1233 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001234
Nate Begeman83e75ec2005-09-06 04:43:02 +00001235 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001236}
1237
Nate Begeman83e75ec2005-09-06 04:43:02 +00001238SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001239 SDOperand N0 = N->getOperand(0);
1240 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001241 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1242 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001243 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001244
Dan Gohman7f321562007-06-25 16:23:39 +00001245 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001246 if (MVT::isVector(VT)) {
1247 SDOperand FoldedVOp = SimplifyVBinOp(N);
1248 if (FoldedVOp.Val) return FoldedVOp;
1249 }
Dan Gohman7f321562007-06-25 16:23:39 +00001250
Nate Begeman1d4d4142005-09-01 00:19:25 +00001251 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001252 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001253 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001254 // fold (udiv x, (1 << c)) -> x >>u c
Nate Begeman646d7e22005-09-02 21:18:40 +00001255 if (N1C && isPowerOf2_64(N1C->getValue()))
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001256 return DAG.getNode(ISD::SRL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001257 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001258 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001259 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1260 if (N1.getOpcode() == ISD::SHL) {
1261 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1262 if (isPowerOf2_64(SHC->getValue())) {
1263 MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +00001264 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
1265 DAG.getConstant(Log2_64(SHC->getValue()),
1266 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +00001267 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001268 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001269 }
1270 }
1271 }
Nate Begeman69575232005-10-20 02:15:44 +00001272 // fold (udiv x, c) -> alternate
Chris Lattnere9936d12005-10-22 18:50:15 +00001273 if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
1274 SDOperand Op = BuildUDIV(N);
1275 if (Op.Val) return Op;
1276 }
Dan Gohman7f321562007-06-25 16:23:39 +00001277
Dan Gohman613e0d82007-07-03 14:03:57 +00001278 // undef / X -> 0
1279 if (N0.getOpcode() == ISD::UNDEF)
1280 return DAG.getConstant(0, VT);
1281 // X / undef -> undef
1282 if (N1.getOpcode() == ISD::UNDEF)
1283 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001284
Nate Begeman83e75ec2005-09-06 04:43:02 +00001285 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001286}
1287
Nate Begeman83e75ec2005-09-06 04:43:02 +00001288SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001289 SDOperand N0 = N->getOperand(0);
1290 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001291 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1292 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001293 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001294
1295 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001296 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001297 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001298 // If we know the sign bits of both operands are zero, strength reduce to a
1299 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
1300 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001301 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1302 DAG.MaskedValueIsZero(N0, SignBit))
Nate Begemana148d982006-01-18 22:35:16 +00001303 return DAG.getNode(ISD::UREM, VT, N0, N1);
Chris Lattner26d29902006-10-12 20:58:32 +00001304
Dan Gohman77003042007-11-26 23:46:11 +00001305 // If X/C can be simplified by the division-by-constant logic, lower
1306 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001307 if (N1C && !N1C->isNullValue()) {
1308 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001309 SDOperand OptimizedDiv = combine(Div.Val);
1310 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1311 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1312 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1313 AddToWorkList(Mul.Val);
1314 return Sub;
1315 }
Chris Lattner26d29902006-10-12 20:58:32 +00001316 }
1317
Dan Gohman613e0d82007-07-03 14:03:57 +00001318 // undef % X -> 0
1319 if (N0.getOpcode() == ISD::UNDEF)
1320 return DAG.getConstant(0, VT);
1321 // X % undef -> undef
1322 if (N1.getOpcode() == ISD::UNDEF)
1323 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001324
Nate Begeman83e75ec2005-09-06 04:43:02 +00001325 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001326}
1327
Nate Begeman83e75ec2005-09-06 04:43:02 +00001328SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001329 SDOperand N0 = N->getOperand(0);
1330 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001331 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1332 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001333 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001334
1335 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001336 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001337 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001338 // fold (urem x, pow2) -> (and x, pow2-1)
1339 if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
Nate Begemana148d982006-01-18 22:35:16 +00001340 return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00001341 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1342 if (N1.getOpcode() == ISD::SHL) {
1343 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1344 if (isPowerOf2_64(SHC->getValue())) {
Nate Begemanbab92392006-02-05 08:07:24 +00001345 SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001346 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001347 return DAG.getNode(ISD::AND, VT, N0, Add);
1348 }
1349 }
1350 }
Chris Lattner26d29902006-10-12 20:58:32 +00001351
Dan Gohman77003042007-11-26 23:46:11 +00001352 // If X/C can be simplified by the division-by-constant logic, lower
1353 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001354 if (N1C && !N1C->isNullValue()) {
1355 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001356 SDOperand OptimizedDiv = combine(Div.Val);
1357 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1358 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1359 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1360 AddToWorkList(Mul.Val);
1361 return Sub;
1362 }
Chris Lattner26d29902006-10-12 20:58:32 +00001363 }
1364
Dan Gohman613e0d82007-07-03 14:03:57 +00001365 // undef % X -> 0
1366 if (N0.getOpcode() == ISD::UNDEF)
1367 return DAG.getConstant(0, VT);
1368 // X % undef -> undef
1369 if (N1.getOpcode() == ISD::UNDEF)
1370 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001371
Nate Begeman83e75ec2005-09-06 04:43:02 +00001372 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001373}
1374
Nate Begeman83e75ec2005-09-06 04:43:02 +00001375SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001376 SDOperand N0 = N->getOperand(0);
1377 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001378 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001379 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001380
1381 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001382 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001383 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001384 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001385 if (N1C && N1C->getValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001386 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
1387 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001388 TLI.getShiftAmountTy()));
Dan Gohman613e0d82007-07-03 14:03:57 +00001389 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001390 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001391 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001392
Nate Begeman83e75ec2005-09-06 04:43:02 +00001393 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001394}
1395
Nate Begeman83e75ec2005-09-06 04:43:02 +00001396SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001397 SDOperand N0 = N->getOperand(0);
1398 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001399 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001400 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001401
1402 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001403 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001404 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001405 // fold (mulhu x, 1) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001406 if (N1C && N1C->getValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001407 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00001408 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001409 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001410 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001411
Nate Begeman83e75ec2005-09-06 04:43:02 +00001412 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001413}
1414
Dan Gohman389079b2007-10-08 17:57:15 +00001415/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1416/// compute two values. LoOp and HiOp give the opcodes for the two computations
1417/// that are being performed. Return true if a simplification was made.
1418///
1419bool DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N,
1420 unsigned LoOp, unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00001421 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00001422 bool HiExists = N->hasAnyUseOfValue(1);
1423 if (!HiExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001424 (!AfterLegalize ||
1425 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
1426 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0),
1427 DAG.getNode(LoOp, N->getValueType(0),
1428 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001429 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001430 return true;
1431 }
1432
1433 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00001434 bool LoExists = N->hasAnyUseOfValue(0);
1435 if (!LoExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001436 (!AfterLegalize ||
1437 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
1438 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
1439 DAG.getNode(HiOp, N->getValueType(1),
1440 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001441 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001442 return true;
1443 }
1444
Evan Cheng44711942007-11-08 09:25:29 +00001445 // If both halves are used, return as it is.
1446 if (LoExists && HiExists)
1447 return false;
1448
1449 // If the two computed results can be simplified separately, separate them.
1450 bool RetVal = false;
1451 if (LoExists) {
1452 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1453 N->op_begin(), N->getNumOperands());
1454 SDOperand LoOpt = combine(Lo.Val);
1455 if (LoOpt.Val && LoOpt != Lo &&
1456 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())) {
1457 RetVal = true;
1458 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), LoOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001459 } else
1460 DAG.DeleteNode(Lo.Val);
Dan Gohman389079b2007-10-08 17:57:15 +00001461 }
1462
Evan Cheng44711942007-11-08 09:25:29 +00001463 if (HiExists) {
1464 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1465 N->op_begin(), N->getNumOperands());
1466 SDOperand HiOpt = combine(Hi.Val);
1467 if (HiOpt.Val && HiOpt != Hi &&
1468 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())) {
1469 RetVal = true;
1470 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), HiOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001471 } else
1472 DAG.DeleteNode(Hi.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001473 }
1474
1475 return RetVal;
Dan Gohman389079b2007-10-08 17:57:15 +00001476}
1477
1478SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
1479
1480 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS))
1481 return SDOperand();
1482
1483 return SDOperand();
1484}
1485
1486SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
1487
1488 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU))
1489 return SDOperand();
1490
1491 return SDOperand();
1492}
1493
1494SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
1495
1496 if (SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM))
1497 return SDOperand();
1498
1499 return SDOperand();
1500}
1501
1502SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
1503
1504 if (SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM))
1505 return SDOperand();
1506
1507 return SDOperand();
1508}
1509
Chris Lattner35e5c142006-05-05 05:51:50 +00001510/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1511/// two operands of the same opcode, try to simplify it.
1512SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1513 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
1514 MVT::ValueType VT = N0.getValueType();
1515 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1516
Chris Lattner540121f2006-05-05 06:31:05 +00001517 // For each of OP in AND/OR/XOR:
1518 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1519 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1520 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Chris Lattner0d8dae72006-05-05 06:32:04 +00001521 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
Chris Lattner540121f2006-05-05 06:31:05 +00001522 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
Chris Lattner0d8dae72006-05-05 06:32:04 +00001523 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001524 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1525 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1526 N0.getOperand(0).getValueType(),
1527 N0.getOperand(0), N1.getOperand(0));
1528 AddToWorkList(ORNode.Val);
Chris Lattner540121f2006-05-05 06:31:05 +00001529 return DAG.getNode(N0.getOpcode(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00001530 }
1531
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001532 // For each of OP in SHL/SRL/SRA/AND...
1533 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1534 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1535 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00001536 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001537 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001538 N0.getOperand(1) == N1.getOperand(1)) {
1539 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1540 N0.getOperand(0).getValueType(),
1541 N0.getOperand(0), N1.getOperand(0));
1542 AddToWorkList(ORNode.Val);
1543 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1544 }
1545
1546 return SDOperand();
1547}
1548
Nate Begeman83e75ec2005-09-06 04:43:02 +00001549SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001550 SDOperand N0 = N->getOperand(0);
1551 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001552 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001553 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1554 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001555 MVT::ValueType VT = N1.getValueType();
1556
Dan Gohman7f321562007-06-25 16:23:39 +00001557 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001558 if (MVT::isVector(VT)) {
1559 SDOperand FoldedVOp = SimplifyVBinOp(N);
1560 if (FoldedVOp.Val) return FoldedVOp;
1561 }
Dan Gohman7f321562007-06-25 16:23:39 +00001562
Dan Gohman613e0d82007-07-03 14:03:57 +00001563 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001564 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001565 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001566 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001567 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001568 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001569 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001570 if (N0C && !N1C)
1571 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001572 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001573 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001574 return N0;
1575 // if (and x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001576 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001577 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001578 // reassociate and
1579 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1580 if (RAND.Val != 0)
1581 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001582 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001583 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001584 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Nate Begeman646d7e22005-09-02 21:18:40 +00001585 if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001586 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001587 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1588 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001589 unsigned InMask = MVT::getIntVTBitMask(N0.getOperand(0).getValueType());
Dan Gohmanea859be2007-06-22 14:59:07 +00001590 if (DAG.MaskedValueIsZero(N0.getOperand(0),
Chris Lattner1ec05d12006-03-01 21:47:21 +00001591 ~N1C->getValue() & InMask)) {
1592 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
1593 N0.getOperand(0));
1594
1595 // Replace uses of the AND with uses of the Zero extend node.
1596 CombineTo(N, Zext);
1597
Chris Lattner3603cd62006-02-02 07:17:31 +00001598 // We actually want to replace all uses of the any_extend with the
1599 // zero_extend, to avoid duplicating things. This will later cause this
1600 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001601 CombineTo(N0.Val, Zext);
Chris Lattnerfedced72006-04-20 23:55:59 +00001602 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00001603 }
1604 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001605 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1606 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1607 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1608 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1609
1610 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1611 MVT::isInteger(LL.getValueType())) {
1612 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
1613 if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
1614 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001615 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001616 return DAG.getSetCC(VT, ORNode, LR, Op1);
1617 }
1618 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1619 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1620 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001621 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001622 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1623 }
1624 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1625 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1626 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001627 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001628 return DAG.getSetCC(VT, ORNode, LR, Op1);
1629 }
1630 }
1631 // canonicalize equivalent to ll == rl
1632 if (LL == RR && LR == RL) {
1633 Op1 = ISD::getSetCCSwappedOperands(Op1);
1634 std::swap(RL, RR);
1635 }
1636 if (LL == RL && LR == RR) {
1637 bool isInteger = MVT::isInteger(LL.getValueType());
1638 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1639 if (Result != ISD::SETCC_INVALID)
1640 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1641 }
1642 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001643
1644 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1645 if (N0.getOpcode() == N1.getOpcode()) {
1646 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1647 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001648 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001649
Nate Begemande996292006-02-03 22:24:05 +00001650 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1651 // fold (and (sra)) -> (and (srl)) when possible.
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001652 if (!MVT::isVector(VT) &&
1653 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001654 return SDOperand(N, 0);
Nate Begemanded49632005-10-13 03:11:28 +00001655 // fold (zext_inreg (extload x)) -> (zextload x)
Evan Cheng83060c52007-03-07 08:07:03 +00001656 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
Evan Cheng466685d2006-10-09 20:57:25 +00001657 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001658 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001659 // If we zero all the possible extended bits, then we can turn this into
1660 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001661 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001662 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001663 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1664 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001665 LN0->getSrcValueOffset(), EVT,
1666 LN0->isVolatile(),
1667 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001668 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001669 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001670 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001671 }
1672 }
1673 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00001674 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1675 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001676 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001677 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001678 // If we zero all the possible extended bits, then we can turn this into
1679 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001680 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001681 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001682 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1683 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001684 LN0->getSrcValueOffset(), EVT,
1685 LN0->isVolatile(),
1686 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001687 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001688 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001689 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001690 }
1691 }
Chris Lattner15045b62006-02-28 06:35:35 +00001692
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001693 // fold (and (load x), 255) -> (zextload x, i8)
1694 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng466685d2006-10-09 20:57:25 +00001695 if (N1C && N0.getOpcode() == ISD::LOAD) {
1696 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1697 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerddf89562008-01-17 19:59:44 +00001698 LN0->isUnindexed() && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001699 MVT::ValueType EVT, LoadedVT;
1700 if (N1C->getValue() == 255)
1701 EVT = MVT::i8;
1702 else if (N1C->getValue() == 65535)
1703 EVT = MVT::i16;
1704 else if (N1C->getValue() == ~0U)
1705 EVT = MVT::i32;
1706 else
1707 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001708
Evan Cheng2e49f092006-10-11 07:10:22 +00001709 LoadedVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001710 if (EVT != MVT::Other && LoadedVT > EVT &&
1711 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1712 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1713 // For big endian targets, we need to add an offset to the pointer to
1714 // load the correct bytes. For little endian systems, we merely need to
1715 // read fewer bytes from the same pointer.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00001716 unsigned LVTStoreBytes = MVT::getStoreSizeInBits(LoadedVT)/8;
1717 unsigned EVTStoreBytes = MVT::getStoreSizeInBits(EVT)/8;
1718 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Duncan Sandsdc846502007-10-28 12:59:45 +00001719 unsigned Alignment = LN0->getAlignment();
Evan Cheng466685d2006-10-09 20:57:25 +00001720 SDOperand NewPtr = LN0->getBasePtr();
Duncan Sandsdc846502007-10-28 12:59:45 +00001721 if (!TLI.isLittleEndian()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001722 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1723 DAG.getConstant(PtrOff, PtrType));
Duncan Sandsdc846502007-10-28 12:59:45 +00001724 Alignment = MinAlign(Alignment, PtrOff);
1725 }
Evan Cheng466685d2006-10-09 20:57:25 +00001726 AddToWorkList(NewPtr.Val);
1727 SDOperand Load =
1728 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001729 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00001730 LN0->isVolatile(), Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00001731 AddToWorkList(N);
1732 CombineTo(N0.Val, Load, Load.getValue(1));
1733 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1734 }
Chris Lattner15045b62006-02-28 06:35:35 +00001735 }
1736 }
1737
Nate Begeman83e75ec2005-09-06 04:43:02 +00001738 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001739}
1740
Nate Begeman83e75ec2005-09-06 04:43:02 +00001741SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001742 SDOperand N0 = N->getOperand(0);
1743 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001744 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001745 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1746 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001747 MVT::ValueType VT = N1.getValueType();
1748 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001749
Dan Gohman7f321562007-06-25 16:23:39 +00001750 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001751 if (MVT::isVector(VT)) {
1752 SDOperand FoldedVOp = SimplifyVBinOp(N);
1753 if (FoldedVOp.Val) return FoldedVOp;
1754 }
Dan Gohman7f321562007-06-25 16:23:39 +00001755
Dan Gohman613e0d82007-07-03 14:03:57 +00001756 // fold (or x, undef) -> -1
Dan Gohmand595b5f2007-07-10 14:20:37 +00001757 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Chris Lattnere094f542007-07-09 16:16:34 +00001758 return DAG.getConstant(~0ULL, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001759 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001760 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001761 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001762 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001763 if (N0C && !N1C)
1764 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001765 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001766 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001767 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001768 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001769 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001770 return N1;
1771 // fold (or x, c) -> c iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001772 if (N1C &&
Dan Gohmanea859be2007-06-22 14:59:07 +00001773 DAG.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001774 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001775 // reassociate or
1776 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1777 if (ROR.Val != 0)
1778 return ROR;
1779 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1780 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001781 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001782 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1783 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1784 N1),
1785 DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001786 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001787 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1788 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1789 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1790 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1791
1792 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1793 MVT::isInteger(LL.getValueType())) {
1794 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1795 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
1796 if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1797 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1798 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001799 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001800 return DAG.getSetCC(VT, ORNode, LR, Op1);
1801 }
1802 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1803 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1804 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1805 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1806 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001807 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001808 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1809 }
1810 }
1811 // canonicalize equivalent to ll == rl
1812 if (LL == RR && LR == RL) {
1813 Op1 = ISD::getSetCCSwappedOperands(Op1);
1814 std::swap(RL, RR);
1815 }
1816 if (LL == RL && LR == RR) {
1817 bool isInteger = MVT::isInteger(LL.getValueType());
1818 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1819 if (Result != ISD::SETCC_INVALID)
1820 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1821 }
1822 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001823
1824 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1825 if (N0.getOpcode() == N1.getOpcode()) {
1826 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1827 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001828 }
Chris Lattner516b9622006-09-14 20:50:57 +00001829
Chris Lattner1ec72732006-09-14 21:11:37 +00001830 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1831 if (N0.getOpcode() == ISD::AND &&
1832 N1.getOpcode() == ISD::AND &&
1833 N0.getOperand(1).getOpcode() == ISD::Constant &&
1834 N1.getOperand(1).getOpcode() == ISD::Constant &&
1835 // Don't increase # computations.
1836 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1837 // We can only do this xform if we know that bits from X that are set in C2
1838 // but not in C1 are already zero. Likewise for Y.
1839 uint64_t LHSMask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1840 uint64_t RHSMask = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1841
Dan Gohmanea859be2007-06-22 14:59:07 +00001842 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1843 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Chris Lattner1ec72732006-09-14 21:11:37 +00001844 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1845 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1846 }
1847 }
1848
1849
Chris Lattner516b9622006-09-14 20:50:57 +00001850 // See if this is some rotate idiom.
1851 if (SDNode *Rot = MatchRotate(N0, N1))
1852 return SDOperand(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00001853
Nate Begeman83e75ec2005-09-06 04:43:02 +00001854 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001855}
1856
Chris Lattner516b9622006-09-14 20:50:57 +00001857
1858/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1859static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1860 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00001861 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001862 Mask = Op.getOperand(1);
1863 Op = Op.getOperand(0);
1864 } else {
1865 return false;
1866 }
1867 }
1868
1869 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1870 Shift = Op;
1871 return true;
1872 }
1873 return false;
1874}
1875
1876
1877// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1878// idioms for rotate, and if the target supports rotation instructions, generate
1879// a rot[lr].
1880SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1881 // Must be a legal type. Expanded an promoted things won't work with rotates.
1882 MVT::ValueType VT = LHS.getValueType();
1883 if (!TLI.isTypeLegal(VT)) return 0;
1884
1885 // The target must have at least one rotate flavor.
1886 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1887 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1888 if (!HasROTL && !HasROTR) return 0;
1889
1890 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1891 SDOperand LHSShift; // The shift.
1892 SDOperand LHSMask; // AND value if any.
1893 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1894 return 0; // Not part of a rotate.
1895
1896 SDOperand RHSShift; // The shift.
1897 SDOperand RHSMask; // AND value if any.
1898 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1899 return 0; // Not part of a rotate.
1900
1901 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1902 return 0; // Not shifting the same value.
1903
1904 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1905 return 0; // Shifts must disagree.
1906
1907 // Canonicalize shl to left side in a shl/srl pair.
1908 if (RHSShift.getOpcode() == ISD::SHL) {
1909 std::swap(LHS, RHS);
1910 std::swap(LHSShift, RHSShift);
1911 std::swap(LHSMask , RHSMask );
1912 }
1913
1914 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Scott Michelc9dc1142007-04-02 21:36:32 +00001915 SDOperand LHSShiftArg = LHSShift.getOperand(0);
1916 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1917 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00001918
1919 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1920 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00001921 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
1922 RHSShiftAmt.getOpcode() == ISD::Constant) {
1923 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
1924 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
Chris Lattner516b9622006-09-14 20:50:57 +00001925 if ((LShVal + RShVal) != OpSizeInBits)
1926 return 0;
1927
1928 SDOperand Rot;
1929 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001930 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001931 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001932 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001933
1934 // If there is an AND of either shifted operand, apply it to the result.
1935 if (LHSMask.Val || RHSMask.Val) {
1936 uint64_t Mask = MVT::getIntVTBitMask(VT);
1937
1938 if (LHSMask.Val) {
1939 uint64_t RHSBits = (1ULL << LShVal)-1;
1940 Mask &= cast<ConstantSDNode>(LHSMask)->getValue() | RHSBits;
1941 }
1942 if (RHSMask.Val) {
1943 uint64_t LHSBits = ~((1ULL << (OpSizeInBits-RShVal))-1);
1944 Mask &= cast<ConstantSDNode>(RHSMask)->getValue() | LHSBits;
1945 }
1946
1947 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
1948 }
1949
1950 return Rot.Val;
1951 }
1952
1953 // If there is a mask here, and we have a variable shift, we can't be sure
1954 // that we're masking out the right stuff.
1955 if (LHSMask.Val || RHSMask.Val)
1956 return 0;
1957
1958 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1959 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001960 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
1961 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001962 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001963 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001964 if (SUBC->getValue() == OpSizeInBits)
1965 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001966 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001967 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001968 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001969 }
1970 }
1971
1972 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1973 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001974 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
1975 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001976 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001977 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001978 if (SUBC->getValue() == OpSizeInBits)
1979 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001980 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001981 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001982 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1983 }
1984 }
1985
1986 // Look for sign/zext/any-extended cases:
1987 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1988 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1989 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
1990 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1991 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1992 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
1993 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
1994 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
1995 if (RExtOp0.getOpcode() == ISD::SUB &&
1996 RExtOp0.getOperand(1) == LExtOp0) {
1997 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1998 // (rotr x, y)
1999 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2000 // (rotl x, (sub 32, y))
2001 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
2002 if (SUBC->getValue() == OpSizeInBits) {
2003 if (HasROTL)
2004 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2005 else
2006 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2007 }
2008 }
2009 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2010 RExtOp0 == LExtOp0.getOperand(1)) {
2011 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2012 // (rotl x, y)
2013 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2014 // (rotr x, (sub 32, y))
2015 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
2016 if (SUBC->getValue() == OpSizeInBits) {
2017 if (HasROTL)
2018 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2019 else
2020 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2021 }
2022 }
Chris Lattner516b9622006-09-14 20:50:57 +00002023 }
2024 }
2025
2026 return 0;
2027}
2028
2029
Nate Begeman83e75ec2005-09-06 04:43:02 +00002030SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002031 SDOperand N0 = N->getOperand(0);
2032 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002033 SDOperand LHS, RHS, CC;
2034 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2035 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002036 MVT::ValueType VT = N0.getValueType();
2037
Dan Gohman7f321562007-06-25 16:23:39 +00002038 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00002039 if (MVT::isVector(VT)) {
2040 SDOperand FoldedVOp = SimplifyVBinOp(N);
2041 if (FoldedVOp.Val) return FoldedVOp;
2042 }
Dan Gohman7f321562007-06-25 16:23:39 +00002043
Dan Gohman613e0d82007-07-03 14:03:57 +00002044 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00002045 if (N0.getOpcode() == ISD::UNDEF)
2046 return N0;
2047 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002048 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002049 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002050 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002051 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00002052 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002053 if (N0C && !N1C)
2054 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002055 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002056 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002057 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00002058 // reassociate xor
2059 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2060 if (RXOR.Val != 0)
2061 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002062 // fold !(x cc y) -> (x !cc y)
Nate Begeman646d7e22005-09-02 21:18:40 +00002063 if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
2064 bool isInt = MVT::isInteger(LHS.getValueType());
2065 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2066 isInt);
2067 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002068 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002069 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002070 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002071 assert(0 && "Unhandled SetCC Equivalent!");
2072 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002073 }
Chris Lattner61c5ff42007-09-10 21:39:07 +00002074 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
2075 if (N1C && N1C->getValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
2076 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2077 SDOperand V = N0.getOperand(0);
2078 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00002079 DAG.getConstant(1, V.getValueType()));
Chris Lattner61c5ff42007-09-10 21:39:07 +00002080 AddToWorkList(V.Val);
2081 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2082 }
2083
Nate Begeman99801192005-09-07 23:25:52 +00002084 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Chris Lattner734c91d2006-11-10 21:37:15 +00002085 if (N1C && N1C->getValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00002086 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002087 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002088 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2089 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002090 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2091 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002092 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002093 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002094 }
2095 }
Nate Begeman99801192005-09-07 23:25:52 +00002096 // fold !(x or y) -> (!x and !y) iff x or y are constants
2097 if (N1C && N1C->isAllOnesValue() &&
2098 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002099 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002100 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2101 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002102 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2103 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002104 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002105 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002106 }
2107 }
Nate Begeman223df222005-09-08 20:18:10 +00002108 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2109 if (N1C && N0.getOpcode() == ISD::XOR) {
2110 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2111 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2112 if (N00C)
2113 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
2114 DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
2115 if (N01C)
2116 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
2117 DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
2118 }
2119 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00002120 if (N0 == N1) {
2121 if (!MVT::isVector(VT)) {
2122 return DAG.getConstant(0, VT);
2123 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2124 // Produce a vector of zeros.
Dan Gohman51eaa862007-06-14 22:58:02 +00002125 SDOperand El = DAG.getConstant(0, MVT::getVectorElementType(VT));
Chris Lattner4fbdd592006-03-28 19:11:05 +00002126 std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002127 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4fbdd592006-03-28 19:11:05 +00002128 }
2129 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002130
2131 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2132 if (N0.getOpcode() == N1.getOpcode()) {
2133 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2134 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002135 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002136
Chris Lattner3e104b12006-04-08 04:15:24 +00002137 // Simplify the expression using non-local knowledge.
2138 if (!MVT::isVector(VT) &&
2139 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002140 return SDOperand(N, 0);
Chris Lattner3e104b12006-04-08 04:15:24 +00002141
Nate Begeman83e75ec2005-09-06 04:43:02 +00002142 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002143}
2144
Chris Lattnere70da202007-12-06 07:33:36 +00002145/// visitShiftByConstant - Handle transforms common to the three shifts, when
2146/// the shift amount is a constant.
2147SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2148 SDNode *LHS = N->getOperand(0).Val;
2149 if (!LHS->hasOneUse()) return SDOperand();
2150
2151 // We want to pull some binops through shifts, so that we have (and (shift))
2152 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
2153 // thing happens with address calculations, so it's important to canonicalize
2154 // it.
2155 bool HighBitSet = false; // Can we transform this if the high bit is set?
2156
2157 switch (LHS->getOpcode()) {
2158 default: return SDOperand();
2159 case ISD::OR:
2160 case ISD::XOR:
2161 HighBitSet = false; // We can only transform sra if the high bit is clear.
2162 break;
2163 case ISD::AND:
2164 HighBitSet = true; // We can only transform sra if the high bit is set.
2165 break;
2166 case ISD::ADD:
2167 if (N->getOpcode() != ISD::SHL)
2168 return SDOperand(); // only shl(add) not sr[al](add).
2169 HighBitSet = false; // We can only transform sra if the high bit is clear.
2170 break;
2171 }
2172
2173 // We require the RHS of the binop to be a constant as well.
2174 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2175 if (!BinOpCst) return SDOperand();
2176
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00002177
2178 // FIXME: disable this for unless the input to the binop is a shift by a
2179 // constant. If it is not a shift, it pessimizes some common cases like:
2180 //
2181 //void foo(int *X, int i) { X[i & 1235] = 1; }
2182 //int bar(int *X, int i) { return X[i & 255]; }
2183 SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2184 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
2185 BinOpLHSVal->getOpcode() != ISD::SRA &&
2186 BinOpLHSVal->getOpcode() != ISD::SRL) ||
2187 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2188 return SDOperand();
2189
Chris Lattnere70da202007-12-06 07:33:36 +00002190 MVT::ValueType VT = N->getValueType(0);
2191
2192 // If this is a signed shift right, and the high bit is modified
2193 // by the logical operation, do not perform the transformation.
2194 // The highBitSet boolean indicates the value of the high bit of
2195 // the constant which would cause it to be modified for this
2196 // operation.
2197 if (N->getOpcode() == ISD::SRA) {
2198 uint64_t BinOpRHSSign = BinOpCst->getValue() >> MVT::getSizeInBits(VT)-1;
2199 if ((bool)BinOpRHSSign != HighBitSet)
2200 return SDOperand();
2201 }
2202
2203 // Fold the constants, shifting the binop RHS by the shift amount.
2204 SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2205 LHS->getOperand(1), N->getOperand(1));
2206
2207 // Create the new shift.
2208 SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2209 N->getOperand(1));
2210
2211 // Create the new binop.
2212 return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2213}
2214
2215
Nate Begeman83e75ec2005-09-06 04:43:02 +00002216SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002217 SDOperand N0 = N->getOperand(0);
2218 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002219 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2220 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002221 MVT::ValueType VT = N0.getValueType();
2222 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2223
2224 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002225 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002226 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002227 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002228 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002229 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002230 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002231 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002232 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002233 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002234 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002235 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002236 // if (shl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002237 if (DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002238 return DAG.getConstant(0, VT);
Chris Lattner61a4c072007-04-18 03:06:49 +00002239 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002240 return SDOperand(N, 0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002241 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002242 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002243 N0.getOperand(1).getOpcode() == ISD::Constant) {
2244 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002245 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002246 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002247 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002248 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002249 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002250 }
2251 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2252 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002253 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002254 N0.getOperand(1).getOpcode() == ISD::Constant) {
2255 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002256 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002257 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2258 DAG.getConstant(~0ULL << c1, VT));
2259 if (c2 > c1)
2260 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00002261 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002262 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00002263 return DAG.getNode(ISD::SRL, VT, Mask,
2264 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002265 }
2266 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002267 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00002268 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002269 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattnere70da202007-12-06 07:33:36 +00002270
2271 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002272}
2273
Nate Begeman83e75ec2005-09-06 04:43:02 +00002274SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002275 SDOperand N0 = N->getOperand(0);
2276 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002277 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2278 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002279 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002280
2281 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002282 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002283 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002284 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002285 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002286 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002287 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002288 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002289 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002290 // fold (sra x, c >= size(x)) -> undef
Nate Begemanfb7217b2006-02-17 19:54:08 +00002291 if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002292 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002293 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002294 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002295 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002296 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2297 // sext_inreg.
2298 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
2299 unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
2300 MVT::ValueType EVT;
2301 switch (LowBits) {
2302 default: EVT = MVT::Other; break;
2303 case 1: EVT = MVT::i1; break;
2304 case 8: EVT = MVT::i8; break;
2305 case 16: EVT = MVT::i16; break;
2306 case 32: EVT = MVT::i32; break;
2307 }
2308 if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
2309 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2310 DAG.getValueType(EVT));
2311 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002312
2313 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2314 if (N1C && N0.getOpcode() == ISD::SRA) {
2315 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2316 unsigned Sum = N1C->getValue() + C1->getValue();
2317 if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
2318 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2319 DAG.getConstant(Sum, N1C->getValueType(0)));
2320 }
2321 }
2322
Chris Lattnera8504462006-05-08 20:51:54 +00002323 // Simplify, based on bits shifted out of the LHS.
2324 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2325 return SDOperand(N, 0);
2326
2327
Nate Begeman1d4d4142005-09-01 00:19:25 +00002328 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohmanea859be2007-06-22 14:59:07 +00002329 if (DAG.MaskedValueIsZero(N0, MVT::getIntVTSignBit(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002330 return DAG.getNode(ISD::SRL, VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00002331
2332 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002333}
2334
Nate Begeman83e75ec2005-09-06 04:43:02 +00002335SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002336 SDOperand N0 = N->getOperand(0);
2337 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002338 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2339 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002340 MVT::ValueType VT = N0.getValueType();
2341 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2342
2343 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002344 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002345 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002346 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002347 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002348 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002349 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002350 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002351 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002352 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002353 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002354 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002355 // if (srl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002356 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002357 return DAG.getConstant(0, VT);
Chris Lattnerec06e9a2007-04-18 03:05:22 +00002358
Nate Begeman1d4d4142005-09-01 00:19:25 +00002359 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002360 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002361 N0.getOperand(1).getOpcode() == ISD::Constant) {
2362 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002363 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002364 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002365 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002366 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002367 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002368 }
Chris Lattner350bec02006-04-02 06:11:11 +00002369
Chris Lattner06afe072006-05-05 22:53:17 +00002370 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2371 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2372 // Shifting in all undef bits?
2373 MVT::ValueType SmallVT = N0.getOperand(0).getValueType();
2374 if (N1C->getValue() >= MVT::getSizeInBits(SmallVT))
2375 return DAG.getNode(ISD::UNDEF, VT);
2376
2377 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2378 AddToWorkList(SmallShift.Val);
2379 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2380 }
2381
Chris Lattner3657ffe2006-10-12 20:23:19 +00002382 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2383 // bit, which is unmodified by sra.
2384 if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
2385 if (N0.getOpcode() == ISD::SRA)
2386 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2387 }
2388
Chris Lattner350bec02006-04-02 06:11:11 +00002389 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2390 if (N1C && N0.getOpcode() == ISD::CTLZ &&
2391 N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
2392 uint64_t KnownZero, KnownOne, Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002393 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Chris Lattner350bec02006-04-02 06:11:11 +00002394
2395 // If any of the input bits are KnownOne, then the input couldn't be all
2396 // zeros, thus the result of the srl will always be zero.
2397 if (KnownOne) return DAG.getConstant(0, VT);
2398
2399 // If all of the bits input the to ctlz node are known to be zero, then
2400 // the result of the ctlz is "32" and the result of the shift is one.
2401 uint64_t UnknownBits = ~KnownZero & Mask;
2402 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2403
2404 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2405 if ((UnknownBits & (UnknownBits-1)) == 0) {
2406 // Okay, we know that only that the single bit specified by UnknownBits
2407 // could be set on input to the CTLZ node. If this bit is set, the SRL
2408 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2409 // to an SRL,XOR pair, which is likely to simplify more.
2410 unsigned ShAmt = CountTrailingZeros_64(UnknownBits);
2411 SDOperand Op = N0.getOperand(0);
2412 if (ShAmt) {
2413 Op = DAG.getNode(ISD::SRL, VT, Op,
2414 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2415 AddToWorkList(Op.Val);
2416 }
2417 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2418 }
2419 }
Chris Lattner61a4c072007-04-18 03:06:49 +00002420
2421 // fold operands of srl based on knowledge that the low bits are not
2422 // demanded.
2423 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2424 return SDOperand(N, 0);
2425
Chris Lattnere70da202007-12-06 07:33:36 +00002426 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002427}
2428
Nate Begeman83e75ec2005-09-06 04:43:02 +00002429SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002430 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002431 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002432
2433 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002434 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002435 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002436 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002437}
2438
Nate Begeman83e75ec2005-09-06 04:43:02 +00002439SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002440 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002441 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002442
2443 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002444 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002445 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002446 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002447}
2448
Nate Begeman83e75ec2005-09-06 04:43:02 +00002449SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002450 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002451 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002452
2453 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002454 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002455 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002456 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002457}
2458
Nate Begeman452d7be2005-09-16 00:54:12 +00002459SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2460 SDOperand N0 = N->getOperand(0);
2461 SDOperand N1 = N->getOperand(1);
2462 SDOperand N2 = N->getOperand(2);
2463 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2464 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2465 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2466 MVT::ValueType VT = N->getValueType(0);
Evan Cheng571c4782007-08-18 05:57:05 +00002467 MVT::ValueType VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00002468
Nate Begeman452d7be2005-09-16 00:54:12 +00002469 // fold select C, X, X -> X
2470 if (N1 == N2)
2471 return N1;
2472 // fold select true, X, Y -> X
2473 if (N0C && !N0C->isNullValue())
2474 return N1;
2475 // fold select false, X, Y -> Y
2476 if (N0C && N0C->isNullValue())
2477 return N2;
2478 // fold select C, 1, X -> C | X
Nate Begeman44728a72005-09-19 22:34:01 +00002479 if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
Nate Begeman452d7be2005-09-16 00:54:12 +00002480 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Cheng571c4782007-08-18 05:57:05 +00002481 // fold select C, 0, 1 -> ~C
2482 if (MVT::isInteger(VT) && MVT::isInteger(VT0) &&
2483 N1C && N2C && N1C->isNullValue() && N2C->getValue() == 1) {
2484 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2485 if (VT == VT0)
2486 return XORNode;
2487 AddToWorkList(XORNode.Val);
2488 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(VT0))
2489 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2490 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2491 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002492 // fold select C, 0, X -> ~C & X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002493 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
2494 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002495 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002496 return DAG.getNode(ISD::AND, VT, XORNode, N2);
2497 }
2498 // fold select C, X, 1 -> ~C | X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002499 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getValue() == 1) {
2500 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002501 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002502 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2503 }
2504 // fold select C, X, 0 -> C & X
2505 // FIXME: this should check for C type == X type, not i1?
2506 if (MVT::i1 == VT && N2C && N2C->isNullValue())
2507 return DAG.getNode(ISD::AND, VT, N0, N1);
2508 // fold X ? X : Y --> X ? 1 : Y --> X | Y
2509 if (MVT::i1 == VT && N0 == N1)
2510 return DAG.getNode(ISD::OR, VT, N0, N2);
2511 // fold X ? Y : X --> X ? Y : 0 --> X & Y
2512 if (MVT::i1 == VT && N0 == N2)
2513 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner729c6d12006-05-27 00:43:02 +00002514
Chris Lattner40c62d52005-10-18 06:04:22 +00002515 // If we can fold this based on the true/false value, do so.
2516 if (SimplifySelectOps(N, N1, N2))
Chris Lattner729c6d12006-05-27 00:43:02 +00002517 return SDOperand(N, 0); // Don't revisit N.
2518
Nate Begeman44728a72005-09-19 22:34:01 +00002519 // fold selects based on a setcc into other things, such as min/max/abs
2520 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman750ac1b2006-02-01 07:19:44 +00002521 // FIXME:
2522 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2523 // having to say they don't support SELECT_CC on every type the DAG knows
2524 // about, since there is no way to mark an opcode illegal at all value types
2525 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2526 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2527 N1, N2, N0.getOperand(2));
2528 else
2529 return SimplifySelect(N0, N1, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00002530 return SDOperand();
2531}
2532
2533SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00002534 SDOperand N0 = N->getOperand(0);
2535 SDOperand N1 = N->getOperand(1);
2536 SDOperand N2 = N->getOperand(2);
2537 SDOperand N3 = N->getOperand(3);
2538 SDOperand N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00002539 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2540
Nate Begeman44728a72005-09-19 22:34:01 +00002541 // fold select_cc lhs, rhs, x, x, cc -> x
2542 if (N2 == N3)
2543 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00002544
Chris Lattner5f42a242006-09-20 06:19:26 +00002545 // Determine if the condition we're dealing with is constant
2546 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00002547 if (SCC.Val) AddToWorkList(SCC.Val);
Chris Lattner5f42a242006-09-20 06:19:26 +00002548
2549 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
2550 if (SCCC->getValue())
2551 return N2; // cond always true -> true val
2552 else
2553 return N3; // cond always false -> false val
2554 }
2555
2556 // Fold to a simpler select_cc
2557 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2558 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2559 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2560 SCC.getOperand(2));
2561
Chris Lattner40c62d52005-10-18 06:04:22 +00002562 // If we can fold this based on the true/false value, do so.
2563 if (SimplifySelectOps(N, N2, N3))
Chris Lattner729c6d12006-05-27 00:43:02 +00002564 return SDOperand(N, 0); // Don't revisit N.
Chris Lattner40c62d52005-10-18 06:04:22 +00002565
Nate Begeman44728a72005-09-19 22:34:01 +00002566 // fold select_cc into other things, such as min/max/abs
2567 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00002568}
2569
2570SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2571 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2572 cast<CondCodeSDNode>(N->getOperand(2))->get());
2573}
2574
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002575// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2576// "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2577// transformation. Returns true if extension are possible and the above
2578// mentioned transformation is profitable.
2579static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2580 unsigned ExtOpc,
2581 SmallVector<SDNode*, 4> &ExtendNodes,
2582 TargetLowering &TLI) {
2583 bool HasCopyToRegUses = false;
2584 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2585 for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2586 UI != UE; ++UI) {
2587 SDNode *User = *UI;
2588 if (User == N)
2589 continue;
2590 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2591 if (User->getOpcode() == ISD::SETCC) {
2592 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2593 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2594 // Sign bits will be lost after a zext.
2595 return false;
2596 bool Add = false;
2597 for (unsigned i = 0; i != 2; ++i) {
2598 SDOperand UseOp = User->getOperand(i);
2599 if (UseOp == N0)
2600 continue;
2601 if (!isa<ConstantSDNode>(UseOp))
2602 return false;
2603 Add = true;
2604 }
2605 if (Add)
2606 ExtendNodes.push_back(User);
2607 } else {
2608 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2609 SDOperand UseOp = User->getOperand(i);
2610 if (UseOp == N0) {
2611 // If truncate from extended type to original load type is free
2612 // on this target, then it's ok to extend a CopyToReg.
2613 if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2614 HasCopyToRegUses = true;
2615 else
2616 return false;
2617 }
2618 }
2619 }
2620 }
2621
2622 if (HasCopyToRegUses) {
2623 bool BothLiveOut = false;
2624 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2625 UI != UE; ++UI) {
2626 SDNode *User = *UI;
2627 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2628 SDOperand UseOp = User->getOperand(i);
2629 if (UseOp.Val == N && UseOp.ResNo == 0) {
2630 BothLiveOut = true;
2631 break;
2632 }
2633 }
2634 }
2635 if (BothLiveOut)
2636 // Both unextended and extended values are live out. There had better be
2637 // good a reason for the transformation.
2638 return ExtendNodes.size();
2639 }
2640 return true;
2641}
2642
Nate Begeman83e75ec2005-09-06 04:43:02 +00002643SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002644 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002645 MVT::ValueType VT = N->getValueType(0);
2646
Nate Begeman1d4d4142005-09-01 00:19:25 +00002647 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002648 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002649 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Chris Lattner310b5782006-05-06 23:06:26 +00002650
Nate Begeman1d4d4142005-09-01 00:19:25 +00002651 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002652 // fold (sext (aext x)) -> (sext x)
2653 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002654 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattner310b5782006-05-06 23:06:26 +00002655
Evan Chengc88138f2007-03-22 01:54:19 +00002656 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2657 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Chris Lattner22558872007-02-26 03:13:59 +00002658 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002659 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002660 if (NarrowLoad.Val) {
2661 if (NarrowLoad.Val != N0.Val)
2662 CombineTo(N0.Val, NarrowLoad);
2663 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2664 }
Evan Chengc88138f2007-03-22 01:54:19 +00002665 }
2666
2667 // See if the value being truncated is already sign extended. If so, just
2668 // eliminate the trunc/sext pair.
2669 if (N0.getOpcode() == ISD::TRUNCATE) {
Chris Lattner6007b842006-09-21 06:00:20 +00002670 SDOperand Op = N0.getOperand(0);
Chris Lattner22558872007-02-26 03:13:59 +00002671 unsigned OpBits = MVT::getSizeInBits(Op.getValueType());
2672 unsigned MidBits = MVT::getSizeInBits(N0.getValueType());
2673 unsigned DestBits = MVT::getSizeInBits(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002674 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Chris Lattner22558872007-02-26 03:13:59 +00002675
2676 if (OpBits == DestBits) {
2677 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2678 // bits, it is already ready.
2679 if (NumSignBits > DestBits-MidBits)
2680 return Op;
2681 } else if (OpBits < DestBits) {
2682 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2683 // bits, just sext from i32.
2684 if (NumSignBits > OpBits-MidBits)
2685 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2686 } else {
2687 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2688 // bits, just truncate to i32.
2689 if (NumSignBits > OpBits-MidBits)
2690 return DAG.getNode(ISD::TRUNCATE, VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00002691 }
Chris Lattner22558872007-02-26 03:13:59 +00002692
2693 // fold (sext (truncate x)) -> (sextinreg x).
2694 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2695 N0.getValueType())) {
2696 if (Op.getValueType() < VT)
2697 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2698 else if (Op.getValueType() > VT)
2699 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2700 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2701 DAG.getValueType(N0.getValueType()));
2702 }
Chris Lattner6007b842006-09-21 06:00:20 +00002703 }
Chris Lattner310b5782006-05-06 23:06:26 +00002704
Evan Cheng110dec22005-12-14 02:19:23 +00002705 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002706 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002707 (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002708 bool DoXform = true;
2709 SmallVector<SDNode*, 4> SetCCs;
2710 if (!N0.hasOneUse())
2711 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2712 if (DoXform) {
2713 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2714 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2715 LN0->getBasePtr(), LN0->getSrcValue(),
2716 LN0->getSrcValueOffset(),
2717 N0.getValueType(),
2718 LN0->isVolatile(),
2719 LN0->getAlignment());
2720 CombineTo(N, ExtLoad);
2721 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2722 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2723 // Extend SetCC uses if necessary.
2724 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2725 SDNode *SetCC = SetCCs[i];
2726 SmallVector<SDOperand, 4> Ops;
2727 for (unsigned j = 0; j != 2; ++j) {
2728 SDOperand SOp = SetCC->getOperand(j);
2729 if (SOp == Trunc)
2730 Ops.push_back(ExtLoad);
2731 else
2732 Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2733 }
2734 Ops.push_back(SetCC->getOperand(2));
2735 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2736 &Ops[0], Ops.size()));
2737 }
2738 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2739 }
Nate Begeman3df4d522005-10-12 20:40:40 +00002740 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002741
2742 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2743 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002744 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2745 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002746 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002747 MVT::ValueType EVT = LN0->getLoadedVT();
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002748 if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2749 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2750 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002751 LN0->getSrcValueOffset(), EVT,
2752 LN0->isVolatile(),
2753 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002754 CombineTo(N, ExtLoad);
2755 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2756 ExtLoad.getValue(1));
2757 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2758 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002759 }
2760
Chris Lattner20a35c32007-04-11 05:32:27 +00002761 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2762 if (N0.getOpcode() == ISD::SETCC) {
2763 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002764 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2765 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2766 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2767 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002768 }
2769
Nate Begeman83e75ec2005-09-06 04:43:02 +00002770 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002771}
2772
Nate Begeman83e75ec2005-09-06 04:43:02 +00002773SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002774 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002775 MVT::ValueType VT = N->getValueType(0);
2776
Nate Begeman1d4d4142005-09-01 00:19:25 +00002777 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002778 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002779 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002780 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002781 // fold (zext (aext x)) -> (zext x)
2782 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002783 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00002784
Evan Chengc88138f2007-03-22 01:54:19 +00002785 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2786 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00002787 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002788 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002789 if (NarrowLoad.Val) {
2790 if (NarrowLoad.Val != N0.Val)
2791 CombineTo(N0.Val, NarrowLoad);
2792 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2793 }
Evan Chengc88138f2007-03-22 01:54:19 +00002794 }
2795
Chris Lattner6007b842006-09-21 06:00:20 +00002796 // fold (zext (truncate x)) -> (and x, mask)
2797 if (N0.getOpcode() == ISD::TRUNCATE &&
2798 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2799 SDOperand Op = N0.getOperand(0);
2800 if (Op.getValueType() < VT) {
2801 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2802 } else if (Op.getValueType() > VT) {
2803 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2804 }
2805 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2806 }
2807
Chris Lattner111c2282006-09-21 06:14:31 +00002808 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2809 if (N0.getOpcode() == ISD::AND &&
2810 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2811 N0.getOperand(1).getOpcode() == ISD::Constant) {
2812 SDOperand X = N0.getOperand(0).getOperand(0);
2813 if (X.getValueType() < VT) {
2814 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2815 } else if (X.getValueType() > VT) {
2816 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2817 }
2818 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2819 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2820 }
2821
Evan Cheng110dec22005-12-14 02:19:23 +00002822 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002823 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002824 (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002825 bool DoXform = true;
2826 SmallVector<SDNode*, 4> SetCCs;
2827 if (!N0.hasOneUse())
2828 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
2829 if (DoXform) {
2830 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2831 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2832 LN0->getBasePtr(), LN0->getSrcValue(),
2833 LN0->getSrcValueOffset(),
2834 N0.getValueType(),
2835 LN0->isVolatile(),
2836 LN0->getAlignment());
2837 CombineTo(N, ExtLoad);
2838 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2839 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2840 // Extend SetCC uses if necessary.
2841 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2842 SDNode *SetCC = SetCCs[i];
2843 SmallVector<SDOperand, 4> Ops;
2844 for (unsigned j = 0; j != 2; ++j) {
2845 SDOperand SOp = SetCC->getOperand(j);
2846 if (SOp == Trunc)
2847 Ops.push_back(ExtLoad);
2848 else
Evan Chengde1631b2007-10-30 20:11:21 +00002849 Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002850 }
2851 Ops.push_back(SetCC->getOperand(2));
2852 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2853 &Ops[0], Ops.size()));
2854 }
2855 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2856 }
Evan Cheng110dec22005-12-14 02:19:23 +00002857 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002858
2859 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2860 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002861 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2862 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002863 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002864 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002865 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2866 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002867 LN0->getSrcValueOffset(), EVT,
2868 LN0->isVolatile(),
2869 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002870 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002871 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2872 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002873 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002874 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002875
2876 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2877 if (N0.getOpcode() == ISD::SETCC) {
2878 SDOperand SCC =
2879 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2880 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00002881 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2882 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002883 }
2884
Nate Begeman83e75ec2005-09-06 04:43:02 +00002885 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002886}
2887
Chris Lattner5ffc0662006-05-05 05:58:59 +00002888SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
2889 SDOperand N0 = N->getOperand(0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00002890 MVT::ValueType VT = N->getValueType(0);
2891
2892 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00002893 if (isa<ConstantSDNode>(N0))
Chris Lattner5ffc0662006-05-05 05:58:59 +00002894 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
2895 // fold (aext (aext x)) -> (aext x)
2896 // fold (aext (zext x)) -> (zext x)
2897 // fold (aext (sext x)) -> (sext x)
2898 if (N0.getOpcode() == ISD::ANY_EXTEND ||
2899 N0.getOpcode() == ISD::ZERO_EXTEND ||
2900 N0.getOpcode() == ISD::SIGN_EXTEND)
2901 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
2902
Evan Chengc88138f2007-03-22 01:54:19 +00002903 // fold (aext (truncate (load x))) -> (aext (smaller load x))
2904 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
2905 if (N0.getOpcode() == ISD::TRUNCATE) {
2906 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002907 if (NarrowLoad.Val) {
2908 if (NarrowLoad.Val != N0.Val)
2909 CombineTo(N0.Val, NarrowLoad);
2910 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
2911 }
Evan Chengc88138f2007-03-22 01:54:19 +00002912 }
2913
Chris Lattner84750582006-09-20 06:29:17 +00002914 // fold (aext (truncate x))
2915 if (N0.getOpcode() == ISD::TRUNCATE) {
2916 SDOperand TruncOp = N0.getOperand(0);
2917 if (TruncOp.getValueType() == VT)
2918 return TruncOp; // x iff x size == zext size.
2919 if (TruncOp.getValueType() > VT)
2920 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
2921 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
2922 }
Chris Lattner0e4b9222006-09-21 06:40:43 +00002923
2924 // fold (aext (and (trunc x), cst)) -> (and x, cst).
2925 if (N0.getOpcode() == ISD::AND &&
2926 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2927 N0.getOperand(1).getOpcode() == ISD::Constant) {
2928 SDOperand X = N0.getOperand(0).getOperand(0);
2929 if (X.getValueType() < VT) {
2930 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2931 } else if (X.getValueType() > VT) {
2932 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2933 }
2934 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2935 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2936 }
2937
Chris Lattner5ffc0662006-05-05 05:58:59 +00002938 // fold (aext (load x)) -> (aext (truncate (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00002939 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00002940 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002941 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2942 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
2943 LN0->getBasePtr(), LN0->getSrcValue(),
2944 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002945 N0.getValueType(),
2946 LN0->isVolatile(),
2947 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002948 CombineTo(N, ExtLoad);
2949 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2950 ExtLoad.getValue(1));
2951 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2952 }
2953
2954 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
2955 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
2956 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002957 if (N0.getOpcode() == ISD::LOAD &&
2958 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng466685d2006-10-09 20:57:25 +00002959 N0.hasOneUse()) {
2960 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002961 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002962 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
2963 LN0->getChain(), LN0->getBasePtr(),
2964 LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002965 LN0->getSrcValueOffset(), EVT,
2966 LN0->isVolatile(),
2967 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002968 CombineTo(N, ExtLoad);
2969 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2970 ExtLoad.getValue(1));
2971 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2972 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002973
2974 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2975 if (N0.getOpcode() == ISD::SETCC) {
2976 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002977 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2978 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00002979 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Chris Lattner1eba01e2007-04-11 06:50:51 +00002980 if (SCC.Val)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00002981 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002982 }
2983
Chris Lattner5ffc0662006-05-05 05:58:59 +00002984 return SDOperand();
2985}
2986
Chris Lattner2b4c2792007-10-13 06:35:54 +00002987/// GetDemandedBits - See if the specified operand can be simplified with the
2988/// knowledge that only the bits specified by Mask are used. If so, return the
2989/// simpler operand, otherwise return a null SDOperand.
2990SDOperand DAGCombiner::GetDemandedBits(SDOperand V, uint64_t Mask) {
2991 switch (V.getOpcode()) {
2992 default: break;
2993 case ISD::OR:
2994 case ISD::XOR:
2995 // If the LHS or RHS don't contribute bits to the or, drop them.
2996 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
2997 return V.getOperand(1);
2998 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
2999 return V.getOperand(0);
3000 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00003001 case ISD::SRL:
3002 // Only look at single-use SRLs.
3003 if (!V.Val->hasOneUse())
3004 break;
3005 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3006 // See if we can recursively simplify the LHS.
3007 unsigned Amt = RHSC->getValue();
3008 Mask = (Mask << Amt) & MVT::getIntVTBitMask(V.getValueType());
3009 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), Mask);
3010 if (SimplifyLHS.Val) {
3011 return DAG.getNode(ISD::SRL, V.getValueType(),
3012 SimplifyLHS, V.getOperand(1));
3013 }
3014 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00003015 }
3016 return SDOperand();
3017}
3018
Evan Chengc88138f2007-03-22 01:54:19 +00003019/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3020/// bits and then truncated to a narrower type and where N is a multiple
3021/// of number of bits of the narrower type, transform it to a narrower load
3022/// from address + N / num of bits of new type. If the result is to be
3023/// extended, also fold the extension to form a extending load.
3024SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3025 unsigned Opc = N->getOpcode();
3026 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3027 SDOperand N0 = N->getOperand(0);
3028 MVT::ValueType VT = N->getValueType(0);
3029 MVT::ValueType EVT = N->getValueType(0);
3030
Evan Chenge177e302007-03-23 22:13:36 +00003031 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3032 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00003033 if (Opc == ISD::SIGN_EXTEND_INREG) {
3034 ExtType = ISD::SEXTLOAD;
3035 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Evan Chenge177e302007-03-23 22:13:36 +00003036 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3037 return SDOperand();
Evan Chengc88138f2007-03-22 01:54:19 +00003038 }
3039
3040 unsigned EVTBits = MVT::getSizeInBits(EVT);
3041 unsigned ShAmt = 0;
Evan Chengb37b80c2007-03-23 20:55:21 +00003042 bool CombineSRL = false;
Evan Chengc88138f2007-03-22 01:54:19 +00003043 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3044 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3045 ShAmt = N01->getValue();
3046 // Is the shift amount a multiple of size of VT?
3047 if ((ShAmt & (EVTBits-1)) == 0) {
3048 N0 = N0.getOperand(0);
3049 if (MVT::getSizeInBits(N0.getValueType()) <= EVTBits)
3050 return SDOperand();
Evan Chengb37b80c2007-03-23 20:55:21 +00003051 CombineSRL = true;
Evan Chengc88138f2007-03-22 01:54:19 +00003052 }
3053 }
3054 }
3055
3056 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3057 // Do not allow folding to i1 here. i1 is implicitly stored in memory in
3058 // zero extended form: by shrinking the load, we lose track of the fact
3059 // that it is already zero extended.
3060 // FIXME: This should be reevaluated.
3061 VT != MVT::i1) {
3062 assert(MVT::getSizeInBits(N0.getValueType()) > EVTBits &&
3063 "Cannot truncate to larger type!");
3064 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3065 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Evan Chengdae54ce2007-03-24 00:02:43 +00003066 // For big endian targets, we need to adjust the offset to the pointer to
3067 // load the correct bytes.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00003068 if (!TLI.isLittleEndian()) {
3069 unsigned LVTStoreBits = MVT::getStoreSizeInBits(N0.getValueType());
3070 unsigned EVTStoreBits = MVT::getStoreSizeInBits(EVT);
3071 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3072 }
Evan Chengdae54ce2007-03-24 00:02:43 +00003073 uint64_t PtrOff = ShAmt / 8;
Duncan Sandsdc846502007-10-28 12:59:45 +00003074 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Evan Chengc88138f2007-03-22 01:54:19 +00003075 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3076 DAG.getConstant(PtrOff, PtrType));
3077 AddToWorkList(NewPtr.Val);
3078 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3079 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003080 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Duncan Sandsdc846502007-10-28 12:59:45 +00003081 LN0->isVolatile(), NewAlign)
Evan Chengc88138f2007-03-22 01:54:19 +00003082 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003083 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00003084 LN0->isVolatile(), NewAlign);
Evan Chengc88138f2007-03-22 01:54:19 +00003085 AddToWorkList(N);
Evan Chengb37b80c2007-03-23 20:55:21 +00003086 if (CombineSRL) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003087 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Evan Chengb37b80c2007-03-23 20:55:21 +00003088 CombineTo(N->getOperand(0).Val, Load);
3089 } else
3090 CombineTo(N0.Val, Load, Load.getValue(1));
Evan Cheng15213b72007-03-26 07:12:51 +00003091 if (ShAmt) {
3092 if (Opc == ISD::SIGN_EXTEND_INREG)
3093 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3094 else
3095 return DAG.getNode(Opc, VT, Load);
3096 }
Evan Chengc88138f2007-03-22 01:54:19 +00003097 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3098 }
3099
3100 return SDOperand();
3101}
3102
Chris Lattner5ffc0662006-05-05 05:58:59 +00003103
Nate Begeman83e75ec2005-09-06 04:43:02 +00003104SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003105 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003106 SDOperand N1 = N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003107 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003108 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Nate Begeman07ed4172005-10-10 21:26:48 +00003109 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003110
Nate Begeman1d4d4142005-09-01 00:19:25 +00003111 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00003112 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Chris Lattner310b5782006-05-06 23:06:26 +00003113 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
Chris Lattneree4ea922006-05-06 09:30:03 +00003114
Chris Lattner541a24f2006-05-06 22:43:44 +00003115 // If the input is already sign extended, just drop the extension.
Dan Gohmanea859be2007-06-22 14:59:07 +00003116 if (DAG.ComputeNumSignBits(N0) >= MVT::getSizeInBits(VT)-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00003117 return N0;
3118
Nate Begeman646d7e22005-09-02 21:18:40 +00003119 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3120 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3121 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00003122 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003123 }
Chris Lattner4b37e872006-05-08 21:18:59 +00003124
Chris Lattner95a5e052007-04-17 19:03:21 +00003125 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohmanea859be2007-06-22 14:59:07 +00003126 if (DAG.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
Nate Begemande996292006-02-03 22:24:05 +00003127 return DAG.getZeroExtendInReg(N0, EVT);
Chris Lattner4b37e872006-05-08 21:18:59 +00003128
Chris Lattner95a5e052007-04-17 19:03:21 +00003129 // fold operands of sext_in_reg based on knowledge that the top bits are not
3130 // demanded.
3131 if (SimplifyDemandedBits(SDOperand(N, 0)))
3132 return SDOperand(N, 0);
3133
Evan Chengc88138f2007-03-22 01:54:19 +00003134 // fold (sext_in_reg (load x)) -> (smaller sextload x)
3135 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3136 SDOperand NarrowLoad = ReduceLoadWidth(N);
3137 if (NarrowLoad.Val)
3138 return NarrowLoad;
3139
Chris Lattner4b37e872006-05-08 21:18:59 +00003140 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3141 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3142 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3143 if (N0.getOpcode() == ISD::SRL) {
3144 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
3145 if (ShAmt->getValue()+EVTBits <= MVT::getSizeInBits(VT)) {
3146 // We can turn this into an SRA iff the input to the SRL is already sign
3147 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00003148 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Chris Lattner4b37e872006-05-08 21:18:59 +00003149 if (MVT::getSizeInBits(VT)-(ShAmt->getValue()+EVTBits) < InSignBits)
3150 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3151 }
3152 }
Evan Chengc88138f2007-03-22 01:54:19 +00003153
Nate Begemanded49632005-10-13 03:11:28 +00003154 // fold (sext_inreg (extload x)) -> (sextload x)
Evan Chengc5484282006-10-04 00:56:09 +00003155 if (ISD::isEXTLoad(N0.Val) &&
Evan Cheng83060c52007-03-07 08:07:03 +00003156 ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003157 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003158 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003159 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3160 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3161 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003162 LN0->getSrcValueOffset(), EVT,
3163 LN0->isVolatile(),
3164 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003165 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003166 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003167 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003168 }
3169 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00003170 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3171 N0.hasOneUse() &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003172 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003173 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003174 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3175 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3176 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003177 LN0->getSrcValueOffset(), EVT,
3178 LN0->isVolatile(),
3179 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003180 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003181 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003182 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003183 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003184 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003185}
3186
Nate Begeman83e75ec2005-09-06 04:43:02 +00003187SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003188 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003189 MVT::ValueType VT = N->getValueType(0);
3190
3191 // noop truncate
3192 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003193 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003194 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003195 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00003196 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003197 // fold (truncate (truncate x)) -> (truncate x)
3198 if (N0.getOpcode() == ISD::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 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattnerb72773b2006-05-05 22:56:26 +00003201 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3202 N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003203 if (N0.getOperand(0).getValueType() < VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003204 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00003205 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003206 else if (N0.getOperand(0).getValueType() > VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003207 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003208 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003209 else
3210 // if the source and dest are the same type, we can drop both the extend
3211 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003212 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003213 }
Evan Cheng007b69e2007-03-21 20:14:05 +00003214
Chris Lattner2b4c2792007-10-13 06:35:54 +00003215 // See if we can simplify the input to this truncate through knowledge that
3216 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3217 // -> trunc y
3218 SDOperand Shorter = GetDemandedBits(N0, MVT::getIntVTBitMask(VT));
3219 if (Shorter.Val)
3220 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3221
Nate Begeman3df4d522005-10-12 20:40:40 +00003222 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00003223 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Evan Chengc88138f2007-03-22 01:54:19 +00003224 return ReduceLoadWidth(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003225}
3226
Chris Lattner94683772005-12-23 05:30:37 +00003227SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3228 SDOperand N0 = N->getOperand(0);
3229 MVT::ValueType VT = N->getValueType(0);
3230
Dan Gohman7f321562007-06-25 16:23:39 +00003231 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3232 // Only do this before legalize, since afterward the target may be depending
3233 // on the bitconvert.
3234 // First check to see if this is all constant.
3235 if (!AfterLegalize &&
3236 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
3237 MVT::isVector(VT)) {
3238 bool isSimple = true;
3239 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3240 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3241 N0.getOperand(i).getOpcode() != ISD::Constant &&
3242 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3243 isSimple = false;
3244 break;
3245 }
3246
3247 MVT::ValueType DestEltVT = MVT::getVectorElementType(N->getValueType(0));
3248 assert(!MVT::isVector(DestEltVT) &&
3249 "Element type of vector ValueType must not be vector!");
3250 if (isSimple) {
3251 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3252 }
3253 }
3254
Chris Lattner94683772005-12-23 05:30:37 +00003255 // If the input is a constant, let getNode() fold it.
3256 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3257 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3258 if (Res.Val != N) return Res;
3259 }
3260
Chris Lattnerc8547d82005-12-23 05:37:50 +00003261 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3262 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00003263
Chris Lattner57104102005-12-23 05:44:41 +00003264 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00003265 // If the resultant load doesn't need a higher alignment than the original!
3266 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Evan Cheng59d5b682007-05-07 21:27:48 +00003267 TLI.isOperationLegal(ISD::LOAD, VT)) {
Evan Cheng466685d2006-10-09 20:57:25 +00003268 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng59d5b682007-05-07 21:27:48 +00003269 unsigned Align = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00003270 getABITypeAlignment(MVT::getTypeForValueType(VT));
Evan Cheng59d5b682007-05-07 21:27:48 +00003271 unsigned OrigAlign = LN0->getAlignment();
3272 if (Align <= OrigAlign) {
3273 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3274 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003275 LN0->isVolatile(), Align);
Evan Cheng59d5b682007-05-07 21:27:48 +00003276 AddToWorkList(N);
3277 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3278 Load.getValue(1));
3279 return Load;
3280 }
Chris Lattner57104102005-12-23 05:44:41 +00003281 }
3282
Chris Lattner94683772005-12-23 05:30:37 +00003283 return SDOperand();
3284}
3285
Dan Gohman7f321562007-06-25 16:23:39 +00003286/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
Chris Lattner6258fb22006-04-02 02:53:43 +00003287/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3288/// destination element value type.
3289SDOperand DAGCombiner::
Dan Gohman7f321562007-06-25 16:23:39 +00003290ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003291 MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
3292
3293 // If this is already the right type, we're done.
3294 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3295
3296 unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
3297 unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
3298
3299 // If this is a conversion of N elements of one type to N elements of another
3300 // type, convert each element. This handles FP<->INT cases.
3301 if (SrcBitSize == DstBitSize) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003302 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003303 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003304 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
Chris Lattner3e104b12006-04-08 04:15:24 +00003305 AddToWorkList(Ops.back().Val);
3306 }
Dan Gohman7f321562007-06-25 16:23:39 +00003307 MVT::ValueType VT =
3308 MVT::getVectorType(DstEltVT,
3309 MVT::getVectorNumElements(BV->getValueType(0)));
3310 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003311 }
3312
3313 // Otherwise, we're growing or shrinking the elements. To avoid having to
3314 // handle annoying details of growing/shrinking FP values, we convert them to
3315 // int first.
3316 if (MVT::isFloatingPoint(SrcEltVT)) {
3317 // Convert the input float vector to a int vector where the elements are the
3318 // same sizes.
3319 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
3320 MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003321 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003322 SrcEltVT = IntVT;
3323 }
3324
3325 // Now we know the input is an integer vector. If the output is a FP type,
3326 // convert to integer first, then to FP of the right size.
3327 if (MVT::isFloatingPoint(DstEltVT)) {
3328 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
3329 MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003330 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003331
3332 // Next, convert to FP elements of the same size.
Dan Gohman7f321562007-06-25 16:23:39 +00003333 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00003334 }
3335
3336 // Okay, we know the src/dst types are both integers of differing types.
3337 // Handling growing first.
3338 assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
3339 if (SrcBitSize < DstBitSize) {
3340 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3341
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003342 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003343 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00003344 i += NumInputsPerOutput) {
3345 bool isLE = TLI.isLittleEndian();
3346 uint64_t NewBits = 0;
3347 bool EltIsUndef = true;
3348 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3349 // Shift the previously computed bits over.
3350 NewBits <<= SrcBitSize;
3351 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3352 if (Op.getOpcode() == ISD::UNDEF) continue;
3353 EltIsUndef = false;
3354
3355 NewBits |= cast<ConstantSDNode>(Op)->getValue();
3356 }
3357
3358 if (EltIsUndef)
3359 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3360 else
3361 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3362 }
3363
Dan Gohman7f321562007-06-25 16:23:39 +00003364 MVT::ValueType VT = MVT::getVectorType(DstEltVT,
3365 Ops.size());
3366 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003367 }
3368
3369 // Finally, this must be the case where we are shrinking elements: each input
3370 // turns into multiple outputs.
3371 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003372 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003373 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003374 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3375 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3376 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3377 continue;
3378 }
3379 uint64_t OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getValue();
3380
3381 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
3382 unsigned ThisVal = OpVal & ((1ULL << DstBitSize)-1);
3383 OpVal >>= DstBitSize;
3384 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
3385 }
3386
3387 // For big endian targets, swap the order of the pieces of each element.
3388 if (!TLI.isLittleEndian())
3389 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3390 }
Dan Gohman7f321562007-06-25 16:23:39 +00003391 MVT::ValueType VT = MVT::getVectorType(DstEltVT, Ops.size());
3392 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003393}
3394
3395
3396
Chris Lattner01b3d732005-09-28 22:28:18 +00003397SDOperand DAGCombiner::visitFADD(SDNode *N) {
3398 SDOperand N0 = N->getOperand(0);
3399 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003400 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3401 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003402 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003403
Dan Gohman7f321562007-06-25 16:23:39 +00003404 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003405 if (MVT::isVector(VT)) {
3406 SDOperand FoldedVOp = SimplifyVBinOp(N);
3407 if (FoldedVOp.Val) return FoldedVOp;
3408 }
Dan Gohman7f321562007-06-25 16:23:39 +00003409
Nate Begemana0e221d2005-10-18 00:28:13 +00003410 // fold (fadd c1, c2) -> c1+c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003411 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003412 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003413 // canonicalize constant to RHS
3414 if (N0CFP && !N1CFP)
3415 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003416 // fold (A + (-B)) -> A-B
Chris Lattner29446522007-05-14 22:04:50 +00003417 if (isNegatibleForFree(N1) == 2)
3418 return DAG.getNode(ISD::FSUB, VT, N0, GetNegatedExpression(N1, DAG));
Chris Lattner01b3d732005-09-28 22:28:18 +00003419 // fold ((-A) + B) -> B-A
Chris Lattner29446522007-05-14 22:04:50 +00003420 if (isNegatibleForFree(N0) == 2)
3421 return DAG.getNode(ISD::FSUB, VT, N1, GetNegatedExpression(N0, DAG));
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003422
3423 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3424 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3425 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3426 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3427 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3428
Chris Lattner01b3d732005-09-28 22:28:18 +00003429 return SDOperand();
3430}
3431
3432SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3433 SDOperand N0 = N->getOperand(0);
3434 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003435 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3436 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003437 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003438
Dan Gohman7f321562007-06-25 16:23:39 +00003439 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003440 if (MVT::isVector(VT)) {
3441 SDOperand FoldedVOp = SimplifyVBinOp(N);
3442 if (FoldedVOp.Val) return FoldedVOp;
3443 }
Dan Gohman7f321562007-06-25 16:23:39 +00003444
Nate Begemana0e221d2005-10-18 00:28:13 +00003445 // fold (fsub c1, c2) -> c1-c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003446 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003447 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00003448 // fold (0-B) -> -B
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003449 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Dan Gohman23ff1822007-07-02 15:48:56 +00003450 if (isNegatibleForFree(N1))
3451 return GetNegatedExpression(N1, DAG);
3452 return DAG.getNode(ISD::FNEG, VT, N1);
3453 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003454 // fold (A-(-B)) -> A+B
Chris Lattner29446522007-05-14 22:04:50 +00003455 if (isNegatibleForFree(N1))
3456 return DAG.getNode(ISD::FADD, VT, N0, GetNegatedExpression(N1, DAG));
3457
Chris Lattner01b3d732005-09-28 22:28:18 +00003458 return SDOperand();
3459}
3460
3461SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3462 SDOperand N0 = N->getOperand(0);
3463 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003464 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3465 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003466 MVT::ValueType VT = N->getValueType(0);
3467
Dan Gohman7f321562007-06-25 16:23:39 +00003468 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003469 if (MVT::isVector(VT)) {
3470 SDOperand FoldedVOp = SimplifyVBinOp(N);
3471 if (FoldedVOp.Val) return FoldedVOp;
3472 }
Dan Gohman7f321562007-06-25 16:23:39 +00003473
Nate Begeman11af4ea2005-10-17 20:40:11 +00003474 // fold (fmul c1, c2) -> c1*c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003475 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003476 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003477 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003478 if (N0CFP && !N1CFP)
3479 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003480 // fold (fmul X, 2.0) -> (fadd X, X)
3481 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3482 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner29446522007-05-14 22:04:50 +00003483 // fold (fmul X, -1.0) -> (fneg X)
3484 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3485 return DAG.getNode(ISD::FNEG, VT, N0);
3486
3487 // -X * -Y -> X*Y
3488 if (char LHSNeg = isNegatibleForFree(N0)) {
3489 if (char RHSNeg = isNegatibleForFree(N1)) {
3490 // Both can be negated for free, check to see if at least one is cheaper
3491 // negated.
3492 if (LHSNeg == 2 || RHSNeg == 2)
3493 return DAG.getNode(ISD::FMUL, VT, GetNegatedExpression(N0, DAG),
3494 GetNegatedExpression(N1, DAG));
3495 }
3496 }
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003497
3498 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3499 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3500 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3501 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3502 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3503
Chris Lattner01b3d732005-09-28 22:28:18 +00003504 return SDOperand();
3505}
3506
3507SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3508 SDOperand N0 = N->getOperand(0);
3509 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003510 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3511 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003512 MVT::ValueType VT = N->getValueType(0);
3513
Dan Gohman7f321562007-06-25 16:23:39 +00003514 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003515 if (MVT::isVector(VT)) {
3516 SDOperand FoldedVOp = SimplifyVBinOp(N);
3517 if (FoldedVOp.Val) return FoldedVOp;
3518 }
Dan Gohman7f321562007-06-25 16:23:39 +00003519
Nate Begemana148d982006-01-18 22:35:16 +00003520 // fold (fdiv c1, c2) -> c1/c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003521 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003522 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner29446522007-05-14 22:04:50 +00003523
3524
3525 // -X / -Y -> X*Y
3526 if (char LHSNeg = isNegatibleForFree(N0)) {
3527 if (char RHSNeg = isNegatibleForFree(N1)) {
3528 // Both can be negated for free, check to see if at least one is cheaper
3529 // negated.
3530 if (LHSNeg == 2 || RHSNeg == 2)
3531 return DAG.getNode(ISD::FDIV, VT, GetNegatedExpression(N0, DAG),
3532 GetNegatedExpression(N1, DAG));
3533 }
3534 }
3535
Chris Lattner01b3d732005-09-28 22:28:18 +00003536 return SDOperand();
3537}
3538
3539SDOperand DAGCombiner::visitFREM(SDNode *N) {
3540 SDOperand N0 = N->getOperand(0);
3541 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003542 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3543 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003544 MVT::ValueType VT = N->getValueType(0);
3545
Nate Begemana148d982006-01-18 22:35:16 +00003546 // fold (frem c1, c2) -> fmod(c1,c2)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003547 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003548 return DAG.getNode(ISD::FREM, VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00003549
Chris Lattner01b3d732005-09-28 22:28:18 +00003550 return SDOperand();
3551}
3552
Chris Lattner12d83032006-03-05 05:30:57 +00003553SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3554 SDOperand N0 = N->getOperand(0);
3555 SDOperand N1 = N->getOperand(1);
3556 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3557 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3558 MVT::ValueType VT = N->getValueType(0);
3559
Dale Johannesendb44bf82007-10-16 23:38:29 +00003560 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Chris Lattner12d83032006-03-05 05:30:57 +00003561 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3562
3563 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00003564 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00003565 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3566 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen87503a62007-08-25 22:10:57 +00003567 if (!V.isNegative())
Chris Lattner12d83032006-03-05 05:30:57 +00003568 return DAG.getNode(ISD::FABS, VT, N0);
3569 else
3570 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3571 }
3572
3573 // copysign(fabs(x), y) -> copysign(x, y)
3574 // copysign(fneg(x), y) -> copysign(x, y)
3575 // copysign(copysign(x,z), y) -> copysign(x, y)
3576 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3577 N0.getOpcode() == ISD::FCOPYSIGN)
3578 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3579
3580 // copysign(x, abs(y)) -> abs(x)
3581 if (N1.getOpcode() == ISD::FABS)
3582 return DAG.getNode(ISD::FABS, VT, N0);
3583
3584 // copysign(x, copysign(y,z)) -> copysign(x, z)
3585 if (N1.getOpcode() == ISD::FCOPYSIGN)
3586 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3587
3588 // copysign(x, fp_extend(y)) -> copysign(x, y)
3589 // copysign(x, fp_round(y)) -> copysign(x, y)
3590 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3591 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3592
3593 return SDOperand();
3594}
3595
3596
Chris Lattner01b3d732005-09-28 22:28:18 +00003597
Nate Begeman83e75ec2005-09-06 04:43:02 +00003598SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003599 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003600 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003601 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003602
3603 // fold (sint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003604 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003605 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003606 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003607}
3608
Nate Begeman83e75ec2005-09-06 04:43:02 +00003609SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003610 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003611 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003612 MVT::ValueType VT = N->getValueType(0);
3613
Nate Begeman1d4d4142005-09-01 00:19:25 +00003614 // fold (uint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003615 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003616 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003617 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003618}
3619
Nate Begeman83e75ec2005-09-06 04:43:02 +00003620SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003621 SDOperand N0 = N->getOperand(0);
3622 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3623 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003624
3625 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003626 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003627 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003628 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003629}
3630
Nate Begeman83e75ec2005-09-06 04:43:02 +00003631SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003632 SDOperand N0 = N->getOperand(0);
3633 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3634 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003635
3636 // fold (fp_to_uint c1fp) -> c1
Dale Johannesendb44bf82007-10-16 23:38:29 +00003637 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003638 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003639 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003640}
3641
Nate Begeman83e75ec2005-09-06 04:43:02 +00003642SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003643 SDOperand N0 = N->getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003644 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003645 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3646 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003647
3648 // fold (fp_round c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003649 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Chris Lattner0bd48932008-01-17 07:00:52 +00003650 return DAG.getNode(ISD::FP_ROUND, VT, N0, N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003651
3652 // fold (fp_round (fp_extend x)) -> x
3653 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3654 return N0.getOperand(0);
3655
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00003656 // fold (fp_round (fp_round x)) -> (fp_round x)
3657 if (N0.getOpcode() == ISD::FP_ROUND) {
3658 // This is a value preserving truncation if both round's are.
3659 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
3660 N0.Val->getConstantOperandVal(1) == 1;
3661 return DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0),
3662 DAG.getIntPtrConstant(IsTrunc));
3663 }
3664
Chris Lattner79dbea52006-03-13 06:26:26 +00003665 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3666 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003667 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0), N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003668 AddToWorkList(Tmp.Val);
3669 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3670 }
3671
Nate Begeman83e75ec2005-09-06 04:43:02 +00003672 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003673}
3674
Nate Begeman83e75ec2005-09-06 04:43:02 +00003675SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003676 SDOperand N0 = N->getOperand(0);
3677 MVT::ValueType VT = N->getValueType(0);
3678 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00003679 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003680
Nate Begeman1d4d4142005-09-01 00:19:25 +00003681 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003682 if (N0CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003683 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003684 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003685 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003686 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003687}
3688
Nate Begeman83e75ec2005-09-06 04:43:02 +00003689SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003690 SDOperand N0 = N->getOperand(0);
3691 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3692 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003693
Chris Lattner5938bef2007-12-29 06:55:23 +00003694 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
3695 if (N->hasOneUse() && (*N->use_begin())->getOpcode() == ISD::FP_ROUND)
3696 return SDOperand();
Chris Lattner0bd48932008-01-17 07:00:52 +00003697
Nate Begeman1d4d4142005-09-01 00:19:25 +00003698 // fold (fp_extend c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003699 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003700 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003701
3702 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
3703 // value of X.
3704 if (N0.getOpcode() == ISD::FP_ROUND && N0.Val->getConstantOperandVal(1) == 1){
3705 SDOperand In = N0.getOperand(0);
3706 if (In.getValueType() == VT) return In;
3707 if (VT < In.getValueType())
3708 return DAG.getNode(ISD::FP_ROUND, VT, In, N0.getOperand(1));
3709 return DAG.getNode(ISD::FP_EXTEND, VT, In);
3710 }
3711
3712 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Dale Johannesenb6210fc2007-10-19 20:29:00 +00003713 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003714 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003715 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3716 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3717 LN0->getBasePtr(), LN0->getSrcValue(),
3718 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003719 N0.getValueType(),
3720 LN0->isVolatile(),
3721 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00003722 CombineTo(N, ExtLoad);
Chris Lattner0bd48932008-01-17 07:00:52 +00003723 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad,
3724 DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00003725 ExtLoad.getValue(1));
3726 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3727 }
3728
3729
Nate Begeman83e75ec2005-09-06 04:43:02 +00003730 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003731}
3732
Nate Begeman83e75ec2005-09-06 04:43:02 +00003733SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003734 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00003735
Dan Gohman23ff1822007-07-02 15:48:56 +00003736 if (isNegatibleForFree(N0))
3737 return GetNegatedExpression(N0, DAG);
3738
Nate Begeman83e75ec2005-09-06 04:43:02 +00003739 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003740}
3741
Nate Begeman83e75ec2005-09-06 04:43:02 +00003742SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003743 SDOperand N0 = N->getOperand(0);
3744 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3745 MVT::ValueType VT = N->getValueType(0);
3746
Nate Begeman1d4d4142005-09-01 00:19:25 +00003747 // fold (fabs c1) -> fabs(c1)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003748 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003749 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003750 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003751 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003752 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003753 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003754 // fold (fabs (fcopysign x, y)) -> (fabs x)
3755 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
3756 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
3757
Nate Begeman83e75ec2005-09-06 04:43:02 +00003758 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003759}
3760
Nate Begeman44728a72005-09-19 22:34:01 +00003761SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
3762 SDOperand Chain = N->getOperand(0);
3763 SDOperand N1 = N->getOperand(1);
3764 SDOperand N2 = N->getOperand(2);
3765 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3766
3767 // never taken branch, fold to chain
3768 if (N1C && N1C->isNullValue())
3769 return Chain;
3770 // unconditional branch
Nate Begemane17daeb2005-10-05 21:43:42 +00003771 if (N1C && N1C->getValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00003772 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003773 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
3774 // on the target.
3775 if (N1.getOpcode() == ISD::SETCC &&
3776 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
3777 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
3778 N1.getOperand(0), N1.getOperand(1), N2);
3779 }
Nate Begeman44728a72005-09-19 22:34:01 +00003780 return SDOperand();
3781}
3782
Chris Lattner3ea0b472005-10-05 06:47:48 +00003783// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
3784//
Nate Begeman44728a72005-09-19 22:34:01 +00003785SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00003786 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
3787 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
3788
3789 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00003790 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
Chris Lattner30f73e72006-10-14 03:52:46 +00003791 if (Simp.Val) AddToWorkList(Simp.Val);
3792
Nate Begemane17daeb2005-10-05 21:43:42 +00003793 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
3794
3795 // fold br_cc true, dest -> br dest (unconditional branch)
3796 if (SCCC && SCCC->getValue())
3797 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
3798 N->getOperand(4));
3799 // fold br_cc false, dest -> unconditional fall through
3800 if (SCCC && SCCC->isNullValue())
3801 return N->getOperand(0);
Chris Lattner30f73e72006-10-14 03:52:46 +00003802
Nate Begemane17daeb2005-10-05 21:43:42 +00003803 // fold to a simpler setcc
3804 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
3805 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
3806 Simp.getOperand(2), Simp.getOperand(0),
3807 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00003808 return SDOperand();
3809}
3810
Chris Lattner448f2192006-11-11 00:39:41 +00003811
3812/// CombineToPreIndexedLoadStore - Try turning a load / store and a
3813/// pre-indexed load / store when the base pointer is a add or subtract
3814/// and it has other uses besides the load / store. After the
3815/// transformation, the new indexed load / store has effectively folded
3816/// the add / subtract in and all of its other uses are redirected to the
3817/// new load / store.
3818bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
3819 if (!AfterLegalize)
3820 return false;
3821
3822 bool isLoad = true;
3823 SDOperand Ptr;
3824 MVT::ValueType VT;
3825 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003826 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003827 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003828 VT = LD->getLoadedVT();
Evan Cheng83060c52007-03-07 08:07:03 +00003829 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00003830 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
3831 return false;
3832 Ptr = LD->getBasePtr();
3833 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003834 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003835 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003836 VT = ST->getStoredVT();
3837 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
3838 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
3839 return false;
3840 Ptr = ST->getBasePtr();
3841 isLoad = false;
3842 } else
3843 return false;
3844
Chris Lattner9f1794e2006-11-11 00:56:29 +00003845 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
3846 // out. There is no reason to make this a preinc/predec.
3847 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
3848 Ptr.Val->hasOneUse())
3849 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003850
Chris Lattner9f1794e2006-11-11 00:56:29 +00003851 // Ask the target to do addressing mode selection.
3852 SDOperand BasePtr;
3853 SDOperand Offset;
3854 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3855 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
3856 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00003857 // Don't create a indexed load / store with zero offset.
3858 if (isa<ConstantSDNode>(Offset) &&
3859 cast<ConstantSDNode>(Offset)->getValue() == 0)
3860 return false;
Chris Lattner9f1794e2006-11-11 00:56:29 +00003861
Chris Lattner41e53fd2006-11-11 01:00:15 +00003862 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00003863 // 1) The new base ptr is a frame index.
3864 // 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 +00003865 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00003866 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00003867 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00003868 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00003869
Chris Lattner41e53fd2006-11-11 01:00:15 +00003870 // Check #1. Preinc'ing a frame index would require copying the stack pointer
3871 // (plus the implicit offset) to a register to preinc anyway.
3872 if (isa<FrameIndexSDNode>(BasePtr))
3873 return false;
3874
3875 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003876 if (!isLoad) {
3877 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Chengc843abe2007-05-24 02:35:39 +00003878 if (Val == BasePtr || BasePtr.Val->isPredecessor(Val.Val))
Chris Lattner9f1794e2006-11-11 00:56:29 +00003879 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003880 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003881
Evan Chengc843abe2007-05-24 02:35:39 +00003882 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003883 bool RealUse = false;
3884 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3885 E = Ptr.Val->use_end(); I != E; ++I) {
3886 SDNode *Use = *I;
3887 if (Use == N)
3888 continue;
3889 if (Use->isPredecessor(N))
3890 return false;
3891
3892 if (!((Use->getOpcode() == ISD::LOAD &&
3893 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
3894 (Use->getOpcode() == ISD::STORE) &&
3895 cast<StoreSDNode>(Use)->getBasePtr() == Ptr))
3896 RealUse = true;
3897 }
3898 if (!RealUse)
3899 return false;
3900
3901 SDOperand Result;
3902 if (isLoad)
3903 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
3904 else
3905 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
3906 ++PreIndexedNodes;
3907 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00003908 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00003909 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
3910 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00003911 std::vector<SDNode*> NowDead;
3912 if (isLoad) {
3913 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003914 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003915 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00003916 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003917 } else {
3918 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00003919 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003920 }
3921
3922 // Nodes can end up on the worklist more than once. Make sure we do
3923 // not process a node that has been replaced.
3924 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3925 removeFromWorkList(NowDead[i]);
3926 // Finally, since the node is now dead, remove it from the graph.
3927 DAG.DeleteNode(N);
3928
3929 // Replace the uses of Ptr with uses of the updated base value.
3930 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003931 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003932 removeFromWorkList(Ptr.Val);
3933 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3934 removeFromWorkList(NowDead[i]);
3935 DAG.DeleteNode(Ptr.Val);
3936
3937 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00003938}
3939
3940/// CombineToPostIndexedLoadStore - Try combine a load / store with a
3941/// add / sub of the base pointer node into a post-indexed load / store.
3942/// The transformation folded the add / subtract into the new indexed
3943/// load / store effectively and all of its uses are redirected to the
3944/// new load / store.
3945bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
3946 if (!AfterLegalize)
3947 return false;
3948
3949 bool isLoad = true;
3950 SDOperand Ptr;
3951 MVT::ValueType VT;
3952 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003953 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003954 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003955 VT = LD->getLoadedVT();
3956 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
3957 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
3958 return false;
3959 Ptr = LD->getBasePtr();
3960 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003961 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003962 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003963 VT = ST->getStoredVT();
3964 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
3965 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
3966 return false;
3967 Ptr = ST->getBasePtr();
3968 isLoad = false;
3969 } else
3970 return false;
3971
Evan Chengcc470212006-11-16 00:08:20 +00003972 if (Ptr.Val->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00003973 return false;
3974
3975 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3976 E = Ptr.Val->use_end(); I != E; ++I) {
3977 SDNode *Op = *I;
3978 if (Op == N ||
3979 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
3980 continue;
3981
3982 SDOperand BasePtr;
3983 SDOperand Offset;
3984 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3985 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
3986 if (Ptr == Offset)
3987 std::swap(BasePtr, Offset);
3988 if (Ptr != BasePtr)
Chris Lattner448f2192006-11-11 00:39:41 +00003989 continue;
Evan Chenga7d4a042007-05-03 23:52:19 +00003990 // Don't create a indexed load / store with zero offset.
3991 if (isa<ConstantSDNode>(Offset) &&
3992 cast<ConstantSDNode>(Offset)->getValue() == 0)
3993 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00003994
Chris Lattner9f1794e2006-11-11 00:56:29 +00003995 // Try turning it into a post-indexed load / store except when
3996 // 1) All uses are load / store ops that use it as base ptr.
3997 // 2) Op must be independent of N, i.e. Op is neither a predecessor
3998 // nor a successor of N. Otherwise, if Op is folded that would
3999 // create a cycle.
4000
4001 // Check for #1.
4002 bool TryNext = false;
4003 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
4004 EE = BasePtr.Val->use_end(); II != EE; ++II) {
4005 SDNode *Use = *II;
4006 if (Use == Ptr.Val)
Chris Lattner448f2192006-11-11 00:39:41 +00004007 continue;
4008
Chris Lattner9f1794e2006-11-11 00:56:29 +00004009 // If all the uses are load / store addresses, then don't do the
4010 // transformation.
4011 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
4012 bool RealUse = false;
4013 for (SDNode::use_iterator III = Use->use_begin(),
4014 EEE = Use->use_end(); III != EEE; ++III) {
4015 SDNode *UseUse = *III;
4016 if (!((UseUse->getOpcode() == ISD::LOAD &&
4017 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
4018 (UseUse->getOpcode() == ISD::STORE) &&
4019 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use))
4020 RealUse = true;
4021 }
Chris Lattner448f2192006-11-11 00:39:41 +00004022
Chris Lattner9f1794e2006-11-11 00:56:29 +00004023 if (!RealUse) {
4024 TryNext = true;
4025 break;
Chris Lattner448f2192006-11-11 00:39:41 +00004026 }
4027 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004028 }
4029 if (TryNext)
4030 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004031
Chris Lattner9f1794e2006-11-11 00:56:29 +00004032 // Check for #2
4033 if (!Op->isPredecessor(N) && !N->isPredecessor(Op)) {
4034 SDOperand Result = isLoad
4035 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4036 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4037 ++PostIndexedNodes;
4038 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004039 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004040 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4041 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00004042 std::vector<SDNode*> NowDead;
4043 if (isLoad) {
4044 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004045 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004046 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00004047 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004048 } else {
4049 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00004050 &NowDead);
Chris Lattner448f2192006-11-11 00:39:41 +00004051 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004052
4053 // Nodes can end up on the worklist more than once. Make sure we do
4054 // not process a node that has been replaced.
4055 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4056 removeFromWorkList(NowDead[i]);
4057 // Finally, since the node is now dead, remove it from the graph.
4058 DAG.DeleteNode(N);
4059
4060 // Replace the uses of Use with uses of the updated base value.
4061 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4062 Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004063 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004064 removeFromWorkList(Op);
4065 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4066 removeFromWorkList(NowDead[i]);
4067 DAG.DeleteNode(Op);
4068
4069 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004070 }
4071 }
4072 }
4073 return false;
4074}
4075
4076
Chris Lattner01a22022005-10-10 22:04:48 +00004077SDOperand DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00004078 LoadSDNode *LD = cast<LoadSDNode>(N);
4079 SDOperand Chain = LD->getChain();
4080 SDOperand Ptr = LD->getBasePtr();
Evan Cheng45a7ca92007-05-01 00:38:21 +00004081
4082 // If load is not volatile and there are no uses of the loaded value (and
4083 // the updated indexed value in case of indexed loads), change uses of the
4084 // chain value into uses of the chain input (i.e. delete the dead load).
4085 if (!LD->isVolatile()) {
Evan Cheng498f5592007-05-01 08:53:39 +00004086 if (N->getValueType(1) == MVT::Other) {
4087 // Unindexed loads.
Evan Cheng02c42852008-01-16 23:11:54 +00004088 if (N->hasNUsesOfValue(0, 0)) {
4089 // It's not safe to use the two value CombineTo variant here. e.g.
4090 // v1, chain2 = load chain1, loc
4091 // v2, chain3 = load chain2, loc
4092 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00004093 // Now we replace use of chain2 with chain1. This makes the second load
4094 // isomorphic to the one we are deleting, and thus makes this load live.
Evan Cheng02c42852008-01-16 23:11:54 +00004095 std::vector<SDNode*> NowDead;
Evan Cheng02c42852008-01-16 23:11:54 +00004096 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
Chris Lattner125991a2008-01-24 07:57:06 +00004097 DOUT << "\nWith chain: "; DEBUG(Chain.Val->dump(&DAG));
4098 DOUT << "\n";
Evan Cheng02c42852008-01-16 23:11:54 +00004099 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Chain, &NowDead);
Evan Cheng02c42852008-01-16 23:11:54 +00004100 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4101 removeFromWorkList(NowDead[i]);
Chris Lattner125991a2008-01-24 07:57:06 +00004102 if (N->use_empty()) {
4103 removeFromWorkList(N);
4104 DAG.DeleteNode(N);
4105 }
Evan Cheng02c42852008-01-16 23:11:54 +00004106 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
4107 }
Evan Cheng498f5592007-05-01 08:53:39 +00004108 } else {
4109 // Indexed loads.
4110 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4111 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
Evan Cheng02c42852008-01-16 23:11:54 +00004112 std::vector<SDNode*> NowDead;
4113 SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4114 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4115 DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4116 DOUT << " and 2 other values\n";
4117 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &NowDead);
4118 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
Chris Lattner4626b252008-01-17 07:20:38 +00004119 DAG.getNode(ISD::UNDEF, N->getValueType(1)),
Evan Cheng02c42852008-01-16 23:11:54 +00004120 &NowDead);
4121 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 2), Chain, &NowDead);
4122 removeFromWorkList(N);
4123 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4124 removeFromWorkList(NowDead[i]);
4125 DAG.DeleteNode(N);
4126 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00004127 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00004128 }
4129 }
Chris Lattner01a22022005-10-10 22:04:48 +00004130
4131 // If this load is directly stored, replace the load value with the stored
4132 // value.
4133 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004134 // TODO: Handle TRUNCSTORE/LOADEXT
4135 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004136 if (ISD::isNON_TRUNCStore(Chain.Val)) {
4137 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4138 if (PrevST->getBasePtr() == Ptr &&
4139 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004140 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00004141 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004142 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00004143
Jim Laskey7ca56af2006-10-11 13:47:09 +00004144 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00004145 // Walk up chain skipping non-aliasing memory nodes.
4146 SDOperand BetterChain = FindBetterChain(N, Chain);
4147
Jim Laskey6ff23e52006-10-04 16:53:27 +00004148 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004149 if (Chain != BetterChain) {
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004150 SDOperand ReplLoad;
4151
Jim Laskey279f0532006-09-25 16:29:54 +00004152 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004153 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4154 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Duncan Sandsdc846502007-10-28 12:59:45 +00004155 LD->getSrcValue(), LD->getSrcValueOffset(),
4156 LD->isVolatile(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004157 } else {
4158 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4159 LD->getValueType(0),
4160 BetterChain, Ptr, LD->getSrcValue(),
4161 LD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004162 LD->getLoadedVT(),
4163 LD->isVolatile(),
4164 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004165 }
Jim Laskey279f0532006-09-25 16:29:54 +00004166
Jim Laskey6ff23e52006-10-04 16:53:27 +00004167 // Create token factor to keep old chain connected.
Jim Laskey288af5e2006-09-25 19:32:58 +00004168 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4169 Chain, ReplLoad.getValue(1));
Jim Laskey6ff23e52006-10-04 16:53:27 +00004170
Jim Laskey274062c2006-10-13 23:32:28 +00004171 // Replace uses with load result and token factor. Don't add users
4172 // to work list.
4173 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004174 }
4175 }
4176
Evan Cheng7fc033a2006-11-03 03:06:21 +00004177 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004178 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng7fc033a2006-11-03 03:06:21 +00004179 return SDOperand(N, 0);
4180
Chris Lattner01a22022005-10-10 22:04:48 +00004181 return SDOperand();
4182}
4183
Chris Lattner07649d92008-01-08 23:08:06 +00004184
Chris Lattner87514ca2005-10-10 22:31:19 +00004185SDOperand DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004186 StoreSDNode *ST = cast<StoreSDNode>(N);
4187 SDOperand Chain = ST->getChain();
4188 SDOperand Value = ST->getValue();
4189 SDOperand Ptr = ST->getBasePtr();
Jim Laskey7aed46c2006-10-11 18:55:16 +00004190
Evan Cheng59d5b682007-05-07 21:27:48 +00004191 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00004192 // resultant store does not need a higher alignment than the original.
Dale Johannesen98a6c622007-05-16 22:45:30 +00004193 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004194 ST->isUnindexed()) {
Evan Cheng59d5b682007-05-07 21:27:48 +00004195 unsigned Align = ST->getAlignment();
4196 MVT::ValueType SVT = Value.getOperand(0).getValueType();
4197 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00004198 getABITypeAlignment(MVT::getTypeForValueType(SVT));
Evan Chengc2cd2b22007-05-07 21:36:06 +00004199 if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
Evan Cheng59d5b682007-05-07 21:27:48 +00004200 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004201 ST->getSrcValueOffset(), ST->isVolatile(), Align);
Jim Laskey279f0532006-09-25 16:29:54 +00004202 }
4203
Nate Begeman2cbba892006-12-11 02:23:46 +00004204 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00004205 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Evan Cheng25ece662006-12-11 17:25:19 +00004206 if (Value.getOpcode() != ISD::TargetConstantFP) {
4207 SDOperand Tmp;
Chris Lattner62be1a72006-12-12 04:16:14 +00004208 switch (CFP->getValueType(0)) {
4209 default: assert(0 && "Unknown FP type");
Dale Johannesenc7b21d52007-09-18 18:36:59 +00004210 case MVT::f80: // We don't do this for these yet.
4211 case MVT::f128:
4212 case MVT::ppcf128:
4213 break;
Chris Lattner62be1a72006-12-12 04:16:14 +00004214 case MVT::f32:
4215 if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004216 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4217 convertToAPInt().getZExtValue(), MVT::i32);
Chris Lattner62be1a72006-12-12 04:16:14 +00004218 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004219 ST->getSrcValueOffset(), ST->isVolatile(),
4220 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004221 }
4222 break;
4223 case MVT::f64:
4224 if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004225 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4226 getZExtValue(), MVT::i64);
Chris Lattner62be1a72006-12-12 04:16:14 +00004227 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004228 ST->getSrcValueOffset(), ST->isVolatile(),
4229 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004230 } else if (TLI.isTypeLegal(MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00004231 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00004232 // argument passing. Since this is so common, custom legalize the
4233 // 64-bit integer store into two 32-bit stores.
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004234 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner62be1a72006-12-12 04:16:14 +00004235 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4236 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
4237 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
4238
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004239 int SVOffset = ST->getSrcValueOffset();
4240 unsigned Alignment = ST->getAlignment();
4241 bool isVolatile = ST->isVolatile();
4242
Chris Lattner62be1a72006-12-12 04:16:14 +00004243 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004244 ST->getSrcValueOffset(),
4245 isVolatile, ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004246 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4247 DAG.getConstant(4, Ptr.getValueType()));
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004248 SVOffset += 4;
Duncan Sandsdc846502007-10-28 12:59:45 +00004249 Alignment = MinAlign(Alignment, 4U);
Chris Lattner62be1a72006-12-12 04:16:14 +00004250 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004251 SVOffset, isVolatile, Alignment);
Chris Lattner62be1a72006-12-12 04:16:14 +00004252 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4253 }
4254 break;
Evan Cheng25ece662006-12-11 17:25:19 +00004255 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004256 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004257 }
4258
Jim Laskey279f0532006-09-25 16:29:54 +00004259 if (CombinerAA) {
4260 // Walk up chain skipping non-aliasing memory nodes.
4261 SDOperand BetterChain = FindBetterChain(N, Chain);
4262
Jim Laskey6ff23e52006-10-04 16:53:27 +00004263 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004264 if (Chain != BetterChain) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00004265 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004266 SDOperand ReplStore;
4267 if (ST->isTruncatingStore()) {
4268 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004269 ST->getSrcValue(),ST->getSrcValueOffset(),
4270 ST->getStoredVT(),
4271 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004272 } else {
4273 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004274 ST->getSrcValue(), ST->getSrcValueOffset(),
4275 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004276 }
4277
Jim Laskey279f0532006-09-25 16:29:54 +00004278 // Create token to keep both nodes around.
Jim Laskey274062c2006-10-13 23:32:28 +00004279 SDOperand Token =
4280 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4281
4282 // Don't add users to work list.
4283 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004284 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00004285 }
Chris Lattnerc33baaa2005-12-23 05:48:07 +00004286
Evan Cheng33dbedc2006-11-05 09:31:14 +00004287 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004288 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng33dbedc2006-11-05 09:31:14 +00004289 return SDOperand(N, 0);
4290
Chris Lattner3c872852007-12-29 06:26:16 +00004291 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00004292 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Chris Lattner2b4c2792007-10-13 06:35:54 +00004293 MVT::isInteger(Value.getValueType())) {
4294 // See if we can simplify the input to this truncstore with knowledge that
4295 // only the low bits are being used. For example:
4296 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4297 SDOperand Shorter =
4298 GetDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT()));
4299 AddToWorkList(Value.Val);
4300 if (Shorter.Val)
4301 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
4302 ST->getSrcValueOffset(), ST->getStoredVT(),
4303 ST->isVolatile(), ST->getAlignment());
Chris Lattnere33544c2007-10-13 06:58:48 +00004304
4305 // Otherwise, see if we can simplify the operation with
4306 // SimplifyDemandedBits, which only works if the value has a single use.
4307 if (SimplifyDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT())))
4308 return SDOperand(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00004309 }
4310
Chris Lattner3c872852007-12-29 06:26:16 +00004311 // If this is a load followed by a store to the same location, then the store
4312 // is dead/noop.
4313 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Chris Lattner07649d92008-01-08 23:08:06 +00004314 if (Ld->getBasePtr() == Ptr && ST->getStoredVT() == Ld->getLoadedVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004315 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00004316 // There can't be any side effects between the load and store, such as
4317 // a call or store.
Chris Lattner572dee72008-01-16 05:49:24 +00004318 Chain.reachesChainWithoutSideEffects(SDOperand(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00004319 // The store is dead, remove it.
4320 return Chain;
4321 }
4322 }
4323
Chris Lattnerddf89562008-01-17 19:59:44 +00004324 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
4325 // truncating store. We can do this even if this is already a truncstore.
4326 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
4327 && TLI.isTypeLegal(Value.getOperand(0).getValueType()) &&
4328 Value.Val->hasOneUse() && ST->isUnindexed() &&
4329 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
4330 ST->getStoredVT())) {
4331 return DAG.getTruncStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
4332 ST->getSrcValueOffset(), ST->getStoredVT(),
4333 ST->isVolatile(), ST->getAlignment());
4334 }
4335
Chris Lattner87514ca2005-10-10 22:31:19 +00004336 return SDOperand();
4337}
4338
Chris Lattnerca242442006-03-19 01:27:56 +00004339SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4340 SDOperand InVec = N->getOperand(0);
4341 SDOperand InVal = N->getOperand(1);
4342 SDOperand EltNo = N->getOperand(2);
4343
4344 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4345 // vector with the inserted element.
4346 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4347 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004348 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
Chris Lattnerca242442006-03-19 01:27:56 +00004349 if (Elt < Ops.size())
4350 Ops[Elt] = InVal;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004351 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4352 &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00004353 }
4354
4355 return SDOperand();
4356}
4357
Evan Cheng513da432007-10-06 08:19:55 +00004358SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
4359 SDOperand InVec = N->getOperand(0);
4360 SDOperand EltNo = N->getOperand(1);
4361
4362 // (vextract (v4f32 s2v (f32 load $addr)), 0) -> (f32 load $addr)
4363 // (vextract (v4i32 bc (v4f32 s2v (f32 load $addr))), 0) -> (i32 load $addr)
4364 if (isa<ConstantSDNode>(EltNo)) {
4365 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4366 bool NewLoad = false;
4367 if (Elt == 0) {
4368 MVT::ValueType VT = InVec.getValueType();
4369 MVT::ValueType EVT = MVT::getVectorElementType(VT);
4370 MVT::ValueType LVT = EVT;
4371 unsigned NumElts = MVT::getVectorNumElements(VT);
4372 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
4373 MVT::ValueType BCVT = InVec.getOperand(0).getValueType();
Dan Gohman090b38a2007-10-29 20:44:42 +00004374 if (!MVT::isVector(BCVT) ||
4375 NumElts != MVT::getVectorNumElements(BCVT))
Evan Cheng513da432007-10-06 08:19:55 +00004376 return SDOperand();
4377 InVec = InVec.getOperand(0);
4378 EVT = MVT::getVectorElementType(BCVT);
4379 NewLoad = true;
4380 }
4381 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4382 InVec.getOperand(0).getValueType() == EVT &&
4383 ISD::isNormalLoad(InVec.getOperand(0).Val) &&
4384 InVec.getOperand(0).hasOneUse()) {
4385 LoadSDNode *LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4386 unsigned Align = LN0->getAlignment();
4387 if (NewLoad) {
4388 // Check the resultant load doesn't need a higher alignment than the
4389 // original load.
4390 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
4391 getABITypeAlignment(MVT::getTypeForValueType(LVT));
4392 if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4393 return SDOperand();
4394 Align = NewAlign;
4395 }
4396
4397 return DAG.getLoad(LVT, LN0->getChain(), LN0->getBasePtr(),
4398 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4399 LN0->isVolatile(), Align);
4400 }
4401 }
4402 }
4403 return SDOperand();
4404}
4405
4406
Dan Gohman7f321562007-06-25 16:23:39 +00004407SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4408 unsigned NumInScalars = N->getNumOperands();
4409 MVT::ValueType VT = N->getValueType(0);
4410 unsigned NumElts = MVT::getVectorNumElements(VT);
4411 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattnerca242442006-03-19 01:27:56 +00004412
Dan Gohman7f321562007-06-25 16:23:39 +00004413 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4414 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4415 // at most two distinct vectors, turn this into a shuffle node.
Chris Lattnerd7648c82006-03-28 20:28:38 +00004416 SDOperand VecIn1, VecIn2;
4417 for (unsigned i = 0; i != NumInScalars; ++i) {
4418 // Ignore undef inputs.
4419 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4420
Dan Gohman7f321562007-06-25 16:23:39 +00004421 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00004422 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00004423 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00004424 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4425 VecIn1 = VecIn2 = SDOperand(0, 0);
4426 break;
4427 }
4428
Dan Gohman7f321562007-06-25 16:23:39 +00004429 // If the input vector type disagrees with the result of the build_vector,
Chris Lattnerd7648c82006-03-28 20:28:38 +00004430 // we can't make a shuffle.
4431 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004432 if (ExtractedFromVec.getValueType() != VT) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00004433 VecIn1 = VecIn2 = SDOperand(0, 0);
4434 break;
4435 }
4436
4437 // Otherwise, remember this. We allow up to two distinct input vectors.
4438 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4439 continue;
4440
4441 if (VecIn1.Val == 0) {
4442 VecIn1 = ExtractedFromVec;
4443 } else if (VecIn2.Val == 0) {
4444 VecIn2 = ExtractedFromVec;
4445 } else {
4446 // Too many inputs.
4447 VecIn1 = VecIn2 = SDOperand(0, 0);
4448 break;
4449 }
4450 }
4451
4452 // If everything is good, we can make a shuffle operation.
4453 if (VecIn1.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004454 SmallVector<SDOperand, 8> BuildVecIndices;
Chris Lattnerd7648c82006-03-28 20:28:38 +00004455 for (unsigned i = 0; i != NumInScalars; ++i) {
4456 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Evan Cheng597a3bd2007-01-20 10:10:26 +00004457 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004458 continue;
4459 }
4460
4461 SDOperand Extract = N->getOperand(i);
4462
4463 // If extracting from the first vector, just use the index directly.
4464 if (Extract.getOperand(0) == VecIn1) {
4465 BuildVecIndices.push_back(Extract.getOperand(1));
4466 continue;
4467 }
4468
4469 // Otherwise, use InIdx + VecSize
4470 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00004471 BuildVecIndices.push_back(DAG.getIntPtrConstant(Idx+NumInScalars));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004472 }
4473
4474 // Add count and size info.
Chris Lattner0bd48932008-01-17 07:00:52 +00004475 MVT::ValueType BuildVecVT = MVT::getVectorType(TLI.getPointerTy(), NumElts);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004476
Dan Gohman7f321562007-06-25 16:23:39 +00004477 // Return the new VECTOR_SHUFFLE node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004478 SDOperand Ops[5];
4479 Ops[0] = VecIn1;
Chris Lattnercef896e2006-03-28 22:19:47 +00004480 if (VecIn2.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004481 Ops[1] = VecIn2;
Chris Lattnercef896e2006-03-28 22:19:47 +00004482 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004483 // Use an undef build_vector as input for the second operand.
Chris Lattnercef896e2006-03-28 22:19:47 +00004484 std::vector<SDOperand> UnOps(NumInScalars,
4485 DAG.getNode(ISD::UNDEF,
Dan Gohman7f321562007-06-25 16:23:39 +00004486 EltType));
4487 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004488 &UnOps[0], UnOps.size());
4489 AddToWorkList(Ops[1].Val);
Chris Lattnercef896e2006-03-28 22:19:47 +00004490 }
Dan Gohman7f321562007-06-25 16:23:39 +00004491 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004492 &BuildVecIndices[0], BuildVecIndices.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004493 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004494 }
4495
4496 return SDOperand();
4497}
4498
Dan Gohman7f321562007-06-25 16:23:39 +00004499SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4500 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4501 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4502 // inputs come from at most two distinct vectors, turn this into a shuffle
4503 // node.
4504
4505 // If we only have one input vector, we don't need to do any concatenation.
4506 if (N->getNumOperands() == 1) {
4507 return N->getOperand(0);
4508 }
4509
4510 return SDOperand();
4511}
4512
Chris Lattner66445d32006-03-28 22:11:53 +00004513SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004514 SDOperand ShufMask = N->getOperand(2);
4515 unsigned NumElts = ShufMask.getNumOperands();
4516
4517 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4518 bool isIdentity = true;
4519 for (unsigned i = 0; i != NumElts; ++i) {
4520 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4521 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4522 isIdentity = false;
4523 break;
4524 }
4525 }
4526 if (isIdentity) return N->getOperand(0);
4527
4528 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4529 isIdentity = true;
4530 for (unsigned i = 0; i != NumElts; ++i) {
4531 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4532 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4533 isIdentity = false;
4534 break;
4535 }
4536 }
4537 if (isIdentity) return N->getOperand(1);
Evan Chenge7bec0d2006-07-20 22:44:41 +00004538
4539 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4540 // needed at all.
4541 bool isUnary = true;
Evan Cheng917ec982006-07-21 08:25:53 +00004542 bool isSplat = true;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004543 int VecNum = -1;
Reid Spencer9160a6a2006-07-25 20:44:41 +00004544 unsigned BaseIdx = 0;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004545 for (unsigned i = 0; i != NumElts; ++i)
4546 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4547 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4548 int V = (Idx < NumElts) ? 0 : 1;
Evan Cheng917ec982006-07-21 08:25:53 +00004549 if (VecNum == -1) {
Evan Chenge7bec0d2006-07-20 22:44:41 +00004550 VecNum = V;
Evan Cheng917ec982006-07-21 08:25:53 +00004551 BaseIdx = Idx;
4552 } else {
4553 if (BaseIdx != Idx)
4554 isSplat = false;
4555 if (VecNum != V) {
4556 isUnary = false;
4557 break;
4558 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00004559 }
4560 }
4561
4562 SDOperand N0 = N->getOperand(0);
4563 SDOperand N1 = N->getOperand(1);
4564 // Normalize unary shuffle so the RHS is undef.
4565 if (isUnary && VecNum == 1)
4566 std::swap(N0, N1);
4567
Evan Cheng917ec982006-07-21 08:25:53 +00004568 // If it is a splat, check if the argument vector is a build_vector with
4569 // all scalar elements the same.
4570 if (isSplat) {
4571 SDNode *V = N0.Val;
Evan Cheng917ec982006-07-21 08:25:53 +00004572
Dan Gohman7f321562007-06-25 16:23:39 +00004573 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00004574 // not the number of vector elements, look through it. Be careful not to
4575 // look though conversions that change things like v4f32 to v2f64.
Dan Gohman7f321562007-06-25 16:23:39 +00004576 if (V->getOpcode() == ISD::BIT_CONVERT) {
Evan Cheng59569222006-10-16 22:49:37 +00004577 SDOperand ConvInput = V->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004578 if (MVT::getVectorNumElements(ConvInput.getValueType()) == NumElts)
Evan Cheng59569222006-10-16 22:49:37 +00004579 V = ConvInput.Val;
4580 }
4581
Dan Gohman7f321562007-06-25 16:23:39 +00004582 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4583 unsigned NumElems = V->getNumOperands();
Evan Cheng917ec982006-07-21 08:25:53 +00004584 if (NumElems > BaseIdx) {
4585 SDOperand Base;
4586 bool AllSame = true;
4587 for (unsigned i = 0; i != NumElems; ++i) {
4588 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4589 Base = V->getOperand(i);
4590 break;
4591 }
4592 }
4593 // Splat of <u, u, u, u>, return <u, u, u, u>
4594 if (!Base.Val)
4595 return N0;
4596 for (unsigned i = 0; i != NumElems; ++i) {
Evan Chenge0480d22007-09-18 21:54:37 +00004597 if (V->getOperand(i) != Base) {
Evan Cheng917ec982006-07-21 08:25:53 +00004598 AllSame = false;
4599 break;
4600 }
4601 }
4602 // Splat of <x, x, x, x>, return <x, x, x, x>
4603 if (AllSame)
4604 return N0;
4605 }
4606 }
4607 }
4608
Evan Chenge7bec0d2006-07-20 22:44:41 +00004609 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4610 // into an undef.
4611 if (isUnary || N0 == N1) {
Chris Lattner17614ea2006-04-08 05:34:25 +00004612 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4613 // first operand.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004614 SmallVector<SDOperand, 8> MappedOps;
Chris Lattner17614ea2006-04-08 05:34:25 +00004615 for (unsigned i = 0; i != NumElts; ++i) {
4616 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4617 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4618 MappedOps.push_back(ShufMask.getOperand(i));
4619 } else {
4620 unsigned NewIdx =
4621 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4622 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4623 }
4624 }
Dan Gohman7f321562007-06-25 16:23:39 +00004625 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004626 &MappedOps[0], MappedOps.size());
Chris Lattner17614ea2006-04-08 05:34:25 +00004627 AddToWorkList(ShufMask.Val);
Dan Gohman7f321562007-06-25 16:23:39 +00004628 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4629 N0,
4630 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4631 ShufMask);
Chris Lattner17614ea2006-04-08 05:34:25 +00004632 }
Dan Gohman7f321562007-06-25 16:23:39 +00004633
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004634 return SDOperand();
4635}
4636
Evan Cheng44f1f092006-04-20 08:56:16 +00004637/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00004638/// an AND to a vector_shuffle with the destination vector and a zero vector.
4639/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00004640/// vector_shuffle V, Zero, <0, 4, 2, 4>
4641SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4642 SDOperand LHS = N->getOperand(0);
4643 SDOperand RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00004644 if (N->getOpcode() == ISD::AND) {
4645 if (RHS.getOpcode() == ISD::BIT_CONVERT)
Evan Cheng44f1f092006-04-20 08:56:16 +00004646 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004647 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Evan Cheng44f1f092006-04-20 08:56:16 +00004648 std::vector<SDOperand> IdxOps;
4649 unsigned NumOps = RHS.getNumOperands();
Dan Gohman7f321562007-06-25 16:23:39 +00004650 unsigned NumElts = NumOps;
4651 MVT::ValueType EVT = MVT::getVectorElementType(RHS.getValueType());
Evan Cheng44f1f092006-04-20 08:56:16 +00004652 for (unsigned i = 0; i != NumElts; ++i) {
4653 SDOperand Elt = RHS.getOperand(i);
4654 if (!isa<ConstantSDNode>(Elt))
4655 return SDOperand();
4656 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
4657 IdxOps.push_back(DAG.getConstant(i, EVT));
4658 else if (cast<ConstantSDNode>(Elt)->isNullValue())
4659 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
4660 else
4661 return SDOperand();
4662 }
4663
4664 // Let's see if the target supports this vector_shuffle.
4665 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
4666 return SDOperand();
4667
Dan Gohman7f321562007-06-25 16:23:39 +00004668 // Return the new VECTOR_SHUFFLE node.
4669 MVT::ValueType VT = MVT::getVectorType(EVT, NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00004670 std::vector<SDOperand> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004671 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
Evan Cheng44f1f092006-04-20 08:56:16 +00004672 Ops.push_back(LHS);
4673 AddToWorkList(LHS.Val);
4674 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
Dan Gohman7f321562007-06-25 16:23:39 +00004675 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004676 &ZeroOps[0], ZeroOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004677 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004678 &IdxOps[0], IdxOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004679 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004680 &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004681 if (VT != LHS.getValueType()) {
4682 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
Evan Cheng44f1f092006-04-20 08:56:16 +00004683 }
4684 return Result;
4685 }
4686 }
4687 return SDOperand();
4688}
4689
Dan Gohman7f321562007-06-25 16:23:39 +00004690/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
4691SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
4692 // After legalize, the target may be depending on adds and other
4693 // binary ops to provide legal ways to construct constants or other
4694 // things. Simplifying them may result in a loss of legality.
4695 if (AfterLegalize) return SDOperand();
4696
4697 MVT::ValueType VT = N->getValueType(0);
Dan Gohman05d92fe2007-07-13 20:03:40 +00004698 assert(MVT::isVector(VT) && "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00004699
4700 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattneredab1b92006-04-02 03:25:57 +00004701 SDOperand LHS = N->getOperand(0);
4702 SDOperand RHS = N->getOperand(1);
Evan Cheng44f1f092006-04-20 08:56:16 +00004703 SDOperand Shuffle = XformToShuffleWithZero(N);
4704 if (Shuffle.Val) return Shuffle;
4705
Dan Gohman7f321562007-06-25 16:23:39 +00004706 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00004707 // this operation.
Dan Gohman7f321562007-06-25 16:23:39 +00004708 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
4709 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004710 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004711 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Chris Lattneredab1b92006-04-02 03:25:57 +00004712 SDOperand LHSOp = LHS.getOperand(i);
4713 SDOperand RHSOp = RHS.getOperand(i);
4714 // If these two elements can't be folded, bail out.
4715 if ((LHSOp.getOpcode() != ISD::UNDEF &&
4716 LHSOp.getOpcode() != ISD::Constant &&
4717 LHSOp.getOpcode() != ISD::ConstantFP) ||
4718 (RHSOp.getOpcode() != ISD::UNDEF &&
4719 RHSOp.getOpcode() != ISD::Constant &&
4720 RHSOp.getOpcode() != ISD::ConstantFP))
4721 break;
Evan Cheng7b336a82006-05-31 06:08:35 +00004722 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00004723 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
4724 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00004725 if ((RHSOp.getOpcode() == ISD::Constant &&
4726 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
4727 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00004728 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00004729 break;
4730 }
Dan Gohman7f321562007-06-25 16:23:39 +00004731 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
Chris Lattner3e104b12006-04-08 04:15:24 +00004732 AddToWorkList(Ops.back().Val);
Chris Lattneredab1b92006-04-02 03:25:57 +00004733 assert((Ops.back().getOpcode() == ISD::UNDEF ||
4734 Ops.back().getOpcode() == ISD::Constant ||
4735 Ops.back().getOpcode() == ISD::ConstantFP) &&
4736 "Scalar binop didn't fold!");
4737 }
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004738
Dan Gohman7f321562007-06-25 16:23:39 +00004739 if (Ops.size() == LHS.getNumOperands()) {
4740 MVT::ValueType VT = LHS.getValueType();
4741 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004742 }
Chris Lattneredab1b92006-04-02 03:25:57 +00004743 }
4744
4745 return SDOperand();
4746}
4747
Nate Begeman44728a72005-09-19 22:34:01 +00004748SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00004749 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
4750
4751 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
4752 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4753 // If we got a simplified select_cc node back from SimplifySelectCC, then
4754 // break it down into a new SETCC node, and a new SELECT node, and then return
4755 // the SELECT node, since we were called with a SELECT node.
4756 if (SCC.Val) {
4757 // Check to see if we got a select_cc back (to turn into setcc/select).
4758 // Otherwise, just return whatever node we got back, like fabs.
4759 if (SCC.getOpcode() == ISD::SELECT_CC) {
4760 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
4761 SCC.getOperand(0), SCC.getOperand(1),
4762 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00004763 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004764 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
4765 SCC.getOperand(3), SETCC);
4766 }
4767 return SCC;
4768 }
Nate Begeman44728a72005-09-19 22:34:01 +00004769 return SDOperand();
4770}
4771
Chris Lattner40c62d52005-10-18 06:04:22 +00004772/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
4773/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00004774/// select. Callers of this should assume that TheSelect is deleted if this
4775/// returns true. As such, they should return the appropriate thing (e.g. the
4776/// node) back to the top-level of the DAG combiner loop to avoid it being
4777/// looked at.
Chris Lattner40c62d52005-10-18 06:04:22 +00004778///
4779bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
4780 SDOperand RHS) {
4781
4782 // If this is a select from two identical things, try to pull the operation
4783 // through the select.
4784 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
Chris Lattner40c62d52005-10-18 06:04:22 +00004785 // If this is a load and the token chain is identical, replace the select
4786 // of two loads with a load through a select of the address to load from.
4787 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
4788 // constants have been dropped into the constant pool.
Evan Cheng466685d2006-10-09 20:57:25 +00004789 if (LHS.getOpcode() == ISD::LOAD &&
Chris Lattner40c62d52005-10-18 06:04:22 +00004790 // Token chains must be identical.
Evan Cheng466685d2006-10-09 20:57:25 +00004791 LHS.getOperand(0) == RHS.getOperand(0)) {
4792 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
4793 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
4794
4795 // If this is an EXTLOAD, the VT's must match.
Evan Cheng2e49f092006-10-11 07:10:22 +00004796 if (LLD->getLoadedVT() == RLD->getLoadedVT()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004797 // FIXME: this conflates two src values, discarding one. This is not
4798 // the right thing to do, but nothing uses srcvalues now. When they do,
4799 // turn SrcValue into a list of locations.
4800 SDOperand Addr;
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004801 if (TheSelect->getOpcode() == ISD::SELECT) {
4802 // Check that the condition doesn't reach either load. If so, folding
4803 // this will induce a cycle into the DAG.
4804 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4805 !RLD->isPredecessor(TheSelect->getOperand(0).Val)) {
4806 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
4807 TheSelect->getOperand(0), LLD->getBasePtr(),
4808 RLD->getBasePtr());
4809 }
4810 } else {
4811 // Check that the condition doesn't reach either load. If so, folding
4812 // this will induce a cycle into the DAG.
4813 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4814 !RLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4815 !LLD->isPredecessor(TheSelect->getOperand(1).Val) &&
4816 !RLD->isPredecessor(TheSelect->getOperand(1).Val)) {
4817 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
Evan Cheng466685d2006-10-09 20:57:25 +00004818 TheSelect->getOperand(0),
4819 TheSelect->getOperand(1),
4820 LLD->getBasePtr(), RLD->getBasePtr(),
4821 TheSelect->getOperand(4));
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004822 }
Evan Cheng466685d2006-10-09 20:57:25 +00004823 }
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004824
4825 if (Addr.Val) {
4826 SDOperand Load;
4827 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
4828 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
4829 Addr,LLD->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004830 LLD->getSrcValueOffset(),
4831 LLD->isVolatile(),
4832 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004833 else {
4834 Load = DAG.getExtLoad(LLD->getExtensionType(),
4835 TheSelect->getValueType(0),
4836 LLD->getChain(), Addr, LLD->getSrcValue(),
4837 LLD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004838 LLD->getLoadedVT(),
4839 LLD->isVolatile(),
4840 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004841 }
4842 // Users of the select now use the result of the load.
4843 CombineTo(TheSelect, Load);
4844
4845 // Users of the old loads now use the new load's chain. We know the
4846 // old-load value is dead now.
4847 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
4848 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
4849 return true;
4850 }
Evan Chengc5484282006-10-04 00:56:09 +00004851 }
Chris Lattner40c62d52005-10-18 06:04:22 +00004852 }
4853 }
4854
4855 return false;
4856}
4857
Nate Begeman44728a72005-09-19 22:34:01 +00004858SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
4859 SDOperand N2, SDOperand N3,
Chris Lattner1eba01e2007-04-11 06:50:51 +00004860 ISD::CondCode CC, bool NotExtCompare) {
Nate Begemanf845b452005-10-08 00:29:44 +00004861
4862 MVT::ValueType VT = N2.getValueType();
Nate Begemanf845b452005-10-08 00:29:44 +00004863 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
4864 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
4865 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
4866
4867 // Determine if the condition we're dealing with is constant
4868 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00004869 if (SCC.Val) AddToWorkList(SCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004870 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
4871
4872 // fold select_cc true, x, y -> x
4873 if (SCCC && SCCC->getValue())
4874 return N2;
4875 // fold select_cc false, x, y -> y
4876 if (SCCC && SCCC->getValue() == 0)
4877 return N3;
4878
4879 // Check to see if we can simplify the select into an fabs node
4880 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
4881 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00004882 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00004883 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
4884 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
4885 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
4886 N2 == N3.getOperand(0))
4887 return DAG.getNode(ISD::FABS, VT, N0);
4888
4889 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
4890 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
4891 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
4892 N2.getOperand(0) == N3)
4893 return DAG.getNode(ISD::FABS, VT, N3);
4894 }
4895 }
4896
4897 // Check to see if we can perform the "gzip trick", transforming
4898 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
Chris Lattnere3152e52006-09-20 06:41:35 +00004899 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Nate Begemanf845b452005-10-08 00:29:44 +00004900 MVT::isInteger(N0.getValueType()) &&
Chris Lattnere3152e52006-09-20 06:41:35 +00004901 MVT::isInteger(N2.getValueType()) &&
4902 (N1C->isNullValue() || // (a < 0) ? b : 0
4903 (N1C->getValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Nate Begemanf845b452005-10-08 00:29:44 +00004904 MVT::ValueType XType = N0.getValueType();
4905 MVT::ValueType AType = N2.getValueType();
4906 if (XType >= AType) {
4907 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00004908 // single-bit constant.
Nate Begemanf845b452005-10-08 00:29:44 +00004909 if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
4910 unsigned ShCtV = Log2_64(N2C->getValue());
4911 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
4912 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
4913 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00004914 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004915 if (XType > AType) {
4916 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004917 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004918 }
4919 return DAG.getNode(ISD::AND, AType, Shift, N2);
4920 }
4921 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4922 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4923 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00004924 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004925 if (XType > AType) {
4926 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004927 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004928 }
4929 return DAG.getNode(ISD::AND, AType, Shift, N2);
4930 }
4931 }
Nate Begeman07ed4172005-10-10 21:26:48 +00004932
4933 // fold select C, 16, 0 -> shl C, 4
4934 if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
4935 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
Chris Lattner1eba01e2007-04-11 06:50:51 +00004936
4937 // If the caller doesn't want us to simplify this into a zext of a compare,
4938 // don't do it.
4939 if (NotExtCompare && N2C->getValue() == 1)
4940 return SDOperand();
4941
Nate Begeman07ed4172005-10-10 21:26:48 +00004942 // Get a SetCC of the condition
4943 // FIXME: Should probably make sure that setcc is legal if we ever have a
4944 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00004945 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00004946 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00004947 if (AfterLegalize) {
4948 SCC = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
Chris Lattner555d8d62006-12-07 22:36:47 +00004949 if (N2.getValueType() < SCC.getValueType())
4950 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
4951 else
4952 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004953 } else {
4954 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00004955 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004956 }
Chris Lattner5750df92006-03-01 04:03:14 +00004957 AddToWorkList(SCC.Val);
4958 AddToWorkList(Temp.Val);
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004959
4960 if (N2C->getValue() == 1)
4961 return Temp;
Nate Begeman07ed4172005-10-10 21:26:48 +00004962 // shl setcc result by log2 n2c
4963 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
4964 DAG.getConstant(Log2_64(N2C->getValue()),
4965 TLI.getShiftAmountTy()));
4966 }
4967
Nate Begemanf845b452005-10-08 00:29:44 +00004968 // Check to see if this is the equivalent of setcc
4969 // FIXME: Turn all of these into setcc if setcc if setcc is legal
4970 // otherwise, go ahead with the folds.
4971 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
4972 MVT::ValueType XType = N0.getValueType();
4973 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
4974 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
4975 if (Res.getValueType() != VT)
4976 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
4977 return Res;
4978 }
4979
4980 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
4981 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
4982 TLI.isOperationLegal(ISD::CTLZ, XType)) {
4983 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
4984 return DAG.getNode(ISD::SRL, XType, Ctlz,
4985 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
4986 TLI.getShiftAmountTy()));
4987 }
4988 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
4989 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
4990 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
4991 N0);
4992 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
4993 DAG.getConstant(~0ULL, XType));
4994 return DAG.getNode(ISD::SRL, XType,
4995 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
4996 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4997 TLI.getShiftAmountTy()));
4998 }
4999 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
5000 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
5001 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
5002 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5003 TLI.getShiftAmountTy()));
5004 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
5005 }
5006 }
5007
5008 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
5009 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5010 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
Chris Lattner1982ef22007-04-11 05:11:38 +00005011 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
5012 N2.getOperand(0) == N1 && MVT::isInteger(N0.getValueType())) {
5013 MVT::ValueType XType = N0.getValueType();
5014 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5015 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5016 TLI.getShiftAmountTy()));
5017 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5018 AddToWorkList(Shift.Val);
5019 AddToWorkList(Add.Val);
5020 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5021 }
5022 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
5023 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5024 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
5025 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
5026 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Nate Begemanf845b452005-10-08 00:29:44 +00005027 MVT::ValueType XType = N0.getValueType();
5028 if (SubC->isNullValue() && MVT::isInteger(XType)) {
5029 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5030 DAG.getConstant(MVT::getSizeInBits(XType)-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00005031 TLI.getShiftAmountTy()));
Nate Begemanf845b452005-10-08 00:29:44 +00005032 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005033 AddToWorkList(Shift.Val);
5034 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005035 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5036 }
5037 }
5038 }
Chris Lattner1982ef22007-04-11 05:11:38 +00005039
Nate Begeman44728a72005-09-19 22:34:01 +00005040 return SDOperand();
5041}
5042
Evan Chengfa1eb272007-02-08 22:13:59 +00005043/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Nate Begeman452d7be2005-09-16 00:54:12 +00005044SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00005045 SDOperand N1, ISD::CondCode Cond,
5046 bool foldBooleans) {
Evan Chengfa1eb272007-02-08 22:13:59 +00005047 TargetLowering::DAGCombinerInfo
5048 DagCombineInfo(DAG, !AfterLegalize, false, this);
5049 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
Nate Begeman452d7be2005-09-16 00:54:12 +00005050}
5051
Nate Begeman69575232005-10-20 02:15:44 +00005052/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
5053/// return a DAG expression to select that will generate the same value by
5054/// multiplying by a magic number. See:
5055/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5056SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005057 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005058 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
5059
Andrew Lenharth232c9102006-06-12 16:07:18 +00005060 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005061 ii != ee; ++ii)
5062 AddToWorkList(*ii);
5063 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005064}
5065
5066/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
5067/// return a DAG expression to select that will generate the same value by
5068/// multiplying by a magic number. See:
5069/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5070SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005071 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005072 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00005073
Andrew Lenharth232c9102006-06-12 16:07:18 +00005074 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005075 ii != ee; ++ii)
5076 AddToWorkList(*ii);
5077 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005078}
5079
Jim Laskey71382342006-10-07 23:37:56 +00005080/// FindBaseOffset - Return true if base is known not to alias with anything
5081/// but itself. Provides base object and offset as results.
5082static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5083 // Assume it is a primitive operation.
5084 Base = Ptr; Offset = 0;
5085
5086 // If it's an adding a simple constant then integrate the offset.
5087 if (Base.getOpcode() == ISD::ADD) {
5088 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5089 Base = Base.getOperand(0);
5090 Offset += C->getValue();
5091 }
5092 }
5093
5094 // If it's any of the following then it can't alias with anything but itself.
5095 return isa<FrameIndexSDNode>(Base) ||
5096 isa<ConstantPoolSDNode>(Base) ||
5097 isa<GlobalAddressSDNode>(Base);
5098}
5099
5100/// isAlias - Return true if there is any possibility that the two addresses
5101/// overlap.
Jim Laskey096c22e2006-10-18 12:29:57 +00005102bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5103 const Value *SrcValue1, int SrcValueOffset1,
5104 SDOperand Ptr2, int64_t Size2,
5105 const Value *SrcValue2, int SrcValueOffset2)
5106{
Jim Laskey71382342006-10-07 23:37:56 +00005107 // If they are the same then they must be aliases.
5108 if (Ptr1 == Ptr2) return true;
5109
5110 // Gather base node and offset information.
5111 SDOperand Base1, Base2;
5112 int64_t Offset1, Offset2;
5113 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5114 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5115
5116 // If they have a same base address then...
5117 if (Base1 == Base2) {
5118 // Check to see if the addresses overlap.
5119 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5120 }
5121
Jim Laskey096c22e2006-10-18 12:29:57 +00005122 // If we know both bases then they can't alias.
5123 if (KnownBase1 && KnownBase2) return false;
5124
Jim Laskey07a27092006-10-18 19:08:31 +00005125 if (CombinerGlobalAA) {
5126 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00005127 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5128 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5129 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Jim Laskey07a27092006-10-18 19:08:31 +00005130 AliasAnalysis::AliasResult AAResult =
Jim Laskey096c22e2006-10-18 12:29:57 +00005131 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
Jim Laskey07a27092006-10-18 19:08:31 +00005132 if (AAResult == AliasAnalysis::NoAlias)
5133 return false;
5134 }
Jim Laskey096c22e2006-10-18 12:29:57 +00005135
5136 // Otherwise we have to assume they alias.
5137 return true;
Jim Laskey71382342006-10-07 23:37:56 +00005138}
5139
5140/// FindAliasInfo - Extracts the relevant alias information from the memory
5141/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00005142bool DAGCombiner::FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +00005143 SDOperand &Ptr, int64_t &Size,
5144 const Value *&SrcValue, int &SrcValueOffset) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005145 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5146 Ptr = LD->getBasePtr();
Jim Laskeyc2b19f32006-10-11 17:47:52 +00005147 Size = MVT::getSizeInBits(LD->getLoadedVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005148 SrcValue = LD->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005149 SrcValueOffset = LD->getSrcValueOffset();
Jim Laskey71382342006-10-07 23:37:56 +00005150 return true;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005151 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005152 Ptr = ST->getBasePtr();
Evan Cheng8b2794a2006-10-13 21:14:26 +00005153 Size = MVT::getSizeInBits(ST->getStoredVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005154 SrcValue = ST->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005155 SrcValueOffset = ST->getSrcValueOffset();
Jim Laskey7ca56af2006-10-11 13:47:09 +00005156 } else {
Jim Laskey71382342006-10-07 23:37:56 +00005157 assert(0 && "FindAliasInfo expected a memory operand");
Jim Laskey71382342006-10-07 23:37:56 +00005158 }
5159
5160 return false;
5161}
5162
Jim Laskey6ff23e52006-10-04 16:53:27 +00005163/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5164/// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +00005165void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +00005166 SmallVector<SDOperand, 8> &Aliases) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005167 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
Jim Laskey6ff23e52006-10-04 16:53:27 +00005168 std::set<SDNode *> Visited; // Visited node set.
5169
Jim Laskey279f0532006-09-25 16:29:54 +00005170 // Get alias information for node.
5171 SDOperand Ptr;
5172 int64_t Size;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005173 const Value *SrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005174 int SrcValueOffset;
5175 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
Jim Laskey279f0532006-09-25 16:29:54 +00005176
Jim Laskey6ff23e52006-10-04 16:53:27 +00005177 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00005178 Chains.push_back(OriginalChain);
Jim Laskey6ff23e52006-10-04 16:53:27 +00005179
Jim Laskeybc588b82006-10-05 15:07:25 +00005180 // Look at each chain and determine if it is an alias. If so, add it to the
5181 // aliases list. If not, then continue up the chain looking for the next
5182 // candidate.
5183 while (!Chains.empty()) {
5184 SDOperand Chain = Chains.back();
5185 Chains.pop_back();
Jim Laskey6ff23e52006-10-04 16:53:27 +00005186
Jim Laskeybc588b82006-10-05 15:07:25 +00005187 // Don't bother if we've been before.
5188 if (Visited.find(Chain.Val) != Visited.end()) continue;
5189 Visited.insert(Chain.Val);
5190
5191 switch (Chain.getOpcode()) {
5192 case ISD::EntryToken:
5193 // Entry token is ideal chain operand, but handled in FindBetterChain.
5194 break;
Jim Laskey6ff23e52006-10-04 16:53:27 +00005195
Jim Laskeybc588b82006-10-05 15:07:25 +00005196 case ISD::LOAD:
5197 case ISD::STORE: {
5198 // Get alias information for Chain.
5199 SDOperand OpPtr;
5200 int64_t OpSize;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005201 const Value *OpSrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005202 int OpSrcValueOffset;
5203 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5204 OpSrcValue, OpSrcValueOffset);
Jim Laskeybc588b82006-10-05 15:07:25 +00005205
5206 // If chain is alias then stop here.
5207 if (!(IsLoad && IsOpLoad) &&
Jim Laskey096c22e2006-10-18 12:29:57 +00005208 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5209 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005210 Aliases.push_back(Chain);
5211 } else {
5212 // Look further up the chain.
5213 Chains.push_back(Chain.getOperand(0));
5214 // Clean up old chain.
5215 AddToWorkList(Chain.Val);
Jim Laskey279f0532006-09-25 16:29:54 +00005216 }
Jim Laskeybc588b82006-10-05 15:07:25 +00005217 break;
5218 }
5219
5220 case ISD::TokenFactor:
5221 // We have to check each of the operands of the token factor, so we queue
5222 // then up. Adding the operands to the queue (stack) in reverse order
5223 // maintains the original order and increases the likelihood that getNode
5224 // will find a matching token factor (CSE.)
5225 for (unsigned n = Chain.getNumOperands(); n;)
5226 Chains.push_back(Chain.getOperand(--n));
5227 // Eliminate the token factor if we can.
5228 AddToWorkList(Chain.Val);
5229 break;
5230
5231 default:
5232 // For all other instructions we will just have to take what we can get.
5233 Aliases.push_back(Chain);
5234 break;
Jim Laskey279f0532006-09-25 16:29:54 +00005235 }
5236 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00005237}
5238
5239/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5240/// for a better chain (aliasing node.)
5241SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5242 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00005243
Jim Laskey6ff23e52006-10-04 16:53:27 +00005244 // Accumulate all the aliases to this node.
5245 GatherAllAliases(N, OldChain, Aliases);
5246
5247 if (Aliases.size() == 0) {
5248 // If no operands then chain to entry token.
5249 return DAG.getEntryNode();
5250 } else if (Aliases.size() == 1) {
5251 // If a single operand then chain to it. We don't need to revisit it.
5252 return Aliases[0];
5253 }
5254
5255 // Construct a custom tailored token factor.
5256 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5257 &Aliases[0], Aliases.size());
5258
5259 // Make sure the old chain gets cleaned up.
5260 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5261
5262 return NewChain;
Jim Laskey279f0532006-09-25 16:29:54 +00005263}
5264
Nate Begeman1d4d4142005-09-01 00:19:25 +00005265// SelectionDAG::Combine - This is the entry point for the file.
5266//
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005267void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
Chris Lattner938ab022007-01-16 04:55:25 +00005268 if (!RunningAfterLegalize && ViewDAGCombine1)
5269 viewGraph();
5270 if (RunningAfterLegalize && ViewDAGCombine2)
5271 viewGraph();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005272 /// run - This is the main entry point to this class.
5273 ///
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005274 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005275}