blob: 5ebda953fbd3a18453345b6fd71518a21c088fec [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);
Nate Begeman646d7e22005-09-02 21:18:40 +0000609
Jim Laskey6ff23e52006-10-04 16:53:27 +0000610 // Nodes can be reintroduced into the worklist. Make sure we do not
611 // process a node that has been replaced.
Nate Begeman646d7e22005-09-02 21:18:40 +0000612 removeFromWorkList(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000613 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
614 removeFromWorkList(NowDead[i]);
Chris Lattner5c46f742005-10-05 06:11:08 +0000615
616 // Finally, since the node is now dead, remove it from the graph.
617 DAG.DeleteNode(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000618 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000619 }
620 }
Chris Lattner95038592005-10-05 06:35:28 +0000621
622 // If the root changed (e.g. it was a dead load, update the root).
623 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000624}
625
Nate Begeman83e75ec2005-09-06 04:43:02 +0000626SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000627 switch(N->getOpcode()) {
628 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000629 case ISD::TokenFactor: return visitTokenFactor(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000630 case ISD::ADD: return visitADD(N);
631 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +0000632 case ISD::ADDC: return visitADDC(N);
633 case ISD::ADDE: return visitADDE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000634 case ISD::MUL: return visitMUL(N);
635 case ISD::SDIV: return visitSDIV(N);
636 case ISD::UDIV: return visitUDIV(N);
637 case ISD::SREM: return visitSREM(N);
638 case ISD::UREM: return visitUREM(N);
639 case ISD::MULHU: return visitMULHU(N);
640 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +0000641 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
642 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
643 case ISD::SDIVREM: return visitSDIVREM(N);
644 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000645 case ISD::AND: return visitAND(N);
646 case ISD::OR: return visitOR(N);
647 case ISD::XOR: return visitXOR(N);
648 case ISD::SHL: return visitSHL(N);
649 case ISD::SRA: return visitSRA(N);
650 case ISD::SRL: return visitSRL(N);
651 case ISD::CTLZ: return visitCTLZ(N);
652 case ISD::CTTZ: return visitCTTZ(N);
653 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000654 case ISD::SELECT: return visitSELECT(N);
655 case ISD::SELECT_CC: return visitSELECT_CC(N);
656 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000657 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
658 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000659 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000660 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
661 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000662 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000663 case ISD::FADD: return visitFADD(N);
664 case ISD::FSUB: return visitFSUB(N);
665 case ISD::FMUL: return visitFMUL(N);
666 case ISD::FDIV: return visitFDIV(N);
667 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +0000668 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000669 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
670 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
671 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
672 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
673 case ISD::FP_ROUND: return visitFP_ROUND(N);
674 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
675 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
676 case ISD::FNEG: return visitFNEG(N);
677 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000678 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000679 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000680 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000681 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +0000682 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +0000683 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +0000684 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
685 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Chris Lattner66445d32006-03-28 22:11:53 +0000686 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000687 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000688 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000689}
690
Dan Gohman389079b2007-10-08 17:57:15 +0000691SDOperand DAGCombiner::combine(SDNode *N) {
692
693 SDOperand RV = visit(N);
694
695 // If nothing happened, try a target-specific DAG combine.
696 if (RV.Val == 0) {
697 assert(N->getOpcode() != ISD::DELETED_NODE &&
698 "Node was deleted but visit returned NULL!");
699
700 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
701 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
702
703 // Expose the DAG combiner to the target combiner impls.
704 TargetLowering::DAGCombinerInfo
705 DagCombineInfo(DAG, !AfterLegalize, false, this);
706
707 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
708 }
709 }
710
711 return RV;
712}
713
Chris Lattner6270f682006-10-08 22:57:01 +0000714/// getInputChainForNode - Given a node, return its input chain if it has one,
715/// otherwise return a null sd operand.
716static SDOperand getInputChainForNode(SDNode *N) {
717 if (unsigned NumOps = N->getNumOperands()) {
718 if (N->getOperand(0).getValueType() == MVT::Other)
719 return N->getOperand(0);
720 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
721 return N->getOperand(NumOps-1);
722 for (unsigned i = 1; i < NumOps-1; ++i)
723 if (N->getOperand(i).getValueType() == MVT::Other)
724 return N->getOperand(i);
725 }
726 return SDOperand(0, 0);
727}
728
Nate Begeman83e75ec2005-09-06 04:43:02 +0000729SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +0000730 // If N has two operands, where one has an input chain equal to the other,
731 // the 'other' chain is redundant.
732 if (N->getNumOperands() == 2) {
733 if (getInputChainForNode(N->getOperand(0).Val) == N->getOperand(1))
734 return N->getOperand(0);
735 if (getInputChainForNode(N->getOperand(1).Val) == N->getOperand(0))
736 return N->getOperand(1);
737 }
738
Chris Lattnerc76d4412007-05-16 06:37:59 +0000739 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
740 SmallVector<SDOperand, 8> Ops; // Ops for replacing token factor.
741 SmallPtrSet<SDNode*, 16> SeenOps;
742 bool Changed = false; // If we should replace this token factor.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000743
744 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +0000745 TFs.push_back(N);
Jim Laskey279f0532006-09-25 16:29:54 +0000746
Jim Laskey71382342006-10-07 23:37:56 +0000747 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +0000748 // encountered.
749 for (unsigned i = 0; i < TFs.size(); ++i) {
750 SDNode *TF = TFs[i];
751
Jim Laskey6ff23e52006-10-04 16:53:27 +0000752 // Check each of the operands.
753 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
754 SDOperand Op = TF->getOperand(i);
Jim Laskey279f0532006-09-25 16:29:54 +0000755
Jim Laskey6ff23e52006-10-04 16:53:27 +0000756 switch (Op.getOpcode()) {
757 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +0000758 // Entry tokens don't need to be added to the list. They are
759 // rededundant.
760 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000761 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000762
Jim Laskey6ff23e52006-10-04 16:53:27 +0000763 case ISD::TokenFactor:
Jim Laskeybc588b82006-10-05 15:07:25 +0000764 if ((CombinerAA || Op.hasOneUse()) &&
765 std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000766 // Queue up for processing.
767 TFs.push_back(Op.Val);
768 // Clean up in case the token factor is removed.
769 AddToWorkList(Op.Val);
770 Changed = true;
771 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000772 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000773 // Fall thru
774
775 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +0000776 // Only add if it isn't already in the list.
777 if (SeenOps.insert(Op.Val))
Jim Laskeybc588b82006-10-05 15:07:25 +0000778 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +0000779 else
780 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000781 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000782 }
783 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000784 }
785
786 SDOperand Result;
787
788 // If we've change things around then replace token factor.
789 if (Changed) {
790 if (Ops.size() == 0) {
791 // The entry token is the only possible outcome.
792 Result = DAG.getEntryNode();
793 } else {
794 // New and improved token factor.
795 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +0000796 }
Jim Laskey274062c2006-10-13 23:32:28 +0000797
798 // Don't add users to work list.
799 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +0000800 }
Jim Laskey279f0532006-09-25 16:29:54 +0000801
Jim Laskey6ff23e52006-10-04 16:53:27 +0000802 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000803}
804
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000805static
806SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
807 MVT::ValueType VT = N0.getValueType();
808 SDOperand N00 = N0.getOperand(0);
809 SDOperand N01 = N0.getOperand(1);
810 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
811 if (N01C && N00.getOpcode() == ISD::ADD && N00.Val->hasOneUse() &&
812 isa<ConstantSDNode>(N00.getOperand(1))) {
813 N0 = DAG.getNode(ISD::ADD, VT,
814 DAG.getNode(ISD::SHL, VT, N00.getOperand(0), N01),
815 DAG.getNode(ISD::SHL, VT, N00.getOperand(1), N01));
816 return DAG.getNode(ISD::ADD, VT, N0, N1);
817 }
818 return SDOperand();
819}
820
Evan Chengb13cdbd2007-06-21 07:39:16 +0000821static
822SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
823 SelectionDAG &DAG) {
824 MVT::ValueType VT = N->getValueType(0);
825 unsigned Opc = N->getOpcode();
826 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
827 SDOperand LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
828 SDOperand RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
829 ISD::CondCode CC = ISD::SETCC_INVALID;
830 if (isSlctCC)
831 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
832 else {
833 SDOperand CCOp = Slct.getOperand(0);
834 if (CCOp.getOpcode() == ISD::SETCC)
835 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
836 }
837
838 bool DoXform = false;
839 bool InvCC = false;
840 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
841 "Bad input!");
842 if (LHS.getOpcode() == ISD::Constant &&
843 cast<ConstantSDNode>(LHS)->isNullValue())
844 DoXform = true;
845 else if (CC != ISD::SETCC_INVALID &&
846 RHS.getOpcode() == ISD::Constant &&
847 cast<ConstantSDNode>(RHS)->isNullValue()) {
848 std::swap(LHS, RHS);
Chris Lattner4626b252008-01-17 07:20:38 +0000849 SDOperand Op0 = Slct.getOperand(0);
850 bool isInt = MVT::isInteger(isSlctCC ? Op0.getValueType()
851 : Op0.getOperand(0).getValueType());
Evan Chengb13cdbd2007-06-21 07:39:16 +0000852 CC = ISD::getSetCCInverse(CC, isInt);
853 DoXform = true;
854 InvCC = true;
855 }
856
857 if (DoXform) {
858 SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
859 if (isSlctCC)
860 return DAG.getSelectCC(OtherOp, Result,
861 Slct.getOperand(0), Slct.getOperand(1), CC);
862 SDOperand CCOp = Slct.getOperand(0);
863 if (InvCC)
864 CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
865 CCOp.getOperand(1), CC);
866 return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
867 }
868 return SDOperand();
869}
870
Nate Begeman83e75ec2005-09-06 04:43:02 +0000871SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000872 SDOperand N0 = N->getOperand(0);
873 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000874 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
875 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000876 MVT::ValueType VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000877
878 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +0000879 if (MVT::isVector(VT)) {
880 SDOperand FoldedVOp = SimplifyVBinOp(N);
881 if (FoldedVOp.Val) return FoldedVOp;
882 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000883
Dan Gohman613e0d82007-07-03 14:03:57 +0000884 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +0000885 if (N0.getOpcode() == ISD::UNDEF)
886 return N0;
887 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +0000888 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000889 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000890 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000891 return DAG.getNode(ISD::ADD, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000892 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000893 if (N0C && !N1C)
894 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000895 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000896 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000897 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000898 // fold ((c1-A)+c2) -> (c1+c2)-A
899 if (N1C && N0.getOpcode() == ISD::SUB)
900 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
901 return DAG.getNode(ISD::SUB, VT,
902 DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
903 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000904 // reassociate add
905 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
906 if (RADD.Val != 0)
907 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000908 // fold ((0-A) + B) -> B-A
909 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
910 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000911 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000912 // fold (A + (0-B)) -> A-B
913 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
914 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000915 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000916 // fold (A+(B-A)) -> B
917 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000918 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +0000919
Evan Cheng860771d2006-03-01 01:09:54 +0000920 if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +0000921 return SDOperand(N, 0);
Chris Lattner947c2892006-03-13 06:51:27 +0000922
923 // fold (a+b) -> (a|b) iff a and b share no bits.
924 if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
925 uint64_t LHSZero, LHSOne;
926 uint64_t RHSZero, RHSOne;
927 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000928 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000929 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000930 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000931
932 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
933 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
934 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
935 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
936 return DAG.getNode(ISD::OR, VT, N0, N1);
937 }
938 }
Evan Cheng3ef554d2006-11-06 08:14:30 +0000939
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000940 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
941 if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
942 SDOperand Result = combineShlAddConstant(N0, N1, DAG);
943 if (Result.Val) return Result;
944 }
945 if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
946 SDOperand Result = combineShlAddConstant(N1, N0, DAG);
947 if (Result.Val) return Result;
948 }
949
Evan Chengb13cdbd2007-06-21 07:39:16 +0000950 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
951 if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
952 SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
953 if (Result.Val) return Result;
954 }
955 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
956 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
957 if (Result.Val) return Result;
958 }
959
Nate Begeman83e75ec2005-09-06 04:43:02 +0000960 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000961}
962
Chris Lattner91153682007-03-04 20:03:15 +0000963SDOperand DAGCombiner::visitADDC(SDNode *N) {
964 SDOperand N0 = N->getOperand(0);
965 SDOperand N1 = N->getOperand(1);
966 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
967 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
968 MVT::ValueType VT = N0.getValueType();
969
970 // If the flag result is dead, turn this into an ADD.
971 if (N->hasNUsesOfValue(0, 1))
972 return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
Chris Lattnerb6541762007-03-04 20:40:38 +0000973 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
Chris Lattner91153682007-03-04 20:03:15 +0000974
975 // canonicalize constant to RHS.
Chris Lattnerbcf24842007-03-04 20:08:45 +0000976 if (N0C && !N1C) {
977 SDOperand Ops[] = { N1, N0 };
978 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
979 }
Chris Lattner91153682007-03-04 20:03:15 +0000980
Chris Lattnerb6541762007-03-04 20:40:38 +0000981 // fold (addc x, 0) -> x + no carry out
982 if (N1C && N1C->isNullValue())
983 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
984
985 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
986 uint64_t LHSZero, LHSOne;
987 uint64_t RHSZero, RHSOne;
988 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000989 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000990 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000991 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000992
993 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
994 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
995 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
996 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
997 return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
998 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
999 }
Chris Lattner91153682007-03-04 20:03:15 +00001000
1001 return SDOperand();
1002}
1003
1004SDOperand DAGCombiner::visitADDE(SDNode *N) {
1005 SDOperand N0 = N->getOperand(0);
1006 SDOperand N1 = N->getOperand(1);
Chris Lattnerb6541762007-03-04 20:40:38 +00001007 SDOperand CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001008 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1009 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Chris Lattnerbcf24842007-03-04 20:08:45 +00001010 //MVT::ValueType VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +00001011
1012 // canonicalize constant to RHS
Chris Lattnerbcf24842007-03-04 20:08:45 +00001013 if (N0C && !N1C) {
Chris Lattnerb6541762007-03-04 20:40:38 +00001014 SDOperand Ops[] = { N1, N0, CarryIn };
Chris Lattnerbcf24842007-03-04 20:08:45 +00001015 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1016 }
Chris Lattner91153682007-03-04 20:03:15 +00001017
Chris Lattnerb6541762007-03-04 20:40:38 +00001018 // fold (adde x, y, false) -> (addc x, y)
1019 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1020 SDOperand Ops[] = { N1, N0 };
1021 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1022 }
Chris Lattner91153682007-03-04 20:03:15 +00001023
1024 return SDOperand();
1025}
1026
1027
1028
Nate Begeman83e75ec2005-09-06 04:43:02 +00001029SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001030 SDOperand N0 = N->getOperand(0);
1031 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001032 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1033 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001034 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001035
Dan Gohman7f321562007-06-25 16:23:39 +00001036 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001037 if (MVT::isVector(VT)) {
1038 SDOperand FoldedVOp = SimplifyVBinOp(N);
1039 if (FoldedVOp.Val) return FoldedVOp;
1040 }
Dan Gohman7f321562007-06-25 16:23:39 +00001041
Chris Lattner854077d2005-10-17 01:07:11 +00001042 // fold (sub x, x) -> 0
1043 if (N0 == N1)
1044 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001045 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001046 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001047 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +00001048 // fold (sub x, c) -> (add x, -c)
1049 if (N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001050 return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001051 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001052 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001053 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001054 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001055 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001056 return N0.getOperand(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +00001057 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1058 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1059 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1060 if (Result.Val) return Result;
1061 }
Dan Gohman613e0d82007-07-03 14:03:57 +00001062 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001063 if (N0.getOpcode() == ISD::UNDEF)
1064 return N0;
1065 if (N1.getOpcode() == ISD::UNDEF)
1066 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001067
Nate Begeman83e75ec2005-09-06 04:43:02 +00001068 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001069}
1070
Nate Begeman83e75ec2005-09-06 04:43:02 +00001071SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001072 SDOperand N0 = N->getOperand(0);
1073 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001074 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1075 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +00001076 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001077
Dan Gohman7f321562007-06-25 16:23:39 +00001078 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001079 if (MVT::isVector(VT)) {
1080 SDOperand FoldedVOp = SimplifyVBinOp(N);
1081 if (FoldedVOp.Val) return FoldedVOp;
1082 }
Dan Gohman7f321562007-06-25 16:23:39 +00001083
Dan Gohman613e0d82007-07-03 14:03:57 +00001084 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001085 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001086 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001087 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001088 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001089 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001090 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001091 if (N0C && !N1C)
1092 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001093 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001094 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001095 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001096 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001097 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001098 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001099 // fold (mul x, (1 << c)) -> x << c
Nate Begeman646d7e22005-09-02 21:18:40 +00001100 if (N1C && isPowerOf2_64(N1C->getValue()))
Chris Lattner3e6099b2005-10-30 06:41:49 +00001101 return DAG.getNode(ISD::SHL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001102 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001103 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001104 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1105 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1106 // FIXME: If the input is something that is easily negated (e.g. a
1107 // single-use add), we should put the negate there.
1108 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1109 DAG.getNode(ISD::SHL, VT, N0,
1110 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1111 TLI.getShiftAmountTy())));
1112 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +00001113
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001114 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1115 if (N1C && N0.getOpcode() == ISD::SHL &&
1116 isa<ConstantSDNode>(N0.getOperand(1))) {
1117 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
Chris Lattner5750df92006-03-01 04:03:14 +00001118 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001119 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1120 }
1121
1122 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1123 // use.
1124 {
1125 SDOperand Sh(0,0), Y(0,0);
1126 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1127 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1128 N0.Val->hasOneUse()) {
1129 Sh = N0; Y = N1;
1130 } else if (N1.getOpcode() == ISD::SHL &&
1131 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1132 Sh = N1; Y = N0;
1133 }
1134 if (Sh.Val) {
1135 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1136 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1137 }
1138 }
Chris Lattnera1deca32006-03-04 23:33:26 +00001139 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1140 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1141 isa<ConstantSDNode>(N0.getOperand(1))) {
1142 return DAG.getNode(ISD::ADD, VT,
1143 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1144 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1145 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001146
Nate Begemancd4d58c2006-02-03 06:46:56 +00001147 // reassociate mul
1148 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1149 if (RMUL.Val != 0)
1150 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001151
Nate Begeman83e75ec2005-09-06 04:43:02 +00001152 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001153}
1154
Nate Begeman83e75ec2005-09-06 04:43:02 +00001155SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001156 SDOperand N0 = N->getOperand(0);
1157 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001158 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1159 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001160 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001161
Dan Gohman7f321562007-06-25 16:23:39 +00001162 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001163 if (MVT::isVector(VT)) {
1164 SDOperand FoldedVOp = SimplifyVBinOp(N);
1165 if (FoldedVOp.Val) return FoldedVOp;
1166 }
Dan Gohman7f321562007-06-25 16:23:39 +00001167
Nate Begeman1d4d4142005-09-01 00:19:25 +00001168 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001169 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001170 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001171 // fold (sdiv X, 1) -> X
1172 if (N1C && N1C->getSignExtended() == 1LL)
1173 return N0;
1174 // fold (sdiv X, -1) -> 0-X
1175 if (N1C && N1C->isAllOnesValue())
1176 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001177 // If we know the sign bits of both operands are zero, strength reduce to a
1178 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
1179 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001180 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1181 DAG.MaskedValueIsZero(N0, SignBit))
Chris Lattner094c8fc2005-10-07 06:10:46 +00001182 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001183 // fold (sdiv X, pow2) -> simple ops after legalize
Nate Begemanfb7217b2006-02-17 19:54:08 +00001184 if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +00001185 (isPowerOf2_64(N1C->getSignExtended()) ||
1186 isPowerOf2_64(-N1C->getSignExtended()))) {
1187 // If dividing by powers of two is cheap, then don't perform the following
1188 // fold.
1189 if (TLI.isPow2DivCheap())
1190 return SDOperand();
1191 int64_t pow2 = N1C->getSignExtended();
1192 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
Chris Lattner8f4880b2006-02-16 08:02:36 +00001193 unsigned lg2 = Log2_64(abs2);
1194 // Splat the sign bit into the register
1195 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001196 DAG.getConstant(MVT::getSizeInBits(VT)-1,
1197 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00001198 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +00001199 // Add (N0 < 0) ? abs2 - 1 : 0;
1200 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
1201 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001202 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +00001203 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +00001204 AddToWorkList(SRL.Val);
1205 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +00001206 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1207 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +00001208 // If we're dividing by a positive value, we're done. Otherwise, we must
1209 // negate the result.
1210 if (pow2 > 0)
1211 return SRA;
Chris Lattner5750df92006-03-01 04:03:14 +00001212 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001213 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1214 }
Nate Begeman69575232005-10-20 02:15:44 +00001215 // if integer divide is expensive and we satisfy the requirements, emit an
1216 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +00001217 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +00001218 !TLI.isIntDivCheap()) {
1219 SDOperand Op = BuildSDIV(N);
1220 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001221 }
Dan Gohman7f321562007-06-25 16:23:39 +00001222
Dan Gohman613e0d82007-07-03 14:03:57 +00001223 // undef / X -> 0
1224 if (N0.getOpcode() == ISD::UNDEF)
1225 return DAG.getConstant(0, VT);
1226 // X / undef -> undef
1227 if (N1.getOpcode() == ISD::UNDEF)
1228 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001229
Nate Begeman83e75ec2005-09-06 04:43:02 +00001230 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001231}
1232
Nate Begeman83e75ec2005-09-06 04:43:02 +00001233SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001234 SDOperand N0 = N->getOperand(0);
1235 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001236 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1237 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001238 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001239
Dan Gohman7f321562007-06-25 16:23:39 +00001240 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001241 if (MVT::isVector(VT)) {
1242 SDOperand FoldedVOp = SimplifyVBinOp(N);
1243 if (FoldedVOp.Val) return FoldedVOp;
1244 }
Dan Gohman7f321562007-06-25 16:23:39 +00001245
Nate Begeman1d4d4142005-09-01 00:19:25 +00001246 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001247 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001248 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001249 // fold (udiv x, (1 << c)) -> x >>u c
Nate Begeman646d7e22005-09-02 21:18:40 +00001250 if (N1C && isPowerOf2_64(N1C->getValue()))
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001251 return DAG.getNode(ISD::SRL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001252 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001253 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001254 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1255 if (N1.getOpcode() == ISD::SHL) {
1256 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1257 if (isPowerOf2_64(SHC->getValue())) {
1258 MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +00001259 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
1260 DAG.getConstant(Log2_64(SHC->getValue()),
1261 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +00001262 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001263 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001264 }
1265 }
1266 }
Nate Begeman69575232005-10-20 02:15:44 +00001267 // fold (udiv x, c) -> alternate
Chris Lattnere9936d12005-10-22 18:50:15 +00001268 if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
1269 SDOperand Op = BuildUDIV(N);
1270 if (Op.Val) return Op;
1271 }
Dan Gohman7f321562007-06-25 16:23:39 +00001272
Dan Gohman613e0d82007-07-03 14:03:57 +00001273 // undef / X -> 0
1274 if (N0.getOpcode() == ISD::UNDEF)
1275 return DAG.getConstant(0, VT);
1276 // X / undef -> undef
1277 if (N1.getOpcode() == ISD::UNDEF)
1278 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001279
Nate Begeman83e75ec2005-09-06 04:43:02 +00001280 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001281}
1282
Nate Begeman83e75ec2005-09-06 04:43:02 +00001283SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001284 SDOperand N0 = N->getOperand(0);
1285 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001286 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1287 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001288 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001289
1290 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001291 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001292 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001293 // If we know the sign bits of both operands are zero, strength reduce to a
1294 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
1295 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001296 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1297 DAG.MaskedValueIsZero(N0, SignBit))
Nate Begemana148d982006-01-18 22:35:16 +00001298 return DAG.getNode(ISD::UREM, VT, N0, N1);
Chris Lattner26d29902006-10-12 20:58:32 +00001299
Dan Gohman77003042007-11-26 23:46:11 +00001300 // If X/C can be simplified by the division-by-constant logic, lower
1301 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001302 if (N1C && !N1C->isNullValue()) {
1303 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001304 SDOperand OptimizedDiv = combine(Div.Val);
1305 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1306 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1307 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1308 AddToWorkList(Mul.Val);
1309 return Sub;
1310 }
Chris Lattner26d29902006-10-12 20:58:32 +00001311 }
1312
Dan Gohman613e0d82007-07-03 14:03:57 +00001313 // undef % X -> 0
1314 if (N0.getOpcode() == ISD::UNDEF)
1315 return DAG.getConstant(0, VT);
1316 // X % undef -> undef
1317 if (N1.getOpcode() == ISD::UNDEF)
1318 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001319
Nate Begeman83e75ec2005-09-06 04:43:02 +00001320 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001321}
1322
Nate Begeman83e75ec2005-09-06 04:43:02 +00001323SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001324 SDOperand N0 = N->getOperand(0);
1325 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001326 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1327 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001328 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001329
1330 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001331 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001332 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001333 // fold (urem x, pow2) -> (and x, pow2-1)
1334 if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
Nate Begemana148d982006-01-18 22:35:16 +00001335 return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00001336 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1337 if (N1.getOpcode() == ISD::SHL) {
1338 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1339 if (isPowerOf2_64(SHC->getValue())) {
Nate Begemanbab92392006-02-05 08:07:24 +00001340 SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001341 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001342 return DAG.getNode(ISD::AND, VT, N0, Add);
1343 }
1344 }
1345 }
Chris Lattner26d29902006-10-12 20:58:32 +00001346
Dan Gohman77003042007-11-26 23:46:11 +00001347 // If X/C can be simplified by the division-by-constant logic, lower
1348 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001349 if (N1C && !N1C->isNullValue()) {
1350 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001351 SDOperand OptimizedDiv = combine(Div.Val);
1352 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1353 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1354 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1355 AddToWorkList(Mul.Val);
1356 return Sub;
1357 }
Chris Lattner26d29902006-10-12 20:58:32 +00001358 }
1359
Dan Gohman613e0d82007-07-03 14:03:57 +00001360 // undef % X -> 0
1361 if (N0.getOpcode() == ISD::UNDEF)
1362 return DAG.getConstant(0, VT);
1363 // X % undef -> undef
1364 if (N1.getOpcode() == ISD::UNDEF)
1365 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001366
Nate Begeman83e75ec2005-09-06 04:43:02 +00001367 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001368}
1369
Nate Begeman83e75ec2005-09-06 04:43:02 +00001370SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001371 SDOperand N0 = N->getOperand(0);
1372 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001373 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001374 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001375
1376 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001377 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001378 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001379 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001380 if (N1C && N1C->getValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001381 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
1382 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001383 TLI.getShiftAmountTy()));
Dan Gohman613e0d82007-07-03 14:03:57 +00001384 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001385 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001386 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001387
Nate Begeman83e75ec2005-09-06 04:43:02 +00001388 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001389}
1390
Nate Begeman83e75ec2005-09-06 04:43:02 +00001391SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001392 SDOperand N0 = N->getOperand(0);
1393 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001394 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001395 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001396
1397 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001398 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001399 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001400 // fold (mulhu x, 1) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001401 if (N1C && N1C->getValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001402 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00001403 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001404 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001405 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001406
Nate Begeman83e75ec2005-09-06 04:43:02 +00001407 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408}
1409
Dan Gohman389079b2007-10-08 17:57:15 +00001410/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1411/// compute two values. LoOp and HiOp give the opcodes for the two computations
1412/// that are being performed. Return true if a simplification was made.
1413///
1414bool DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N,
1415 unsigned LoOp, unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00001416 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00001417 bool HiExists = N->hasAnyUseOfValue(1);
1418 if (!HiExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001419 (!AfterLegalize ||
1420 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
1421 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0),
1422 DAG.getNode(LoOp, N->getValueType(0),
1423 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001424 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001425 return true;
1426 }
1427
1428 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00001429 bool LoExists = N->hasAnyUseOfValue(0);
1430 if (!LoExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001431 (!AfterLegalize ||
1432 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
1433 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
1434 DAG.getNode(HiOp, N->getValueType(1),
1435 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001436 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001437 return true;
1438 }
1439
Evan Cheng44711942007-11-08 09:25:29 +00001440 // If both halves are used, return as it is.
1441 if (LoExists && HiExists)
1442 return false;
1443
1444 // If the two computed results can be simplified separately, separate them.
1445 bool RetVal = false;
1446 if (LoExists) {
1447 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1448 N->op_begin(), N->getNumOperands());
1449 SDOperand LoOpt = combine(Lo.Val);
1450 if (LoOpt.Val && LoOpt != Lo &&
1451 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())) {
1452 RetVal = true;
1453 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), LoOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001454 } else
1455 DAG.DeleteNode(Lo.Val);
Dan Gohman389079b2007-10-08 17:57:15 +00001456 }
1457
Evan Cheng44711942007-11-08 09:25:29 +00001458 if (HiExists) {
1459 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1460 N->op_begin(), N->getNumOperands());
1461 SDOperand HiOpt = combine(Hi.Val);
1462 if (HiOpt.Val && HiOpt != Hi &&
1463 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())) {
1464 RetVal = true;
1465 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), HiOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001466 } else
1467 DAG.DeleteNode(Hi.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001468 }
1469
1470 return RetVal;
Dan Gohman389079b2007-10-08 17:57:15 +00001471}
1472
1473SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
1474
1475 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS))
1476 return SDOperand();
1477
1478 return SDOperand();
1479}
1480
1481SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
1482
1483 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU))
1484 return SDOperand();
1485
1486 return SDOperand();
1487}
1488
1489SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
1490
1491 if (SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM))
1492 return SDOperand();
1493
1494 return SDOperand();
1495}
1496
1497SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
1498
1499 if (SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM))
1500 return SDOperand();
1501
1502 return SDOperand();
1503}
1504
Chris Lattner35e5c142006-05-05 05:51:50 +00001505/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1506/// two operands of the same opcode, try to simplify it.
1507SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1508 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
1509 MVT::ValueType VT = N0.getValueType();
1510 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1511
Chris Lattner540121f2006-05-05 06:31:05 +00001512 // For each of OP in AND/OR/XOR:
1513 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1514 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1515 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Chris Lattner0d8dae72006-05-05 06:32:04 +00001516 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
Chris Lattner540121f2006-05-05 06:31:05 +00001517 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
Chris Lattner0d8dae72006-05-05 06:32:04 +00001518 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001519 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1520 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1521 N0.getOperand(0).getValueType(),
1522 N0.getOperand(0), N1.getOperand(0));
1523 AddToWorkList(ORNode.Val);
Chris Lattner540121f2006-05-05 06:31:05 +00001524 return DAG.getNode(N0.getOpcode(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00001525 }
1526
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001527 // For each of OP in SHL/SRL/SRA/AND...
1528 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1529 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1530 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00001531 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001532 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001533 N0.getOperand(1) == N1.getOperand(1)) {
1534 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1535 N0.getOperand(0).getValueType(),
1536 N0.getOperand(0), N1.getOperand(0));
1537 AddToWorkList(ORNode.Val);
1538 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1539 }
1540
1541 return SDOperand();
1542}
1543
Nate Begeman83e75ec2005-09-06 04:43:02 +00001544SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001545 SDOperand N0 = N->getOperand(0);
1546 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001547 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001548 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1549 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001550 MVT::ValueType VT = N1.getValueType();
1551
Dan Gohman7f321562007-06-25 16:23:39 +00001552 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001553 if (MVT::isVector(VT)) {
1554 SDOperand FoldedVOp = SimplifyVBinOp(N);
1555 if (FoldedVOp.Val) return FoldedVOp;
1556 }
Dan Gohman7f321562007-06-25 16:23:39 +00001557
Dan Gohman613e0d82007-07-03 14:03:57 +00001558 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001559 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001560 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001561 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001562 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001563 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001564 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001565 if (N0C && !N1C)
1566 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001567 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001568 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001569 return N0;
1570 // if (and x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001571 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001572 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001573 // reassociate and
1574 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1575 if (RAND.Val != 0)
1576 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001577 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001578 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001579 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Nate Begeman646d7e22005-09-02 21:18:40 +00001580 if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001581 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001582 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1583 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001584 unsigned InMask = MVT::getIntVTBitMask(N0.getOperand(0).getValueType());
Dan Gohmanea859be2007-06-22 14:59:07 +00001585 if (DAG.MaskedValueIsZero(N0.getOperand(0),
Chris Lattner1ec05d12006-03-01 21:47:21 +00001586 ~N1C->getValue() & InMask)) {
1587 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
1588 N0.getOperand(0));
1589
1590 // Replace uses of the AND with uses of the Zero extend node.
1591 CombineTo(N, Zext);
1592
Chris Lattner3603cd62006-02-02 07:17:31 +00001593 // We actually want to replace all uses of the any_extend with the
1594 // zero_extend, to avoid duplicating things. This will later cause this
1595 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001596 CombineTo(N0.Val, Zext);
Chris Lattnerfedced72006-04-20 23:55:59 +00001597 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00001598 }
1599 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001600 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1601 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1602 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1603 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1604
1605 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1606 MVT::isInteger(LL.getValueType())) {
1607 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
1608 if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
1609 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001610 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001611 return DAG.getSetCC(VT, ORNode, LR, Op1);
1612 }
1613 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1614 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1615 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001616 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001617 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1618 }
1619 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1620 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1621 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001622 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001623 return DAG.getSetCC(VT, ORNode, LR, Op1);
1624 }
1625 }
1626 // canonicalize equivalent to ll == rl
1627 if (LL == RR && LR == RL) {
1628 Op1 = ISD::getSetCCSwappedOperands(Op1);
1629 std::swap(RL, RR);
1630 }
1631 if (LL == RL && LR == RR) {
1632 bool isInteger = MVT::isInteger(LL.getValueType());
1633 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1634 if (Result != ISD::SETCC_INVALID)
1635 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1636 }
1637 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001638
1639 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1640 if (N0.getOpcode() == N1.getOpcode()) {
1641 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1642 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001643 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001644
Nate Begemande996292006-02-03 22:24:05 +00001645 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1646 // fold (and (sra)) -> (and (srl)) when possible.
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001647 if (!MVT::isVector(VT) &&
1648 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001649 return SDOperand(N, 0);
Nate Begemanded49632005-10-13 03:11:28 +00001650 // fold (zext_inreg (extload x)) -> (zextload x)
Evan Cheng83060c52007-03-07 08:07:03 +00001651 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
Evan Cheng466685d2006-10-09 20:57:25 +00001652 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001653 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001654 // If we zero all the possible extended bits, then we can turn this into
1655 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001656 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001657 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001658 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1659 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001660 LN0->getSrcValueOffset(), EVT,
1661 LN0->isVolatile(),
1662 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001663 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001664 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001665 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001666 }
1667 }
1668 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00001669 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1670 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001671 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001672 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001673 // If we zero all the possible extended bits, then we can turn this into
1674 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001675 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001676 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001677 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1678 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001679 LN0->getSrcValueOffset(), EVT,
1680 LN0->isVolatile(),
1681 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001682 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001683 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001684 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001685 }
1686 }
Chris Lattner15045b62006-02-28 06:35:35 +00001687
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001688 // fold (and (load x), 255) -> (zextload x, i8)
1689 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng466685d2006-10-09 20:57:25 +00001690 if (N1C && N0.getOpcode() == ISD::LOAD) {
1691 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1692 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerddf89562008-01-17 19:59:44 +00001693 LN0->isUnindexed() && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001694 MVT::ValueType EVT, LoadedVT;
1695 if (N1C->getValue() == 255)
1696 EVT = MVT::i8;
1697 else if (N1C->getValue() == 65535)
1698 EVT = MVT::i16;
1699 else if (N1C->getValue() == ~0U)
1700 EVT = MVT::i32;
1701 else
1702 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001703
Evan Cheng2e49f092006-10-11 07:10:22 +00001704 LoadedVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001705 if (EVT != MVT::Other && LoadedVT > EVT &&
1706 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1707 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1708 // For big endian targets, we need to add an offset to the pointer to
1709 // load the correct bytes. For little endian systems, we merely need to
1710 // read fewer bytes from the same pointer.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00001711 unsigned LVTStoreBytes = MVT::getStoreSizeInBits(LoadedVT)/8;
1712 unsigned EVTStoreBytes = MVT::getStoreSizeInBits(EVT)/8;
1713 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Duncan Sandsdc846502007-10-28 12:59:45 +00001714 unsigned Alignment = LN0->getAlignment();
Evan Cheng466685d2006-10-09 20:57:25 +00001715 SDOperand NewPtr = LN0->getBasePtr();
Duncan Sandsdc846502007-10-28 12:59:45 +00001716 if (!TLI.isLittleEndian()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001717 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1718 DAG.getConstant(PtrOff, PtrType));
Duncan Sandsdc846502007-10-28 12:59:45 +00001719 Alignment = MinAlign(Alignment, PtrOff);
1720 }
Evan Cheng466685d2006-10-09 20:57:25 +00001721 AddToWorkList(NewPtr.Val);
1722 SDOperand Load =
1723 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001724 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00001725 LN0->isVolatile(), Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00001726 AddToWorkList(N);
1727 CombineTo(N0.Val, Load, Load.getValue(1));
1728 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1729 }
Chris Lattner15045b62006-02-28 06:35:35 +00001730 }
1731 }
1732
Nate Begeman83e75ec2005-09-06 04:43:02 +00001733 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001734}
1735
Nate Begeman83e75ec2005-09-06 04:43:02 +00001736SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001737 SDOperand N0 = N->getOperand(0);
1738 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001739 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001740 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1741 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001742 MVT::ValueType VT = N1.getValueType();
1743 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001744
Dan Gohman7f321562007-06-25 16:23:39 +00001745 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001746 if (MVT::isVector(VT)) {
1747 SDOperand FoldedVOp = SimplifyVBinOp(N);
1748 if (FoldedVOp.Val) return FoldedVOp;
1749 }
Dan Gohman7f321562007-06-25 16:23:39 +00001750
Dan Gohman613e0d82007-07-03 14:03:57 +00001751 // fold (or x, undef) -> -1
Dan Gohmand595b5f2007-07-10 14:20:37 +00001752 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Chris Lattnere094f542007-07-09 16:16:34 +00001753 return DAG.getConstant(~0ULL, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001754 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001755 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001756 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001757 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001758 if (N0C && !N1C)
1759 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001760 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001761 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001762 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001763 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001764 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001765 return N1;
1766 // fold (or x, c) -> c iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001767 if (N1C &&
Dan Gohmanea859be2007-06-22 14:59:07 +00001768 DAG.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001769 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001770 // reassociate or
1771 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1772 if (ROR.Val != 0)
1773 return ROR;
1774 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1775 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001776 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001777 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1778 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1779 N1),
1780 DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001781 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001782 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1783 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1784 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1785 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1786
1787 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1788 MVT::isInteger(LL.getValueType())) {
1789 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1790 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
1791 if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1792 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1793 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001794 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001795 return DAG.getSetCC(VT, ORNode, LR, Op1);
1796 }
1797 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1798 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1799 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1800 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1801 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001802 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001803 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1804 }
1805 }
1806 // canonicalize equivalent to ll == rl
1807 if (LL == RR && LR == RL) {
1808 Op1 = ISD::getSetCCSwappedOperands(Op1);
1809 std::swap(RL, RR);
1810 }
1811 if (LL == RL && LR == RR) {
1812 bool isInteger = MVT::isInteger(LL.getValueType());
1813 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1814 if (Result != ISD::SETCC_INVALID)
1815 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1816 }
1817 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001818
1819 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1820 if (N0.getOpcode() == N1.getOpcode()) {
1821 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1822 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001823 }
Chris Lattner516b9622006-09-14 20:50:57 +00001824
Chris Lattner1ec72732006-09-14 21:11:37 +00001825 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1826 if (N0.getOpcode() == ISD::AND &&
1827 N1.getOpcode() == ISD::AND &&
1828 N0.getOperand(1).getOpcode() == ISD::Constant &&
1829 N1.getOperand(1).getOpcode() == ISD::Constant &&
1830 // Don't increase # computations.
1831 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1832 // We can only do this xform if we know that bits from X that are set in C2
1833 // but not in C1 are already zero. Likewise for Y.
1834 uint64_t LHSMask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1835 uint64_t RHSMask = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1836
Dan Gohmanea859be2007-06-22 14:59:07 +00001837 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1838 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Chris Lattner1ec72732006-09-14 21:11:37 +00001839 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1840 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1841 }
1842 }
1843
1844
Chris Lattner516b9622006-09-14 20:50:57 +00001845 // See if this is some rotate idiom.
1846 if (SDNode *Rot = MatchRotate(N0, N1))
1847 return SDOperand(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00001848
Nate Begeman83e75ec2005-09-06 04:43:02 +00001849 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001850}
1851
Chris Lattner516b9622006-09-14 20:50:57 +00001852
1853/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1854static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1855 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00001856 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001857 Mask = Op.getOperand(1);
1858 Op = Op.getOperand(0);
1859 } else {
1860 return false;
1861 }
1862 }
1863
1864 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1865 Shift = Op;
1866 return true;
1867 }
1868 return false;
1869}
1870
1871
1872// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1873// idioms for rotate, and if the target supports rotation instructions, generate
1874// a rot[lr].
1875SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1876 // Must be a legal type. Expanded an promoted things won't work with rotates.
1877 MVT::ValueType VT = LHS.getValueType();
1878 if (!TLI.isTypeLegal(VT)) return 0;
1879
1880 // The target must have at least one rotate flavor.
1881 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1882 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1883 if (!HasROTL && !HasROTR) return 0;
1884
1885 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1886 SDOperand LHSShift; // The shift.
1887 SDOperand LHSMask; // AND value if any.
1888 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1889 return 0; // Not part of a rotate.
1890
1891 SDOperand RHSShift; // The shift.
1892 SDOperand RHSMask; // AND value if any.
1893 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1894 return 0; // Not part of a rotate.
1895
1896 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1897 return 0; // Not shifting the same value.
1898
1899 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1900 return 0; // Shifts must disagree.
1901
1902 // Canonicalize shl to left side in a shl/srl pair.
1903 if (RHSShift.getOpcode() == ISD::SHL) {
1904 std::swap(LHS, RHS);
1905 std::swap(LHSShift, RHSShift);
1906 std::swap(LHSMask , RHSMask );
1907 }
1908
1909 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Scott Michelc9dc1142007-04-02 21:36:32 +00001910 SDOperand LHSShiftArg = LHSShift.getOperand(0);
1911 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1912 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00001913
1914 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1915 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00001916 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
1917 RHSShiftAmt.getOpcode() == ISD::Constant) {
1918 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
1919 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
Chris Lattner516b9622006-09-14 20:50:57 +00001920 if ((LShVal + RShVal) != OpSizeInBits)
1921 return 0;
1922
1923 SDOperand Rot;
1924 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001925 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001926 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001927 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001928
1929 // If there is an AND of either shifted operand, apply it to the result.
1930 if (LHSMask.Val || RHSMask.Val) {
1931 uint64_t Mask = MVT::getIntVTBitMask(VT);
1932
1933 if (LHSMask.Val) {
1934 uint64_t RHSBits = (1ULL << LShVal)-1;
1935 Mask &= cast<ConstantSDNode>(LHSMask)->getValue() | RHSBits;
1936 }
1937 if (RHSMask.Val) {
1938 uint64_t LHSBits = ~((1ULL << (OpSizeInBits-RShVal))-1);
1939 Mask &= cast<ConstantSDNode>(RHSMask)->getValue() | LHSBits;
1940 }
1941
1942 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
1943 }
1944
1945 return Rot.Val;
1946 }
1947
1948 // If there is a mask here, and we have a variable shift, we can't be sure
1949 // that we're masking out the right stuff.
1950 if (LHSMask.Val || RHSMask.Val)
1951 return 0;
1952
1953 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1954 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001955 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
1956 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001957 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001958 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001959 if (SUBC->getValue() == OpSizeInBits)
1960 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001961 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001962 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001963 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001964 }
1965 }
1966
1967 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1968 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001969 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
1970 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001971 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001972 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001973 if (SUBC->getValue() == OpSizeInBits)
1974 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001975 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001976 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001977 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1978 }
1979 }
1980
1981 // Look for sign/zext/any-extended cases:
1982 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1983 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1984 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
1985 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1986 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1987 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
1988 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
1989 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
1990 if (RExtOp0.getOpcode() == ISD::SUB &&
1991 RExtOp0.getOperand(1) == LExtOp0) {
1992 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1993 // (rotr x, y)
1994 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1995 // (rotl x, (sub 32, y))
1996 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
1997 if (SUBC->getValue() == OpSizeInBits) {
1998 if (HasROTL)
1999 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2000 else
2001 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2002 }
2003 }
2004 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2005 RExtOp0 == LExtOp0.getOperand(1)) {
2006 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2007 // (rotl x, y)
2008 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2009 // (rotr x, (sub 32, y))
2010 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
2011 if (SUBC->getValue() == OpSizeInBits) {
2012 if (HasROTL)
2013 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2014 else
2015 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2016 }
2017 }
Chris Lattner516b9622006-09-14 20:50:57 +00002018 }
2019 }
2020
2021 return 0;
2022}
2023
2024
Nate Begeman83e75ec2005-09-06 04:43:02 +00002025SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002026 SDOperand N0 = N->getOperand(0);
2027 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002028 SDOperand LHS, RHS, CC;
2029 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2030 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002031 MVT::ValueType VT = N0.getValueType();
2032
Dan Gohman7f321562007-06-25 16:23:39 +00002033 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00002034 if (MVT::isVector(VT)) {
2035 SDOperand FoldedVOp = SimplifyVBinOp(N);
2036 if (FoldedVOp.Val) return FoldedVOp;
2037 }
Dan Gohman7f321562007-06-25 16:23:39 +00002038
Dan Gohman613e0d82007-07-03 14:03:57 +00002039 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00002040 if (N0.getOpcode() == ISD::UNDEF)
2041 return N0;
2042 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002043 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002044 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002045 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002046 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00002047 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002048 if (N0C && !N1C)
2049 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002050 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002051 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002052 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00002053 // reassociate xor
2054 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2055 if (RXOR.Val != 0)
2056 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002057 // fold !(x cc y) -> (x !cc y)
Nate Begeman646d7e22005-09-02 21:18:40 +00002058 if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
2059 bool isInt = MVT::isInteger(LHS.getValueType());
2060 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2061 isInt);
2062 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002063 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002064 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002065 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002066 assert(0 && "Unhandled SetCC Equivalent!");
2067 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002068 }
Chris Lattner61c5ff42007-09-10 21:39:07 +00002069 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
2070 if (N1C && N1C->getValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
2071 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2072 SDOperand V = N0.getOperand(0);
2073 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00002074 DAG.getConstant(1, V.getValueType()));
Chris Lattner61c5ff42007-09-10 21:39:07 +00002075 AddToWorkList(V.Val);
2076 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2077 }
2078
Nate Begeman99801192005-09-07 23:25:52 +00002079 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Chris Lattner734c91d2006-11-10 21:37:15 +00002080 if (N1C && N1C->getValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00002081 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002082 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002083 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2084 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002085 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2086 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002087 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002088 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002089 }
2090 }
Nate Begeman99801192005-09-07 23:25:52 +00002091 // fold !(x or y) -> (!x and !y) iff x or y are constants
2092 if (N1C && N1C->isAllOnesValue() &&
2093 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002094 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002095 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2096 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002097 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2098 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002099 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002100 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002101 }
2102 }
Nate Begeman223df222005-09-08 20:18:10 +00002103 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2104 if (N1C && N0.getOpcode() == ISD::XOR) {
2105 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2106 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2107 if (N00C)
2108 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
2109 DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
2110 if (N01C)
2111 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
2112 DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
2113 }
2114 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00002115 if (N0 == N1) {
2116 if (!MVT::isVector(VT)) {
2117 return DAG.getConstant(0, VT);
2118 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2119 // Produce a vector of zeros.
Dan Gohman51eaa862007-06-14 22:58:02 +00002120 SDOperand El = DAG.getConstant(0, MVT::getVectorElementType(VT));
Chris Lattner4fbdd592006-03-28 19:11:05 +00002121 std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002122 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4fbdd592006-03-28 19:11:05 +00002123 }
2124 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002125
2126 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2127 if (N0.getOpcode() == N1.getOpcode()) {
2128 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2129 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002130 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002131
Chris Lattner3e104b12006-04-08 04:15:24 +00002132 // Simplify the expression using non-local knowledge.
2133 if (!MVT::isVector(VT) &&
2134 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002135 return SDOperand(N, 0);
Chris Lattner3e104b12006-04-08 04:15:24 +00002136
Nate Begeman83e75ec2005-09-06 04:43:02 +00002137 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002138}
2139
Chris Lattnere70da202007-12-06 07:33:36 +00002140/// visitShiftByConstant - Handle transforms common to the three shifts, when
2141/// the shift amount is a constant.
2142SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2143 SDNode *LHS = N->getOperand(0).Val;
2144 if (!LHS->hasOneUse()) return SDOperand();
2145
2146 // We want to pull some binops through shifts, so that we have (and (shift))
2147 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
2148 // thing happens with address calculations, so it's important to canonicalize
2149 // it.
2150 bool HighBitSet = false; // Can we transform this if the high bit is set?
2151
2152 switch (LHS->getOpcode()) {
2153 default: return SDOperand();
2154 case ISD::OR:
2155 case ISD::XOR:
2156 HighBitSet = false; // We can only transform sra if the high bit is clear.
2157 break;
2158 case ISD::AND:
2159 HighBitSet = true; // We can only transform sra if the high bit is set.
2160 break;
2161 case ISD::ADD:
2162 if (N->getOpcode() != ISD::SHL)
2163 return SDOperand(); // only shl(add) not sr[al](add).
2164 HighBitSet = false; // We can only transform sra if the high bit is clear.
2165 break;
2166 }
2167
2168 // We require the RHS of the binop to be a constant as well.
2169 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2170 if (!BinOpCst) return SDOperand();
2171
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00002172
2173 // FIXME: disable this for unless the input to the binop is a shift by a
2174 // constant. If it is not a shift, it pessimizes some common cases like:
2175 //
2176 //void foo(int *X, int i) { X[i & 1235] = 1; }
2177 //int bar(int *X, int i) { return X[i & 255]; }
2178 SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2179 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
2180 BinOpLHSVal->getOpcode() != ISD::SRA &&
2181 BinOpLHSVal->getOpcode() != ISD::SRL) ||
2182 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2183 return SDOperand();
2184
Chris Lattnere70da202007-12-06 07:33:36 +00002185 MVT::ValueType VT = N->getValueType(0);
2186
2187 // If this is a signed shift right, and the high bit is modified
2188 // by the logical operation, do not perform the transformation.
2189 // The highBitSet boolean indicates the value of the high bit of
2190 // the constant which would cause it to be modified for this
2191 // operation.
2192 if (N->getOpcode() == ISD::SRA) {
2193 uint64_t BinOpRHSSign = BinOpCst->getValue() >> MVT::getSizeInBits(VT)-1;
2194 if ((bool)BinOpRHSSign != HighBitSet)
2195 return SDOperand();
2196 }
2197
2198 // Fold the constants, shifting the binop RHS by the shift amount.
2199 SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2200 LHS->getOperand(1), N->getOperand(1));
2201
2202 // Create the new shift.
2203 SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2204 N->getOperand(1));
2205
2206 // Create the new binop.
2207 return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2208}
2209
2210
Nate Begeman83e75ec2005-09-06 04:43:02 +00002211SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002212 SDOperand N0 = N->getOperand(0);
2213 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002214 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2215 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002216 MVT::ValueType VT = N0.getValueType();
2217 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2218
2219 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002220 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002221 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002222 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002223 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002224 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002225 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002226 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002227 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002228 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002229 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002230 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002231 // if (shl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002232 if (DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002233 return DAG.getConstant(0, VT);
Chris Lattner61a4c072007-04-18 03:06:49 +00002234 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002235 return SDOperand(N, 0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002236 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002237 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002238 N0.getOperand(1).getOpcode() == ISD::Constant) {
2239 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002240 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002241 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002242 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002243 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002244 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002245 }
2246 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2247 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002248 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002249 N0.getOperand(1).getOpcode() == ISD::Constant) {
2250 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002251 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002252 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2253 DAG.getConstant(~0ULL << c1, VT));
2254 if (c2 > c1)
2255 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00002256 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002257 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00002258 return DAG.getNode(ISD::SRL, VT, Mask,
2259 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002260 }
2261 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002262 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00002263 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002264 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattnere70da202007-12-06 07:33:36 +00002265
2266 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002267}
2268
Nate Begeman83e75ec2005-09-06 04:43:02 +00002269SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002270 SDOperand N0 = N->getOperand(0);
2271 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002272 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2273 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002274 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002275
2276 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002277 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002278 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002279 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002280 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002281 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002282 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002283 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002284 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002285 // fold (sra x, c >= size(x)) -> undef
Nate Begemanfb7217b2006-02-17 19:54:08 +00002286 if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002287 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002288 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002289 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002290 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002291 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2292 // sext_inreg.
2293 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
2294 unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
2295 MVT::ValueType EVT;
2296 switch (LowBits) {
2297 default: EVT = MVT::Other; break;
2298 case 1: EVT = MVT::i1; break;
2299 case 8: EVT = MVT::i8; break;
2300 case 16: EVT = MVT::i16; break;
2301 case 32: EVT = MVT::i32; break;
2302 }
2303 if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
2304 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2305 DAG.getValueType(EVT));
2306 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002307
2308 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2309 if (N1C && N0.getOpcode() == ISD::SRA) {
2310 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2311 unsigned Sum = N1C->getValue() + C1->getValue();
2312 if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
2313 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2314 DAG.getConstant(Sum, N1C->getValueType(0)));
2315 }
2316 }
2317
Chris Lattnera8504462006-05-08 20:51:54 +00002318 // Simplify, based on bits shifted out of the LHS.
2319 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2320 return SDOperand(N, 0);
2321
2322
Nate Begeman1d4d4142005-09-01 00:19:25 +00002323 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohmanea859be2007-06-22 14:59:07 +00002324 if (DAG.MaskedValueIsZero(N0, MVT::getIntVTSignBit(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002325 return DAG.getNode(ISD::SRL, VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00002326
2327 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002328}
2329
Nate Begeman83e75ec2005-09-06 04:43:02 +00002330SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002331 SDOperand N0 = N->getOperand(0);
2332 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002333 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2334 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002335 MVT::ValueType VT = N0.getValueType();
2336 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2337
2338 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002339 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002340 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002341 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002342 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002343 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002344 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002345 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002346 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002347 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002348 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002349 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002350 // if (srl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002351 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002352 return DAG.getConstant(0, VT);
Chris Lattnerec06e9a2007-04-18 03:05:22 +00002353
Nate Begeman1d4d4142005-09-01 00:19:25 +00002354 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002355 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002356 N0.getOperand(1).getOpcode() == ISD::Constant) {
2357 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002358 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002359 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002360 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002361 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002362 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002363 }
Chris Lattner350bec02006-04-02 06:11:11 +00002364
Chris Lattner06afe072006-05-05 22:53:17 +00002365 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2366 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2367 // Shifting in all undef bits?
2368 MVT::ValueType SmallVT = N0.getOperand(0).getValueType();
2369 if (N1C->getValue() >= MVT::getSizeInBits(SmallVT))
2370 return DAG.getNode(ISD::UNDEF, VT);
2371
2372 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2373 AddToWorkList(SmallShift.Val);
2374 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2375 }
2376
Chris Lattner3657ffe2006-10-12 20:23:19 +00002377 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2378 // bit, which is unmodified by sra.
2379 if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
2380 if (N0.getOpcode() == ISD::SRA)
2381 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2382 }
2383
Chris Lattner350bec02006-04-02 06:11:11 +00002384 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2385 if (N1C && N0.getOpcode() == ISD::CTLZ &&
2386 N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
2387 uint64_t KnownZero, KnownOne, Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002388 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Chris Lattner350bec02006-04-02 06:11:11 +00002389
2390 // If any of the input bits are KnownOne, then the input couldn't be all
2391 // zeros, thus the result of the srl will always be zero.
2392 if (KnownOne) return DAG.getConstant(0, VT);
2393
2394 // If all of the bits input the to ctlz node are known to be zero, then
2395 // the result of the ctlz is "32" and the result of the shift is one.
2396 uint64_t UnknownBits = ~KnownZero & Mask;
2397 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2398
2399 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2400 if ((UnknownBits & (UnknownBits-1)) == 0) {
2401 // Okay, we know that only that the single bit specified by UnknownBits
2402 // could be set on input to the CTLZ node. If this bit is set, the SRL
2403 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2404 // to an SRL,XOR pair, which is likely to simplify more.
2405 unsigned ShAmt = CountTrailingZeros_64(UnknownBits);
2406 SDOperand Op = N0.getOperand(0);
2407 if (ShAmt) {
2408 Op = DAG.getNode(ISD::SRL, VT, Op,
2409 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2410 AddToWorkList(Op.Val);
2411 }
2412 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2413 }
2414 }
Chris Lattner61a4c072007-04-18 03:06:49 +00002415
2416 // fold operands of srl based on knowledge that the low bits are not
2417 // demanded.
2418 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2419 return SDOperand(N, 0);
2420
Chris Lattnere70da202007-12-06 07:33:36 +00002421 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002422}
2423
Nate Begeman83e75ec2005-09-06 04:43:02 +00002424SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002425 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002426 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002427
2428 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002429 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002430 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002431 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002432}
2433
Nate Begeman83e75ec2005-09-06 04:43:02 +00002434SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002435 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002436 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002437
2438 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002439 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002440 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002441 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002442}
2443
Nate Begeman83e75ec2005-09-06 04:43:02 +00002444SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002445 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002446 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002447
2448 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002449 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002450 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002451 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002452}
2453
Nate Begeman452d7be2005-09-16 00:54:12 +00002454SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2455 SDOperand N0 = N->getOperand(0);
2456 SDOperand N1 = N->getOperand(1);
2457 SDOperand N2 = N->getOperand(2);
2458 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2459 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2460 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2461 MVT::ValueType VT = N->getValueType(0);
Evan Cheng571c4782007-08-18 05:57:05 +00002462 MVT::ValueType VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00002463
Nate Begeman452d7be2005-09-16 00:54:12 +00002464 // fold select C, X, X -> X
2465 if (N1 == N2)
2466 return N1;
2467 // fold select true, X, Y -> X
2468 if (N0C && !N0C->isNullValue())
2469 return N1;
2470 // fold select false, X, Y -> Y
2471 if (N0C && N0C->isNullValue())
2472 return N2;
2473 // fold select C, 1, X -> C | X
Nate Begeman44728a72005-09-19 22:34:01 +00002474 if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
Nate Begeman452d7be2005-09-16 00:54:12 +00002475 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Cheng571c4782007-08-18 05:57:05 +00002476 // fold select C, 0, 1 -> ~C
2477 if (MVT::isInteger(VT) && MVT::isInteger(VT0) &&
2478 N1C && N2C && N1C->isNullValue() && N2C->getValue() == 1) {
2479 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2480 if (VT == VT0)
2481 return XORNode;
2482 AddToWorkList(XORNode.Val);
2483 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(VT0))
2484 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2485 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2486 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002487 // fold select C, 0, X -> ~C & X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002488 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
2489 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002490 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002491 return DAG.getNode(ISD::AND, VT, XORNode, N2);
2492 }
2493 // fold select C, X, 1 -> ~C | X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002494 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getValue() == 1) {
2495 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002496 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002497 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2498 }
2499 // fold select C, X, 0 -> C & X
2500 // FIXME: this should check for C type == X type, not i1?
2501 if (MVT::i1 == VT && N2C && N2C->isNullValue())
2502 return DAG.getNode(ISD::AND, VT, N0, N1);
2503 // fold X ? X : Y --> X ? 1 : Y --> X | Y
2504 if (MVT::i1 == VT && N0 == N1)
2505 return DAG.getNode(ISD::OR, VT, N0, N2);
2506 // fold X ? Y : X --> X ? Y : 0 --> X & Y
2507 if (MVT::i1 == VT && N0 == N2)
2508 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner729c6d12006-05-27 00:43:02 +00002509
Chris Lattner40c62d52005-10-18 06:04:22 +00002510 // If we can fold this based on the true/false value, do so.
2511 if (SimplifySelectOps(N, N1, N2))
Chris Lattner729c6d12006-05-27 00:43:02 +00002512 return SDOperand(N, 0); // Don't revisit N.
2513
Nate Begeman44728a72005-09-19 22:34:01 +00002514 // fold selects based on a setcc into other things, such as min/max/abs
2515 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman750ac1b2006-02-01 07:19:44 +00002516 // FIXME:
2517 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2518 // having to say they don't support SELECT_CC on every type the DAG knows
2519 // about, since there is no way to mark an opcode illegal at all value types
2520 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2521 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2522 N1, N2, N0.getOperand(2));
2523 else
2524 return SimplifySelect(N0, N1, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00002525 return SDOperand();
2526}
2527
2528SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00002529 SDOperand N0 = N->getOperand(0);
2530 SDOperand N1 = N->getOperand(1);
2531 SDOperand N2 = N->getOperand(2);
2532 SDOperand N3 = N->getOperand(3);
2533 SDOperand N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00002534 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2535
Nate Begeman44728a72005-09-19 22:34:01 +00002536 // fold select_cc lhs, rhs, x, x, cc -> x
2537 if (N2 == N3)
2538 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00002539
Chris Lattner5f42a242006-09-20 06:19:26 +00002540 // Determine if the condition we're dealing with is constant
2541 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00002542 if (SCC.Val) AddToWorkList(SCC.Val);
Chris Lattner5f42a242006-09-20 06:19:26 +00002543
2544 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
2545 if (SCCC->getValue())
2546 return N2; // cond always true -> true val
2547 else
2548 return N3; // cond always false -> false val
2549 }
2550
2551 // Fold to a simpler select_cc
2552 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2553 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2554 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2555 SCC.getOperand(2));
2556
Chris Lattner40c62d52005-10-18 06:04:22 +00002557 // If we can fold this based on the true/false value, do so.
2558 if (SimplifySelectOps(N, N2, N3))
Chris Lattner729c6d12006-05-27 00:43:02 +00002559 return SDOperand(N, 0); // Don't revisit N.
Chris Lattner40c62d52005-10-18 06:04:22 +00002560
Nate Begeman44728a72005-09-19 22:34:01 +00002561 // fold select_cc into other things, such as min/max/abs
2562 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00002563}
2564
2565SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2566 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2567 cast<CondCodeSDNode>(N->getOperand(2))->get());
2568}
2569
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002570// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2571// "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2572// transformation. Returns true if extension are possible and the above
2573// mentioned transformation is profitable.
2574static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2575 unsigned ExtOpc,
2576 SmallVector<SDNode*, 4> &ExtendNodes,
2577 TargetLowering &TLI) {
2578 bool HasCopyToRegUses = false;
2579 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2580 for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2581 UI != UE; ++UI) {
2582 SDNode *User = *UI;
2583 if (User == N)
2584 continue;
2585 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2586 if (User->getOpcode() == ISD::SETCC) {
2587 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2588 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2589 // Sign bits will be lost after a zext.
2590 return false;
2591 bool Add = false;
2592 for (unsigned i = 0; i != 2; ++i) {
2593 SDOperand UseOp = User->getOperand(i);
2594 if (UseOp == N0)
2595 continue;
2596 if (!isa<ConstantSDNode>(UseOp))
2597 return false;
2598 Add = true;
2599 }
2600 if (Add)
2601 ExtendNodes.push_back(User);
2602 } else {
2603 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2604 SDOperand UseOp = User->getOperand(i);
2605 if (UseOp == N0) {
2606 // If truncate from extended type to original load type is free
2607 // on this target, then it's ok to extend a CopyToReg.
2608 if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2609 HasCopyToRegUses = true;
2610 else
2611 return false;
2612 }
2613 }
2614 }
2615 }
2616
2617 if (HasCopyToRegUses) {
2618 bool BothLiveOut = false;
2619 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2620 UI != UE; ++UI) {
2621 SDNode *User = *UI;
2622 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2623 SDOperand UseOp = User->getOperand(i);
2624 if (UseOp.Val == N && UseOp.ResNo == 0) {
2625 BothLiveOut = true;
2626 break;
2627 }
2628 }
2629 }
2630 if (BothLiveOut)
2631 // Both unextended and extended values are live out. There had better be
2632 // good a reason for the transformation.
2633 return ExtendNodes.size();
2634 }
2635 return true;
2636}
2637
Nate Begeman83e75ec2005-09-06 04:43:02 +00002638SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002639 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002640 MVT::ValueType VT = N->getValueType(0);
2641
Nate Begeman1d4d4142005-09-01 00:19:25 +00002642 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002643 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002644 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Chris Lattner310b5782006-05-06 23:06:26 +00002645
Nate Begeman1d4d4142005-09-01 00:19:25 +00002646 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002647 // fold (sext (aext x)) -> (sext x)
2648 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002649 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattner310b5782006-05-06 23:06:26 +00002650
Evan Chengc88138f2007-03-22 01:54:19 +00002651 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2652 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Chris Lattner22558872007-02-26 03:13:59 +00002653 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002654 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002655 if (NarrowLoad.Val) {
2656 if (NarrowLoad.Val != N0.Val)
2657 CombineTo(N0.Val, NarrowLoad);
2658 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2659 }
Evan Chengc88138f2007-03-22 01:54:19 +00002660 }
2661
2662 // See if the value being truncated is already sign extended. If so, just
2663 // eliminate the trunc/sext pair.
2664 if (N0.getOpcode() == ISD::TRUNCATE) {
Chris Lattner6007b842006-09-21 06:00:20 +00002665 SDOperand Op = N0.getOperand(0);
Chris Lattner22558872007-02-26 03:13:59 +00002666 unsigned OpBits = MVT::getSizeInBits(Op.getValueType());
2667 unsigned MidBits = MVT::getSizeInBits(N0.getValueType());
2668 unsigned DestBits = MVT::getSizeInBits(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002669 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Chris Lattner22558872007-02-26 03:13:59 +00002670
2671 if (OpBits == DestBits) {
2672 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2673 // bits, it is already ready.
2674 if (NumSignBits > DestBits-MidBits)
2675 return Op;
2676 } else if (OpBits < DestBits) {
2677 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2678 // bits, just sext from i32.
2679 if (NumSignBits > OpBits-MidBits)
2680 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2681 } else {
2682 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2683 // bits, just truncate to i32.
2684 if (NumSignBits > OpBits-MidBits)
2685 return DAG.getNode(ISD::TRUNCATE, VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00002686 }
Chris Lattner22558872007-02-26 03:13:59 +00002687
2688 // fold (sext (truncate x)) -> (sextinreg x).
2689 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2690 N0.getValueType())) {
2691 if (Op.getValueType() < VT)
2692 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2693 else if (Op.getValueType() > VT)
2694 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2695 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2696 DAG.getValueType(N0.getValueType()));
2697 }
Chris Lattner6007b842006-09-21 06:00:20 +00002698 }
Chris Lattner310b5782006-05-06 23:06:26 +00002699
Evan Cheng110dec22005-12-14 02:19:23 +00002700 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002701 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002702 (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002703 bool DoXform = true;
2704 SmallVector<SDNode*, 4> SetCCs;
2705 if (!N0.hasOneUse())
2706 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2707 if (DoXform) {
2708 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2709 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2710 LN0->getBasePtr(), LN0->getSrcValue(),
2711 LN0->getSrcValueOffset(),
2712 N0.getValueType(),
2713 LN0->isVolatile(),
2714 LN0->getAlignment());
2715 CombineTo(N, ExtLoad);
2716 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2717 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2718 // Extend SetCC uses if necessary.
2719 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2720 SDNode *SetCC = SetCCs[i];
2721 SmallVector<SDOperand, 4> Ops;
2722 for (unsigned j = 0; j != 2; ++j) {
2723 SDOperand SOp = SetCC->getOperand(j);
2724 if (SOp == Trunc)
2725 Ops.push_back(ExtLoad);
2726 else
2727 Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2728 }
2729 Ops.push_back(SetCC->getOperand(2));
2730 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2731 &Ops[0], Ops.size()));
2732 }
2733 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2734 }
Nate Begeman3df4d522005-10-12 20:40:40 +00002735 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002736
2737 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2738 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002739 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2740 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002741 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002742 MVT::ValueType EVT = LN0->getLoadedVT();
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002743 if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2744 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2745 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002746 LN0->getSrcValueOffset(), EVT,
2747 LN0->isVolatile(),
2748 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002749 CombineTo(N, ExtLoad);
2750 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2751 ExtLoad.getValue(1));
2752 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2753 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002754 }
2755
Chris Lattner20a35c32007-04-11 05:32:27 +00002756 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2757 if (N0.getOpcode() == ISD::SETCC) {
2758 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002759 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2760 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2761 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2762 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002763 }
2764
Nate Begeman83e75ec2005-09-06 04:43:02 +00002765 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002766}
2767
Nate Begeman83e75ec2005-09-06 04:43:02 +00002768SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002769 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002770 MVT::ValueType VT = N->getValueType(0);
2771
Nate Begeman1d4d4142005-09-01 00:19:25 +00002772 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002773 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002774 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002775 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002776 // fold (zext (aext x)) -> (zext x)
2777 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002778 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00002779
Evan Chengc88138f2007-03-22 01:54:19 +00002780 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2781 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00002782 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002783 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002784 if (NarrowLoad.Val) {
2785 if (NarrowLoad.Val != N0.Val)
2786 CombineTo(N0.Val, NarrowLoad);
2787 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2788 }
Evan Chengc88138f2007-03-22 01:54:19 +00002789 }
2790
Chris Lattner6007b842006-09-21 06:00:20 +00002791 // fold (zext (truncate x)) -> (and x, mask)
2792 if (N0.getOpcode() == ISD::TRUNCATE &&
2793 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2794 SDOperand Op = N0.getOperand(0);
2795 if (Op.getValueType() < VT) {
2796 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2797 } else if (Op.getValueType() > VT) {
2798 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2799 }
2800 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2801 }
2802
Chris Lattner111c2282006-09-21 06:14:31 +00002803 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2804 if (N0.getOpcode() == ISD::AND &&
2805 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2806 N0.getOperand(1).getOpcode() == ISD::Constant) {
2807 SDOperand X = N0.getOperand(0).getOperand(0);
2808 if (X.getValueType() < VT) {
2809 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2810 } else if (X.getValueType() > VT) {
2811 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2812 }
2813 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2814 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2815 }
2816
Evan Cheng110dec22005-12-14 02:19:23 +00002817 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002818 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002819 (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002820 bool DoXform = true;
2821 SmallVector<SDNode*, 4> SetCCs;
2822 if (!N0.hasOneUse())
2823 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
2824 if (DoXform) {
2825 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2826 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2827 LN0->getBasePtr(), LN0->getSrcValue(),
2828 LN0->getSrcValueOffset(),
2829 N0.getValueType(),
2830 LN0->isVolatile(),
2831 LN0->getAlignment());
2832 CombineTo(N, ExtLoad);
2833 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2834 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2835 // Extend SetCC uses if necessary.
2836 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2837 SDNode *SetCC = SetCCs[i];
2838 SmallVector<SDOperand, 4> Ops;
2839 for (unsigned j = 0; j != 2; ++j) {
2840 SDOperand SOp = SetCC->getOperand(j);
2841 if (SOp == Trunc)
2842 Ops.push_back(ExtLoad);
2843 else
Evan Chengde1631b2007-10-30 20:11:21 +00002844 Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002845 }
2846 Ops.push_back(SetCC->getOperand(2));
2847 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2848 &Ops[0], Ops.size()));
2849 }
2850 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2851 }
Evan Cheng110dec22005-12-14 02:19:23 +00002852 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002853
2854 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2855 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002856 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2857 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002858 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002859 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002860 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2861 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002862 LN0->getSrcValueOffset(), EVT,
2863 LN0->isVolatile(),
2864 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002865 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002866 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2867 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002868 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002869 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002870
2871 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2872 if (N0.getOpcode() == ISD::SETCC) {
2873 SDOperand SCC =
2874 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2875 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00002876 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2877 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002878 }
2879
Nate Begeman83e75ec2005-09-06 04:43:02 +00002880 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002881}
2882
Chris Lattner5ffc0662006-05-05 05:58:59 +00002883SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
2884 SDOperand N0 = N->getOperand(0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00002885 MVT::ValueType VT = N->getValueType(0);
2886
2887 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00002888 if (isa<ConstantSDNode>(N0))
Chris Lattner5ffc0662006-05-05 05:58:59 +00002889 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
2890 // fold (aext (aext x)) -> (aext x)
2891 // fold (aext (zext x)) -> (zext x)
2892 // fold (aext (sext x)) -> (sext x)
2893 if (N0.getOpcode() == ISD::ANY_EXTEND ||
2894 N0.getOpcode() == ISD::ZERO_EXTEND ||
2895 N0.getOpcode() == ISD::SIGN_EXTEND)
2896 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
2897
Evan Chengc88138f2007-03-22 01:54:19 +00002898 // fold (aext (truncate (load x))) -> (aext (smaller load x))
2899 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
2900 if (N0.getOpcode() == ISD::TRUNCATE) {
2901 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002902 if (NarrowLoad.Val) {
2903 if (NarrowLoad.Val != N0.Val)
2904 CombineTo(N0.Val, NarrowLoad);
2905 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
2906 }
Evan Chengc88138f2007-03-22 01:54:19 +00002907 }
2908
Chris Lattner84750582006-09-20 06:29:17 +00002909 // fold (aext (truncate x))
2910 if (N0.getOpcode() == ISD::TRUNCATE) {
2911 SDOperand TruncOp = N0.getOperand(0);
2912 if (TruncOp.getValueType() == VT)
2913 return TruncOp; // x iff x size == zext size.
2914 if (TruncOp.getValueType() > VT)
2915 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
2916 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
2917 }
Chris Lattner0e4b9222006-09-21 06:40:43 +00002918
2919 // fold (aext (and (trunc x), cst)) -> (and x, cst).
2920 if (N0.getOpcode() == ISD::AND &&
2921 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2922 N0.getOperand(1).getOpcode() == ISD::Constant) {
2923 SDOperand X = N0.getOperand(0).getOperand(0);
2924 if (X.getValueType() < VT) {
2925 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2926 } else if (X.getValueType() > VT) {
2927 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2928 }
2929 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2930 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2931 }
2932
Chris Lattner5ffc0662006-05-05 05:58:59 +00002933 // fold (aext (load x)) -> (aext (truncate (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00002934 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00002935 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002936 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2937 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
2938 LN0->getBasePtr(), LN0->getSrcValue(),
2939 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002940 N0.getValueType(),
2941 LN0->isVolatile(),
2942 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002943 CombineTo(N, ExtLoad);
2944 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2945 ExtLoad.getValue(1));
2946 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2947 }
2948
2949 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
2950 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
2951 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002952 if (N0.getOpcode() == ISD::LOAD &&
2953 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng466685d2006-10-09 20:57:25 +00002954 N0.hasOneUse()) {
2955 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002956 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002957 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
2958 LN0->getChain(), LN0->getBasePtr(),
2959 LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002960 LN0->getSrcValueOffset(), EVT,
2961 LN0->isVolatile(),
2962 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002963 CombineTo(N, ExtLoad);
2964 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2965 ExtLoad.getValue(1));
2966 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2967 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002968
2969 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2970 if (N0.getOpcode() == ISD::SETCC) {
2971 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002972 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2973 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00002974 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Chris Lattner1eba01e2007-04-11 06:50:51 +00002975 if (SCC.Val)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00002976 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002977 }
2978
Chris Lattner5ffc0662006-05-05 05:58:59 +00002979 return SDOperand();
2980}
2981
Chris Lattner2b4c2792007-10-13 06:35:54 +00002982/// GetDemandedBits - See if the specified operand can be simplified with the
2983/// knowledge that only the bits specified by Mask are used. If so, return the
2984/// simpler operand, otherwise return a null SDOperand.
2985SDOperand DAGCombiner::GetDemandedBits(SDOperand V, uint64_t Mask) {
2986 switch (V.getOpcode()) {
2987 default: break;
2988 case ISD::OR:
2989 case ISD::XOR:
2990 // If the LHS or RHS don't contribute bits to the or, drop them.
2991 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
2992 return V.getOperand(1);
2993 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
2994 return V.getOperand(0);
2995 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00002996 case ISD::SRL:
2997 // Only look at single-use SRLs.
2998 if (!V.Val->hasOneUse())
2999 break;
3000 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3001 // See if we can recursively simplify the LHS.
3002 unsigned Amt = RHSC->getValue();
3003 Mask = (Mask << Amt) & MVT::getIntVTBitMask(V.getValueType());
3004 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), Mask);
3005 if (SimplifyLHS.Val) {
3006 return DAG.getNode(ISD::SRL, V.getValueType(),
3007 SimplifyLHS, V.getOperand(1));
3008 }
3009 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00003010 }
3011 return SDOperand();
3012}
3013
Evan Chengc88138f2007-03-22 01:54:19 +00003014/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3015/// bits and then truncated to a narrower type and where N is a multiple
3016/// of number of bits of the narrower type, transform it to a narrower load
3017/// from address + N / num of bits of new type. If the result is to be
3018/// extended, also fold the extension to form a extending load.
3019SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3020 unsigned Opc = N->getOpcode();
3021 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3022 SDOperand N0 = N->getOperand(0);
3023 MVT::ValueType VT = N->getValueType(0);
3024 MVT::ValueType EVT = N->getValueType(0);
3025
Evan Chenge177e302007-03-23 22:13:36 +00003026 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3027 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00003028 if (Opc == ISD::SIGN_EXTEND_INREG) {
3029 ExtType = ISD::SEXTLOAD;
3030 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Evan Chenge177e302007-03-23 22:13:36 +00003031 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3032 return SDOperand();
Evan Chengc88138f2007-03-22 01:54:19 +00003033 }
3034
3035 unsigned EVTBits = MVT::getSizeInBits(EVT);
3036 unsigned ShAmt = 0;
Evan Chengb37b80c2007-03-23 20:55:21 +00003037 bool CombineSRL = false;
Evan Chengc88138f2007-03-22 01:54:19 +00003038 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3039 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3040 ShAmt = N01->getValue();
3041 // Is the shift amount a multiple of size of VT?
3042 if ((ShAmt & (EVTBits-1)) == 0) {
3043 N0 = N0.getOperand(0);
3044 if (MVT::getSizeInBits(N0.getValueType()) <= EVTBits)
3045 return SDOperand();
Evan Chengb37b80c2007-03-23 20:55:21 +00003046 CombineSRL = true;
Evan Chengc88138f2007-03-22 01:54:19 +00003047 }
3048 }
3049 }
3050
3051 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3052 // Do not allow folding to i1 here. i1 is implicitly stored in memory in
3053 // zero extended form: by shrinking the load, we lose track of the fact
3054 // that it is already zero extended.
3055 // FIXME: This should be reevaluated.
3056 VT != MVT::i1) {
3057 assert(MVT::getSizeInBits(N0.getValueType()) > EVTBits &&
3058 "Cannot truncate to larger type!");
3059 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3060 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Evan Chengdae54ce2007-03-24 00:02:43 +00003061 // For big endian targets, we need to adjust the offset to the pointer to
3062 // load the correct bytes.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00003063 if (!TLI.isLittleEndian()) {
3064 unsigned LVTStoreBits = MVT::getStoreSizeInBits(N0.getValueType());
3065 unsigned EVTStoreBits = MVT::getStoreSizeInBits(EVT);
3066 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3067 }
Evan Chengdae54ce2007-03-24 00:02:43 +00003068 uint64_t PtrOff = ShAmt / 8;
Duncan Sandsdc846502007-10-28 12:59:45 +00003069 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Evan Chengc88138f2007-03-22 01:54:19 +00003070 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3071 DAG.getConstant(PtrOff, PtrType));
3072 AddToWorkList(NewPtr.Val);
3073 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3074 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003075 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Duncan Sandsdc846502007-10-28 12:59:45 +00003076 LN0->isVolatile(), NewAlign)
Evan Chengc88138f2007-03-22 01:54:19 +00003077 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003078 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00003079 LN0->isVolatile(), NewAlign);
Evan Chengc88138f2007-03-22 01:54:19 +00003080 AddToWorkList(N);
Evan Chengb37b80c2007-03-23 20:55:21 +00003081 if (CombineSRL) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003082 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Evan Chengb37b80c2007-03-23 20:55:21 +00003083 CombineTo(N->getOperand(0).Val, Load);
3084 } else
3085 CombineTo(N0.Val, Load, Load.getValue(1));
Evan Cheng15213b72007-03-26 07:12:51 +00003086 if (ShAmt) {
3087 if (Opc == ISD::SIGN_EXTEND_INREG)
3088 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3089 else
3090 return DAG.getNode(Opc, VT, Load);
3091 }
Evan Chengc88138f2007-03-22 01:54:19 +00003092 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3093 }
3094
3095 return SDOperand();
3096}
3097
Chris Lattner5ffc0662006-05-05 05:58:59 +00003098
Nate Begeman83e75ec2005-09-06 04:43:02 +00003099SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003100 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003101 SDOperand N1 = N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003102 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003103 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Nate Begeman07ed4172005-10-10 21:26:48 +00003104 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003105
Nate Begeman1d4d4142005-09-01 00:19:25 +00003106 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00003107 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Chris Lattner310b5782006-05-06 23:06:26 +00003108 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
Chris Lattneree4ea922006-05-06 09:30:03 +00003109
Chris Lattner541a24f2006-05-06 22:43:44 +00003110 // If the input is already sign extended, just drop the extension.
Dan Gohmanea859be2007-06-22 14:59:07 +00003111 if (DAG.ComputeNumSignBits(N0) >= MVT::getSizeInBits(VT)-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00003112 return N0;
3113
Nate Begeman646d7e22005-09-02 21:18:40 +00003114 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3115 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3116 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00003117 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003118 }
Chris Lattner4b37e872006-05-08 21:18:59 +00003119
Chris Lattner95a5e052007-04-17 19:03:21 +00003120 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohmanea859be2007-06-22 14:59:07 +00003121 if (DAG.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
Nate Begemande996292006-02-03 22:24:05 +00003122 return DAG.getZeroExtendInReg(N0, EVT);
Chris Lattner4b37e872006-05-08 21:18:59 +00003123
Chris Lattner95a5e052007-04-17 19:03:21 +00003124 // fold operands of sext_in_reg based on knowledge that the top bits are not
3125 // demanded.
3126 if (SimplifyDemandedBits(SDOperand(N, 0)))
3127 return SDOperand(N, 0);
3128
Evan Chengc88138f2007-03-22 01:54:19 +00003129 // fold (sext_in_reg (load x)) -> (smaller sextload x)
3130 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3131 SDOperand NarrowLoad = ReduceLoadWidth(N);
3132 if (NarrowLoad.Val)
3133 return NarrowLoad;
3134
Chris Lattner4b37e872006-05-08 21:18:59 +00003135 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3136 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3137 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3138 if (N0.getOpcode() == ISD::SRL) {
3139 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
3140 if (ShAmt->getValue()+EVTBits <= MVT::getSizeInBits(VT)) {
3141 // We can turn this into an SRA iff the input to the SRL is already sign
3142 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00003143 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Chris Lattner4b37e872006-05-08 21:18:59 +00003144 if (MVT::getSizeInBits(VT)-(ShAmt->getValue()+EVTBits) < InSignBits)
3145 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3146 }
3147 }
Evan Chengc88138f2007-03-22 01:54:19 +00003148
Nate Begemanded49632005-10-13 03:11:28 +00003149 // fold (sext_inreg (extload x)) -> (sextload x)
Evan Chengc5484282006-10-04 00:56:09 +00003150 if (ISD::isEXTLoad(N0.Val) &&
Evan Cheng83060c52007-03-07 08:07:03 +00003151 ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003152 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003153 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003154 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3155 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3156 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003157 LN0->getSrcValueOffset(), EVT,
3158 LN0->isVolatile(),
3159 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003160 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003161 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003162 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003163 }
3164 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00003165 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3166 N0.hasOneUse() &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003167 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003168 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003169 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3170 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3171 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003172 LN0->getSrcValueOffset(), EVT,
3173 LN0->isVolatile(),
3174 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003175 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003176 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003177 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003178 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003179 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003180}
3181
Nate Begeman83e75ec2005-09-06 04:43:02 +00003182SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003183 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003184 MVT::ValueType VT = N->getValueType(0);
3185
3186 // noop truncate
3187 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003188 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003189 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003190 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00003191 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003192 // fold (truncate (truncate x)) -> (truncate x)
3193 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003194 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003195 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattnerb72773b2006-05-05 22:56:26 +00003196 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3197 N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003198 if (N0.getOperand(0).getValueType() < VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003199 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00003200 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003201 else if (N0.getOperand(0).getValueType() > VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003202 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003203 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003204 else
3205 // if the source and dest are the same type, we can drop both the extend
3206 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003207 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003208 }
Evan Cheng007b69e2007-03-21 20:14:05 +00003209
Chris Lattner2b4c2792007-10-13 06:35:54 +00003210 // See if we can simplify the input to this truncate through knowledge that
3211 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3212 // -> trunc y
3213 SDOperand Shorter = GetDemandedBits(N0, MVT::getIntVTBitMask(VT));
3214 if (Shorter.Val)
3215 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3216
Nate Begeman3df4d522005-10-12 20:40:40 +00003217 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00003218 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Evan Chengc88138f2007-03-22 01:54:19 +00003219 return ReduceLoadWidth(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003220}
3221
Chris Lattner94683772005-12-23 05:30:37 +00003222SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3223 SDOperand N0 = N->getOperand(0);
3224 MVT::ValueType VT = N->getValueType(0);
3225
Dan Gohman7f321562007-06-25 16:23:39 +00003226 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3227 // Only do this before legalize, since afterward the target may be depending
3228 // on the bitconvert.
3229 // First check to see if this is all constant.
3230 if (!AfterLegalize &&
3231 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
3232 MVT::isVector(VT)) {
3233 bool isSimple = true;
3234 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3235 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3236 N0.getOperand(i).getOpcode() != ISD::Constant &&
3237 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3238 isSimple = false;
3239 break;
3240 }
3241
3242 MVT::ValueType DestEltVT = MVT::getVectorElementType(N->getValueType(0));
3243 assert(!MVT::isVector(DestEltVT) &&
3244 "Element type of vector ValueType must not be vector!");
3245 if (isSimple) {
3246 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3247 }
3248 }
3249
Chris Lattner94683772005-12-23 05:30:37 +00003250 // If the input is a constant, let getNode() fold it.
3251 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3252 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3253 if (Res.Val != N) return Res;
3254 }
3255
Chris Lattnerc8547d82005-12-23 05:37:50 +00003256 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3257 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00003258
Chris Lattner57104102005-12-23 05:44:41 +00003259 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00003260 // If the resultant load doesn't need a higher alignment than the original!
3261 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Evan Cheng59d5b682007-05-07 21:27:48 +00003262 TLI.isOperationLegal(ISD::LOAD, VT)) {
Evan Cheng466685d2006-10-09 20:57:25 +00003263 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng59d5b682007-05-07 21:27:48 +00003264 unsigned Align = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00003265 getABITypeAlignment(MVT::getTypeForValueType(VT));
Evan Cheng59d5b682007-05-07 21:27:48 +00003266 unsigned OrigAlign = LN0->getAlignment();
3267 if (Align <= OrigAlign) {
3268 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3269 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003270 LN0->isVolatile(), Align);
Evan Cheng59d5b682007-05-07 21:27:48 +00003271 AddToWorkList(N);
3272 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3273 Load.getValue(1));
3274 return Load;
3275 }
Chris Lattner57104102005-12-23 05:44:41 +00003276 }
3277
Chris Lattner94683772005-12-23 05:30:37 +00003278 return SDOperand();
3279}
3280
Dan Gohman7f321562007-06-25 16:23:39 +00003281/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
Chris Lattner6258fb22006-04-02 02:53:43 +00003282/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3283/// destination element value type.
3284SDOperand DAGCombiner::
Dan Gohman7f321562007-06-25 16:23:39 +00003285ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003286 MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
3287
3288 // If this is already the right type, we're done.
3289 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3290
3291 unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
3292 unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
3293
3294 // If this is a conversion of N elements of one type to N elements of another
3295 // type, convert each element. This handles FP<->INT cases.
3296 if (SrcBitSize == DstBitSize) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003297 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003298 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003299 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
Chris Lattner3e104b12006-04-08 04:15:24 +00003300 AddToWorkList(Ops.back().Val);
3301 }
Dan Gohman7f321562007-06-25 16:23:39 +00003302 MVT::ValueType VT =
3303 MVT::getVectorType(DstEltVT,
3304 MVT::getVectorNumElements(BV->getValueType(0)));
3305 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003306 }
3307
3308 // Otherwise, we're growing or shrinking the elements. To avoid having to
3309 // handle annoying details of growing/shrinking FP values, we convert them to
3310 // int first.
3311 if (MVT::isFloatingPoint(SrcEltVT)) {
3312 // Convert the input float vector to a int vector where the elements are the
3313 // same sizes.
3314 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
3315 MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003316 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003317 SrcEltVT = IntVT;
3318 }
3319
3320 // Now we know the input is an integer vector. If the output is a FP type,
3321 // convert to integer first, then to FP of the right size.
3322 if (MVT::isFloatingPoint(DstEltVT)) {
3323 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
3324 MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003325 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003326
3327 // Next, convert to FP elements of the same size.
Dan Gohman7f321562007-06-25 16:23:39 +00003328 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00003329 }
3330
3331 // Okay, we know the src/dst types are both integers of differing types.
3332 // Handling growing first.
3333 assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
3334 if (SrcBitSize < DstBitSize) {
3335 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3336
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003337 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003338 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00003339 i += NumInputsPerOutput) {
3340 bool isLE = TLI.isLittleEndian();
3341 uint64_t NewBits = 0;
3342 bool EltIsUndef = true;
3343 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3344 // Shift the previously computed bits over.
3345 NewBits <<= SrcBitSize;
3346 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3347 if (Op.getOpcode() == ISD::UNDEF) continue;
3348 EltIsUndef = false;
3349
3350 NewBits |= cast<ConstantSDNode>(Op)->getValue();
3351 }
3352
3353 if (EltIsUndef)
3354 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3355 else
3356 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3357 }
3358
Dan Gohman7f321562007-06-25 16:23:39 +00003359 MVT::ValueType VT = MVT::getVectorType(DstEltVT,
3360 Ops.size());
3361 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003362 }
3363
3364 // Finally, this must be the case where we are shrinking elements: each input
3365 // turns into multiple outputs.
3366 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003367 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003368 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003369 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3370 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3371 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3372 continue;
3373 }
3374 uint64_t OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getValue();
3375
3376 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
3377 unsigned ThisVal = OpVal & ((1ULL << DstBitSize)-1);
3378 OpVal >>= DstBitSize;
3379 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
3380 }
3381
3382 // For big endian targets, swap the order of the pieces of each element.
3383 if (!TLI.isLittleEndian())
3384 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3385 }
Dan Gohman7f321562007-06-25 16:23:39 +00003386 MVT::ValueType VT = MVT::getVectorType(DstEltVT, Ops.size());
3387 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003388}
3389
3390
3391
Chris Lattner01b3d732005-09-28 22:28:18 +00003392SDOperand DAGCombiner::visitFADD(SDNode *N) {
3393 SDOperand N0 = N->getOperand(0);
3394 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003395 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3396 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003397 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003398
Dan Gohman7f321562007-06-25 16:23:39 +00003399 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003400 if (MVT::isVector(VT)) {
3401 SDOperand FoldedVOp = SimplifyVBinOp(N);
3402 if (FoldedVOp.Val) return FoldedVOp;
3403 }
Dan Gohman7f321562007-06-25 16:23:39 +00003404
Nate Begemana0e221d2005-10-18 00:28:13 +00003405 // fold (fadd c1, c2) -> c1+c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003406 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003407 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003408 // canonicalize constant to RHS
3409 if (N0CFP && !N1CFP)
3410 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003411 // fold (A + (-B)) -> A-B
Chris Lattner29446522007-05-14 22:04:50 +00003412 if (isNegatibleForFree(N1) == 2)
3413 return DAG.getNode(ISD::FSUB, VT, N0, GetNegatedExpression(N1, DAG));
Chris Lattner01b3d732005-09-28 22:28:18 +00003414 // fold ((-A) + B) -> B-A
Chris Lattner29446522007-05-14 22:04:50 +00003415 if (isNegatibleForFree(N0) == 2)
3416 return DAG.getNode(ISD::FSUB, VT, N1, GetNegatedExpression(N0, DAG));
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003417
3418 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3419 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3420 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3421 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3422 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3423
Chris Lattner01b3d732005-09-28 22:28:18 +00003424 return SDOperand();
3425}
3426
3427SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3428 SDOperand N0 = N->getOperand(0);
3429 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003430 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3431 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003432 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003433
Dan Gohman7f321562007-06-25 16:23:39 +00003434 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003435 if (MVT::isVector(VT)) {
3436 SDOperand FoldedVOp = SimplifyVBinOp(N);
3437 if (FoldedVOp.Val) return FoldedVOp;
3438 }
Dan Gohman7f321562007-06-25 16:23:39 +00003439
Nate Begemana0e221d2005-10-18 00:28:13 +00003440 // fold (fsub c1, c2) -> c1-c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003441 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003442 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00003443 // fold (0-B) -> -B
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003444 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Dan Gohman23ff1822007-07-02 15:48:56 +00003445 if (isNegatibleForFree(N1))
3446 return GetNegatedExpression(N1, DAG);
3447 return DAG.getNode(ISD::FNEG, VT, N1);
3448 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003449 // fold (A-(-B)) -> A+B
Chris Lattner29446522007-05-14 22:04:50 +00003450 if (isNegatibleForFree(N1))
3451 return DAG.getNode(ISD::FADD, VT, N0, GetNegatedExpression(N1, DAG));
3452
Chris Lattner01b3d732005-09-28 22:28:18 +00003453 return SDOperand();
3454}
3455
3456SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3457 SDOperand N0 = N->getOperand(0);
3458 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003459 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3460 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003461 MVT::ValueType VT = N->getValueType(0);
3462
Dan Gohman7f321562007-06-25 16:23:39 +00003463 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003464 if (MVT::isVector(VT)) {
3465 SDOperand FoldedVOp = SimplifyVBinOp(N);
3466 if (FoldedVOp.Val) return FoldedVOp;
3467 }
Dan Gohman7f321562007-06-25 16:23:39 +00003468
Nate Begeman11af4ea2005-10-17 20:40:11 +00003469 // fold (fmul c1, c2) -> c1*c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003470 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003471 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003472 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003473 if (N0CFP && !N1CFP)
3474 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003475 // fold (fmul X, 2.0) -> (fadd X, X)
3476 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3477 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner29446522007-05-14 22:04:50 +00003478 // fold (fmul X, -1.0) -> (fneg X)
3479 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3480 return DAG.getNode(ISD::FNEG, VT, N0);
3481
3482 // -X * -Y -> X*Y
3483 if (char LHSNeg = isNegatibleForFree(N0)) {
3484 if (char RHSNeg = isNegatibleForFree(N1)) {
3485 // Both can be negated for free, check to see if at least one is cheaper
3486 // negated.
3487 if (LHSNeg == 2 || RHSNeg == 2)
3488 return DAG.getNode(ISD::FMUL, VT, GetNegatedExpression(N0, DAG),
3489 GetNegatedExpression(N1, DAG));
3490 }
3491 }
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003492
3493 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3494 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3495 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3496 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3497 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3498
Chris Lattner01b3d732005-09-28 22:28:18 +00003499 return SDOperand();
3500}
3501
3502SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3503 SDOperand N0 = N->getOperand(0);
3504 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003505 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3506 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003507 MVT::ValueType VT = N->getValueType(0);
3508
Dan Gohman7f321562007-06-25 16:23:39 +00003509 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003510 if (MVT::isVector(VT)) {
3511 SDOperand FoldedVOp = SimplifyVBinOp(N);
3512 if (FoldedVOp.Val) return FoldedVOp;
3513 }
Dan Gohman7f321562007-06-25 16:23:39 +00003514
Nate Begemana148d982006-01-18 22:35:16 +00003515 // fold (fdiv c1, c2) -> c1/c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003516 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003517 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner29446522007-05-14 22:04:50 +00003518
3519
3520 // -X / -Y -> X*Y
3521 if (char LHSNeg = isNegatibleForFree(N0)) {
3522 if (char RHSNeg = isNegatibleForFree(N1)) {
3523 // Both can be negated for free, check to see if at least one is cheaper
3524 // negated.
3525 if (LHSNeg == 2 || RHSNeg == 2)
3526 return DAG.getNode(ISD::FDIV, VT, GetNegatedExpression(N0, DAG),
3527 GetNegatedExpression(N1, DAG));
3528 }
3529 }
3530
Chris Lattner01b3d732005-09-28 22:28:18 +00003531 return SDOperand();
3532}
3533
3534SDOperand DAGCombiner::visitFREM(SDNode *N) {
3535 SDOperand N0 = N->getOperand(0);
3536 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003537 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3538 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003539 MVT::ValueType VT = N->getValueType(0);
3540
Nate Begemana148d982006-01-18 22:35:16 +00003541 // fold (frem c1, c2) -> fmod(c1,c2)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003542 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003543 return DAG.getNode(ISD::FREM, VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00003544
Chris Lattner01b3d732005-09-28 22:28:18 +00003545 return SDOperand();
3546}
3547
Chris Lattner12d83032006-03-05 05:30:57 +00003548SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3549 SDOperand N0 = N->getOperand(0);
3550 SDOperand N1 = N->getOperand(1);
3551 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3552 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3553 MVT::ValueType VT = N->getValueType(0);
3554
Dale Johannesendb44bf82007-10-16 23:38:29 +00003555 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Chris Lattner12d83032006-03-05 05:30:57 +00003556 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3557
3558 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00003559 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00003560 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3561 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen87503a62007-08-25 22:10:57 +00003562 if (!V.isNegative())
Chris Lattner12d83032006-03-05 05:30:57 +00003563 return DAG.getNode(ISD::FABS, VT, N0);
3564 else
3565 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3566 }
3567
3568 // copysign(fabs(x), y) -> copysign(x, y)
3569 // copysign(fneg(x), y) -> copysign(x, y)
3570 // copysign(copysign(x,z), y) -> copysign(x, y)
3571 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3572 N0.getOpcode() == ISD::FCOPYSIGN)
3573 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3574
3575 // copysign(x, abs(y)) -> abs(x)
3576 if (N1.getOpcode() == ISD::FABS)
3577 return DAG.getNode(ISD::FABS, VT, N0);
3578
3579 // copysign(x, copysign(y,z)) -> copysign(x, z)
3580 if (N1.getOpcode() == ISD::FCOPYSIGN)
3581 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3582
3583 // copysign(x, fp_extend(y)) -> copysign(x, y)
3584 // copysign(x, fp_round(y)) -> copysign(x, y)
3585 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3586 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3587
3588 return SDOperand();
3589}
3590
3591
Chris Lattner01b3d732005-09-28 22:28:18 +00003592
Nate Begeman83e75ec2005-09-06 04:43:02 +00003593SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003594 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003595 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003596 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003597
3598 // fold (sint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003599 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003600 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003601 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003602}
3603
Nate Begeman83e75ec2005-09-06 04:43:02 +00003604SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003605 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003606 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003607 MVT::ValueType VT = N->getValueType(0);
3608
Nate Begeman1d4d4142005-09-01 00:19:25 +00003609 // fold (uint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003610 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003611 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003612 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003613}
3614
Nate Begeman83e75ec2005-09-06 04:43:02 +00003615SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003616 SDOperand N0 = N->getOperand(0);
3617 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3618 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003619
3620 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003621 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003622 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003623 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003624}
3625
Nate Begeman83e75ec2005-09-06 04:43:02 +00003626SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003627 SDOperand N0 = N->getOperand(0);
3628 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3629 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003630
3631 // fold (fp_to_uint c1fp) -> c1
Dale Johannesendb44bf82007-10-16 23:38:29 +00003632 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003633 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003634 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003635}
3636
Nate Begeman83e75ec2005-09-06 04:43:02 +00003637SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003638 SDOperand N0 = N->getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003639 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003640 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3641 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003642
3643 // fold (fp_round c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003644 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Chris Lattner0bd48932008-01-17 07:00:52 +00003645 return DAG.getNode(ISD::FP_ROUND, VT, N0, N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003646
3647 // fold (fp_round (fp_extend x)) -> x
3648 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3649 return N0.getOperand(0);
3650
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00003651 // fold (fp_round (fp_round x)) -> (fp_round x)
3652 if (N0.getOpcode() == ISD::FP_ROUND) {
3653 // This is a value preserving truncation if both round's are.
3654 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
3655 N0.Val->getConstantOperandVal(1) == 1;
3656 return DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0),
3657 DAG.getIntPtrConstant(IsTrunc));
3658 }
3659
Chris Lattner79dbea52006-03-13 06:26:26 +00003660 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3661 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003662 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0), N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003663 AddToWorkList(Tmp.Val);
3664 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3665 }
3666
Nate Begeman83e75ec2005-09-06 04:43:02 +00003667 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003668}
3669
Nate Begeman83e75ec2005-09-06 04:43:02 +00003670SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003671 SDOperand N0 = N->getOperand(0);
3672 MVT::ValueType VT = N->getValueType(0);
3673 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00003674 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003675
Nate Begeman1d4d4142005-09-01 00:19:25 +00003676 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003677 if (N0CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003678 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003679 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003680 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003681 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003682}
3683
Nate Begeman83e75ec2005-09-06 04:43:02 +00003684SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003685 SDOperand N0 = N->getOperand(0);
3686 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3687 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003688
Chris Lattner5938bef2007-12-29 06:55:23 +00003689 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
3690 if (N->hasOneUse() && (*N->use_begin())->getOpcode() == ISD::FP_ROUND)
3691 return SDOperand();
Chris Lattner0bd48932008-01-17 07:00:52 +00003692
Nate Begeman1d4d4142005-09-01 00:19:25 +00003693 // fold (fp_extend c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003694 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003695 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003696
3697 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
3698 // value of X.
3699 if (N0.getOpcode() == ISD::FP_ROUND && N0.Val->getConstantOperandVal(1) == 1){
3700 SDOperand In = N0.getOperand(0);
3701 if (In.getValueType() == VT) return In;
3702 if (VT < In.getValueType())
3703 return DAG.getNode(ISD::FP_ROUND, VT, In, N0.getOperand(1));
3704 return DAG.getNode(ISD::FP_EXTEND, VT, In);
3705 }
3706
3707 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Dale Johannesenb6210fc2007-10-19 20:29:00 +00003708 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003709 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003710 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3711 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3712 LN0->getBasePtr(), LN0->getSrcValue(),
3713 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003714 N0.getValueType(),
3715 LN0->isVolatile(),
3716 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00003717 CombineTo(N, ExtLoad);
Chris Lattner0bd48932008-01-17 07:00:52 +00003718 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad,
3719 DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00003720 ExtLoad.getValue(1));
3721 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3722 }
3723
3724
Nate Begeman83e75ec2005-09-06 04:43:02 +00003725 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003726}
3727
Nate Begeman83e75ec2005-09-06 04:43:02 +00003728SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003729 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00003730
Dan Gohman23ff1822007-07-02 15:48:56 +00003731 if (isNegatibleForFree(N0))
3732 return GetNegatedExpression(N0, DAG);
3733
Nate Begeman83e75ec2005-09-06 04:43:02 +00003734 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003735}
3736
Nate Begeman83e75ec2005-09-06 04:43:02 +00003737SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003738 SDOperand N0 = N->getOperand(0);
3739 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3740 MVT::ValueType VT = N->getValueType(0);
3741
Nate Begeman1d4d4142005-09-01 00:19:25 +00003742 // fold (fabs c1) -> fabs(c1)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003743 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003744 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003745 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003746 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003747 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003748 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003749 // fold (fabs (fcopysign x, y)) -> (fabs x)
3750 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
3751 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
3752
Nate Begeman83e75ec2005-09-06 04:43:02 +00003753 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003754}
3755
Nate Begeman44728a72005-09-19 22:34:01 +00003756SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
3757 SDOperand Chain = N->getOperand(0);
3758 SDOperand N1 = N->getOperand(1);
3759 SDOperand N2 = N->getOperand(2);
3760 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3761
3762 // never taken branch, fold to chain
3763 if (N1C && N1C->isNullValue())
3764 return Chain;
3765 // unconditional branch
Nate Begemane17daeb2005-10-05 21:43:42 +00003766 if (N1C && N1C->getValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00003767 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003768 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
3769 // on the target.
3770 if (N1.getOpcode() == ISD::SETCC &&
3771 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
3772 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
3773 N1.getOperand(0), N1.getOperand(1), N2);
3774 }
Nate Begeman44728a72005-09-19 22:34:01 +00003775 return SDOperand();
3776}
3777
Chris Lattner3ea0b472005-10-05 06:47:48 +00003778// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
3779//
Nate Begeman44728a72005-09-19 22:34:01 +00003780SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00003781 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
3782 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
3783
3784 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00003785 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
Chris Lattner30f73e72006-10-14 03:52:46 +00003786 if (Simp.Val) AddToWorkList(Simp.Val);
3787
Nate Begemane17daeb2005-10-05 21:43:42 +00003788 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
3789
3790 // fold br_cc true, dest -> br dest (unconditional branch)
3791 if (SCCC && SCCC->getValue())
3792 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
3793 N->getOperand(4));
3794 // fold br_cc false, dest -> unconditional fall through
3795 if (SCCC && SCCC->isNullValue())
3796 return N->getOperand(0);
Chris Lattner30f73e72006-10-14 03:52:46 +00003797
Nate Begemane17daeb2005-10-05 21:43:42 +00003798 // fold to a simpler setcc
3799 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
3800 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
3801 Simp.getOperand(2), Simp.getOperand(0),
3802 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00003803 return SDOperand();
3804}
3805
Chris Lattner448f2192006-11-11 00:39:41 +00003806
3807/// CombineToPreIndexedLoadStore - Try turning a load / store and a
3808/// pre-indexed load / store when the base pointer is a add or subtract
3809/// and it has other uses besides the load / store. After the
3810/// transformation, the new indexed load / store has effectively folded
3811/// the add / subtract in and all of its other uses are redirected to the
3812/// new load / store.
3813bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
3814 if (!AfterLegalize)
3815 return false;
3816
3817 bool isLoad = true;
3818 SDOperand Ptr;
3819 MVT::ValueType VT;
3820 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003821 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003822 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003823 VT = LD->getLoadedVT();
Evan Cheng83060c52007-03-07 08:07:03 +00003824 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00003825 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
3826 return false;
3827 Ptr = LD->getBasePtr();
3828 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003829 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003830 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003831 VT = ST->getStoredVT();
3832 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
3833 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
3834 return false;
3835 Ptr = ST->getBasePtr();
3836 isLoad = false;
3837 } else
3838 return false;
3839
Chris Lattner9f1794e2006-11-11 00:56:29 +00003840 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
3841 // out. There is no reason to make this a preinc/predec.
3842 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
3843 Ptr.Val->hasOneUse())
3844 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003845
Chris Lattner9f1794e2006-11-11 00:56:29 +00003846 // Ask the target to do addressing mode selection.
3847 SDOperand BasePtr;
3848 SDOperand Offset;
3849 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3850 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
3851 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00003852 // Don't create a indexed load / store with zero offset.
3853 if (isa<ConstantSDNode>(Offset) &&
3854 cast<ConstantSDNode>(Offset)->getValue() == 0)
3855 return false;
Chris Lattner9f1794e2006-11-11 00:56:29 +00003856
Chris Lattner41e53fd2006-11-11 01:00:15 +00003857 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00003858 // 1) The new base ptr is a frame index.
3859 // 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 +00003860 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00003861 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00003862 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00003863 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00003864
Chris Lattner41e53fd2006-11-11 01:00:15 +00003865 // Check #1. Preinc'ing a frame index would require copying the stack pointer
3866 // (plus the implicit offset) to a register to preinc anyway.
3867 if (isa<FrameIndexSDNode>(BasePtr))
3868 return false;
3869
3870 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003871 if (!isLoad) {
3872 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Chengc843abe2007-05-24 02:35:39 +00003873 if (Val == BasePtr || BasePtr.Val->isPredecessor(Val.Val))
Chris Lattner9f1794e2006-11-11 00:56:29 +00003874 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003875 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003876
Evan Chengc843abe2007-05-24 02:35:39 +00003877 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003878 bool RealUse = false;
3879 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3880 E = Ptr.Val->use_end(); I != E; ++I) {
3881 SDNode *Use = *I;
3882 if (Use == N)
3883 continue;
3884 if (Use->isPredecessor(N))
3885 return false;
3886
3887 if (!((Use->getOpcode() == ISD::LOAD &&
3888 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
3889 (Use->getOpcode() == ISD::STORE) &&
3890 cast<StoreSDNode>(Use)->getBasePtr() == Ptr))
3891 RealUse = true;
3892 }
3893 if (!RealUse)
3894 return false;
3895
3896 SDOperand Result;
3897 if (isLoad)
3898 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
3899 else
3900 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
3901 ++PreIndexedNodes;
3902 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00003903 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00003904 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
3905 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00003906 std::vector<SDNode*> NowDead;
3907 if (isLoad) {
3908 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003909 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003910 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00003911 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003912 } else {
3913 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00003914 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003915 }
3916
3917 // Nodes can end up on the worklist more than once. Make sure we do
3918 // not process a node that has been replaced.
3919 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3920 removeFromWorkList(NowDead[i]);
3921 // Finally, since the node is now dead, remove it from the graph.
3922 DAG.DeleteNode(N);
3923
3924 // Replace the uses of Ptr with uses of the updated base value.
3925 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003926 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003927 removeFromWorkList(Ptr.Val);
3928 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3929 removeFromWorkList(NowDead[i]);
3930 DAG.DeleteNode(Ptr.Val);
3931
3932 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00003933}
3934
3935/// CombineToPostIndexedLoadStore - Try combine a load / store with a
3936/// add / sub of the base pointer node into a post-indexed load / store.
3937/// The transformation folded the add / subtract into the new indexed
3938/// load / store effectively and all of its uses are redirected to the
3939/// new load / store.
3940bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
3941 if (!AfterLegalize)
3942 return false;
3943
3944 bool isLoad = true;
3945 SDOperand Ptr;
3946 MVT::ValueType VT;
3947 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003948 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003949 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003950 VT = LD->getLoadedVT();
3951 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
3952 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
3953 return false;
3954 Ptr = LD->getBasePtr();
3955 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003956 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003957 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003958 VT = ST->getStoredVT();
3959 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
3960 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
3961 return false;
3962 Ptr = ST->getBasePtr();
3963 isLoad = false;
3964 } else
3965 return false;
3966
Evan Chengcc470212006-11-16 00:08:20 +00003967 if (Ptr.Val->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00003968 return false;
3969
3970 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3971 E = Ptr.Val->use_end(); I != E; ++I) {
3972 SDNode *Op = *I;
3973 if (Op == N ||
3974 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
3975 continue;
3976
3977 SDOperand BasePtr;
3978 SDOperand Offset;
3979 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3980 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
3981 if (Ptr == Offset)
3982 std::swap(BasePtr, Offset);
3983 if (Ptr != BasePtr)
Chris Lattner448f2192006-11-11 00:39:41 +00003984 continue;
Evan Chenga7d4a042007-05-03 23:52:19 +00003985 // Don't create a indexed load / store with zero offset.
3986 if (isa<ConstantSDNode>(Offset) &&
3987 cast<ConstantSDNode>(Offset)->getValue() == 0)
3988 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00003989
Chris Lattner9f1794e2006-11-11 00:56:29 +00003990 // Try turning it into a post-indexed load / store except when
3991 // 1) All uses are load / store ops that use it as base ptr.
3992 // 2) Op must be independent of N, i.e. Op is neither a predecessor
3993 // nor a successor of N. Otherwise, if Op is folded that would
3994 // create a cycle.
3995
3996 // Check for #1.
3997 bool TryNext = false;
3998 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
3999 EE = BasePtr.Val->use_end(); II != EE; ++II) {
4000 SDNode *Use = *II;
4001 if (Use == Ptr.Val)
Chris Lattner448f2192006-11-11 00:39:41 +00004002 continue;
4003
Chris Lattner9f1794e2006-11-11 00:56:29 +00004004 // If all the uses are load / store addresses, then don't do the
4005 // transformation.
4006 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
4007 bool RealUse = false;
4008 for (SDNode::use_iterator III = Use->use_begin(),
4009 EEE = Use->use_end(); III != EEE; ++III) {
4010 SDNode *UseUse = *III;
4011 if (!((UseUse->getOpcode() == ISD::LOAD &&
4012 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
4013 (UseUse->getOpcode() == ISD::STORE) &&
4014 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use))
4015 RealUse = true;
4016 }
Chris Lattner448f2192006-11-11 00:39:41 +00004017
Chris Lattner9f1794e2006-11-11 00:56:29 +00004018 if (!RealUse) {
4019 TryNext = true;
4020 break;
Chris Lattner448f2192006-11-11 00:39:41 +00004021 }
4022 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004023 }
4024 if (TryNext)
4025 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004026
Chris Lattner9f1794e2006-11-11 00:56:29 +00004027 // Check for #2
4028 if (!Op->isPredecessor(N) && !N->isPredecessor(Op)) {
4029 SDOperand Result = isLoad
4030 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4031 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4032 ++PostIndexedNodes;
4033 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004034 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004035 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4036 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00004037 std::vector<SDNode*> NowDead;
4038 if (isLoad) {
4039 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004040 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004041 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00004042 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004043 } else {
4044 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00004045 &NowDead);
Chris Lattner448f2192006-11-11 00:39:41 +00004046 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004047
4048 // Nodes can end up on the worklist more than once. Make sure we do
4049 // not process a node that has been replaced.
4050 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4051 removeFromWorkList(NowDead[i]);
4052 // Finally, since the node is now dead, remove it from the graph.
4053 DAG.DeleteNode(N);
4054
4055 // Replace the uses of Use with uses of the updated base value.
4056 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4057 Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004058 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004059 removeFromWorkList(Op);
4060 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4061 removeFromWorkList(NowDead[i]);
4062 DAG.DeleteNode(Op);
4063
4064 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004065 }
4066 }
4067 }
4068 return false;
4069}
4070
4071
Chris Lattner01a22022005-10-10 22:04:48 +00004072SDOperand DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00004073 LoadSDNode *LD = cast<LoadSDNode>(N);
4074 SDOperand Chain = LD->getChain();
4075 SDOperand Ptr = LD->getBasePtr();
Evan Cheng45a7ca92007-05-01 00:38:21 +00004076
4077 // If load is not volatile and there are no uses of the loaded value (and
4078 // the updated indexed value in case of indexed loads), change uses of the
4079 // chain value into uses of the chain input (i.e. delete the dead load).
4080 if (!LD->isVolatile()) {
Evan Cheng498f5592007-05-01 08:53:39 +00004081 if (N->getValueType(1) == MVT::Other) {
4082 // Unindexed loads.
Evan Cheng02c42852008-01-16 23:11:54 +00004083 if (N->hasNUsesOfValue(0, 0)) {
4084 // It's not safe to use the two value CombineTo variant here. e.g.
4085 // v1, chain2 = load chain1, loc
4086 // v2, chain3 = load chain2, loc
4087 // v3 = add v2, c
4088 // Now we replace use of v1 with undef, use of chain2 with chain1.
4089 // ReplaceAllUsesWith() will iterate through uses of the first load and
4090 // update operands:
4091 // v1, chain2 = load chain1, loc
4092 // v2, chain3 = load chain1, loc
4093 // v3 = add v2, c
4094 // Now the second load is the same as the first load, SelectionDAG cse
4095 // will ensure the use of second load is replaced with the first load.
4096 // v1, chain2 = load chain1, loc
4097 // v3 = add v1, c
4098 // Then v1 is replaced with undef and bad things happen.
4099 std::vector<SDNode*> NowDead;
4100 SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4101 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4102 DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4103 DOUT << " and 1 other value\n";
4104 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &NowDead);
4105 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Chain, &NowDead);
4106 removeFromWorkList(N);
4107 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4108 removeFromWorkList(NowDead[i]);
4109 DAG.DeleteNode(N);
4110 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
4111 }
Evan Cheng498f5592007-05-01 08:53:39 +00004112 } else {
4113 // Indexed loads.
4114 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4115 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
Evan Cheng02c42852008-01-16 23:11:54 +00004116 std::vector<SDNode*> NowDead;
4117 SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4118 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4119 DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4120 DOUT << " and 2 other values\n";
4121 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &NowDead);
4122 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
Chris Lattner4626b252008-01-17 07:20:38 +00004123 DAG.getNode(ISD::UNDEF, N->getValueType(1)),
Evan Cheng02c42852008-01-16 23:11:54 +00004124 &NowDead);
4125 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 2), Chain, &NowDead);
4126 removeFromWorkList(N);
4127 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4128 removeFromWorkList(NowDead[i]);
4129 DAG.DeleteNode(N);
4130 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00004131 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00004132 }
4133 }
Chris Lattner01a22022005-10-10 22:04:48 +00004134
4135 // If this load is directly stored, replace the load value with the stored
4136 // value.
4137 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004138 // TODO: Handle TRUNCSTORE/LOADEXT
4139 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004140 if (ISD::isNON_TRUNCStore(Chain.Val)) {
4141 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4142 if (PrevST->getBasePtr() == Ptr &&
4143 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004144 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00004145 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004146 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00004147
Jim Laskey7ca56af2006-10-11 13:47:09 +00004148 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00004149 // Walk up chain skipping non-aliasing memory nodes.
4150 SDOperand BetterChain = FindBetterChain(N, Chain);
4151
Jim Laskey6ff23e52006-10-04 16:53:27 +00004152 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004153 if (Chain != BetterChain) {
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004154 SDOperand ReplLoad;
4155
Jim Laskey279f0532006-09-25 16:29:54 +00004156 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004157 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4158 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Duncan Sandsdc846502007-10-28 12:59:45 +00004159 LD->getSrcValue(), LD->getSrcValueOffset(),
4160 LD->isVolatile(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004161 } else {
4162 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4163 LD->getValueType(0),
4164 BetterChain, Ptr, LD->getSrcValue(),
4165 LD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004166 LD->getLoadedVT(),
4167 LD->isVolatile(),
4168 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004169 }
Jim Laskey279f0532006-09-25 16:29:54 +00004170
Jim Laskey6ff23e52006-10-04 16:53:27 +00004171 // Create token factor to keep old chain connected.
Jim Laskey288af5e2006-09-25 19:32:58 +00004172 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4173 Chain, ReplLoad.getValue(1));
Jim Laskey6ff23e52006-10-04 16:53:27 +00004174
Jim Laskey274062c2006-10-13 23:32:28 +00004175 // Replace uses with load result and token factor. Don't add users
4176 // to work list.
4177 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004178 }
4179 }
4180
Evan Cheng7fc033a2006-11-03 03:06:21 +00004181 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004182 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng7fc033a2006-11-03 03:06:21 +00004183 return SDOperand(N, 0);
4184
Chris Lattner01a22022005-10-10 22:04:48 +00004185 return SDOperand();
4186}
4187
Chris Lattner07649d92008-01-08 23:08:06 +00004188
Chris Lattner87514ca2005-10-10 22:31:19 +00004189SDOperand DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004190 StoreSDNode *ST = cast<StoreSDNode>(N);
4191 SDOperand Chain = ST->getChain();
4192 SDOperand Value = ST->getValue();
4193 SDOperand Ptr = ST->getBasePtr();
Jim Laskey7aed46c2006-10-11 18:55:16 +00004194
Evan Cheng59d5b682007-05-07 21:27:48 +00004195 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00004196 // resultant store does not need a higher alignment than the original.
Dale Johannesen98a6c622007-05-16 22:45:30 +00004197 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004198 ST->isUnindexed()) {
Evan Cheng59d5b682007-05-07 21:27:48 +00004199 unsigned Align = ST->getAlignment();
4200 MVT::ValueType SVT = Value.getOperand(0).getValueType();
4201 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00004202 getABITypeAlignment(MVT::getTypeForValueType(SVT));
Evan Chengc2cd2b22007-05-07 21:36:06 +00004203 if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
Evan Cheng59d5b682007-05-07 21:27:48 +00004204 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004205 ST->getSrcValueOffset(), ST->isVolatile(), Align);
Jim Laskey279f0532006-09-25 16:29:54 +00004206 }
4207
Nate Begeman2cbba892006-12-11 02:23:46 +00004208 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00004209 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Evan Cheng25ece662006-12-11 17:25:19 +00004210 if (Value.getOpcode() != ISD::TargetConstantFP) {
4211 SDOperand Tmp;
Chris Lattner62be1a72006-12-12 04:16:14 +00004212 switch (CFP->getValueType(0)) {
4213 default: assert(0 && "Unknown FP type");
Dale Johannesenc7b21d52007-09-18 18:36:59 +00004214 case MVT::f80: // We don't do this for these yet.
4215 case MVT::f128:
4216 case MVT::ppcf128:
4217 break;
Chris Lattner62be1a72006-12-12 04:16:14 +00004218 case MVT::f32:
4219 if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004220 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4221 convertToAPInt().getZExtValue(), MVT::i32);
Chris Lattner62be1a72006-12-12 04:16:14 +00004222 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004223 ST->getSrcValueOffset(), ST->isVolatile(),
4224 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004225 }
4226 break;
4227 case MVT::f64:
4228 if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004229 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4230 getZExtValue(), MVT::i64);
Chris Lattner62be1a72006-12-12 04:16:14 +00004231 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004232 ST->getSrcValueOffset(), ST->isVolatile(),
4233 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004234 } else if (TLI.isTypeLegal(MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00004235 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00004236 // argument passing. Since this is so common, custom legalize the
4237 // 64-bit integer store into two 32-bit stores.
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004238 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner62be1a72006-12-12 04:16:14 +00004239 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4240 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
4241 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
4242
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004243 int SVOffset = ST->getSrcValueOffset();
4244 unsigned Alignment = ST->getAlignment();
4245 bool isVolatile = ST->isVolatile();
4246
Chris Lattner62be1a72006-12-12 04:16:14 +00004247 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004248 ST->getSrcValueOffset(),
4249 isVolatile, ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004250 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4251 DAG.getConstant(4, Ptr.getValueType()));
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004252 SVOffset += 4;
Duncan Sandsdc846502007-10-28 12:59:45 +00004253 Alignment = MinAlign(Alignment, 4U);
Chris Lattner62be1a72006-12-12 04:16:14 +00004254 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004255 SVOffset, isVolatile, Alignment);
Chris Lattner62be1a72006-12-12 04:16:14 +00004256 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4257 }
4258 break;
Evan Cheng25ece662006-12-11 17:25:19 +00004259 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004260 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004261 }
4262
Jim Laskey279f0532006-09-25 16:29:54 +00004263 if (CombinerAA) {
4264 // Walk up chain skipping non-aliasing memory nodes.
4265 SDOperand BetterChain = FindBetterChain(N, Chain);
4266
Jim Laskey6ff23e52006-10-04 16:53:27 +00004267 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004268 if (Chain != BetterChain) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00004269 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004270 SDOperand ReplStore;
4271 if (ST->isTruncatingStore()) {
4272 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004273 ST->getSrcValue(),ST->getSrcValueOffset(),
4274 ST->getStoredVT(),
4275 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004276 } else {
4277 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004278 ST->getSrcValue(), ST->getSrcValueOffset(),
4279 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004280 }
4281
Jim Laskey279f0532006-09-25 16:29:54 +00004282 // Create token to keep both nodes around.
Jim Laskey274062c2006-10-13 23:32:28 +00004283 SDOperand Token =
4284 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4285
4286 // Don't add users to work list.
4287 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004288 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00004289 }
Chris Lattnerc33baaa2005-12-23 05:48:07 +00004290
Evan Cheng33dbedc2006-11-05 09:31:14 +00004291 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004292 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng33dbedc2006-11-05 09:31:14 +00004293 return SDOperand(N, 0);
4294
Chris Lattner3c872852007-12-29 06:26:16 +00004295 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00004296 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Chris Lattner2b4c2792007-10-13 06:35:54 +00004297 MVT::isInteger(Value.getValueType())) {
4298 // See if we can simplify the input to this truncstore with knowledge that
4299 // only the low bits are being used. For example:
4300 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4301 SDOperand Shorter =
4302 GetDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT()));
4303 AddToWorkList(Value.Val);
4304 if (Shorter.Val)
4305 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
4306 ST->getSrcValueOffset(), ST->getStoredVT(),
4307 ST->isVolatile(), ST->getAlignment());
Chris Lattnere33544c2007-10-13 06:58:48 +00004308
4309 // Otherwise, see if we can simplify the operation with
4310 // SimplifyDemandedBits, which only works if the value has a single use.
4311 if (SimplifyDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT())))
4312 return SDOperand(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00004313 }
4314
Chris Lattner3c872852007-12-29 06:26:16 +00004315 // If this is a load followed by a store to the same location, then the store
4316 // is dead/noop.
4317 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Chris Lattner07649d92008-01-08 23:08:06 +00004318 if (Ld->getBasePtr() == Ptr && ST->getStoredVT() == Ld->getLoadedVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004319 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00004320 // There can't be any side effects between the load and store, such as
4321 // a call or store.
Chris Lattner572dee72008-01-16 05:49:24 +00004322 Chain.reachesChainWithoutSideEffects(SDOperand(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00004323 // The store is dead, remove it.
4324 return Chain;
4325 }
4326 }
4327
Chris Lattnerddf89562008-01-17 19:59:44 +00004328 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
4329 // truncating store. We can do this even if this is already a truncstore.
4330 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
4331 && TLI.isTypeLegal(Value.getOperand(0).getValueType()) &&
4332 Value.Val->hasOneUse() && ST->isUnindexed() &&
4333 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
4334 ST->getStoredVT())) {
4335 return DAG.getTruncStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
4336 ST->getSrcValueOffset(), ST->getStoredVT(),
4337 ST->isVolatile(), ST->getAlignment());
4338 }
4339
Chris Lattner87514ca2005-10-10 22:31:19 +00004340 return SDOperand();
4341}
4342
Chris Lattnerca242442006-03-19 01:27:56 +00004343SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4344 SDOperand InVec = N->getOperand(0);
4345 SDOperand InVal = N->getOperand(1);
4346 SDOperand EltNo = N->getOperand(2);
4347
4348 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4349 // vector with the inserted element.
4350 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4351 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004352 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
Chris Lattnerca242442006-03-19 01:27:56 +00004353 if (Elt < Ops.size())
4354 Ops[Elt] = InVal;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004355 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4356 &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00004357 }
4358
4359 return SDOperand();
4360}
4361
Evan Cheng513da432007-10-06 08:19:55 +00004362SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
4363 SDOperand InVec = N->getOperand(0);
4364 SDOperand EltNo = N->getOperand(1);
4365
4366 // (vextract (v4f32 s2v (f32 load $addr)), 0) -> (f32 load $addr)
4367 // (vextract (v4i32 bc (v4f32 s2v (f32 load $addr))), 0) -> (i32 load $addr)
4368 if (isa<ConstantSDNode>(EltNo)) {
4369 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4370 bool NewLoad = false;
4371 if (Elt == 0) {
4372 MVT::ValueType VT = InVec.getValueType();
4373 MVT::ValueType EVT = MVT::getVectorElementType(VT);
4374 MVT::ValueType LVT = EVT;
4375 unsigned NumElts = MVT::getVectorNumElements(VT);
4376 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
4377 MVT::ValueType BCVT = InVec.getOperand(0).getValueType();
Dan Gohman090b38a2007-10-29 20:44:42 +00004378 if (!MVT::isVector(BCVT) ||
4379 NumElts != MVT::getVectorNumElements(BCVT))
Evan Cheng513da432007-10-06 08:19:55 +00004380 return SDOperand();
4381 InVec = InVec.getOperand(0);
4382 EVT = MVT::getVectorElementType(BCVT);
4383 NewLoad = true;
4384 }
4385 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4386 InVec.getOperand(0).getValueType() == EVT &&
4387 ISD::isNormalLoad(InVec.getOperand(0).Val) &&
4388 InVec.getOperand(0).hasOneUse()) {
4389 LoadSDNode *LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4390 unsigned Align = LN0->getAlignment();
4391 if (NewLoad) {
4392 // Check the resultant load doesn't need a higher alignment than the
4393 // original load.
4394 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
4395 getABITypeAlignment(MVT::getTypeForValueType(LVT));
4396 if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4397 return SDOperand();
4398 Align = NewAlign;
4399 }
4400
4401 return DAG.getLoad(LVT, LN0->getChain(), LN0->getBasePtr(),
4402 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4403 LN0->isVolatile(), Align);
4404 }
4405 }
4406 }
4407 return SDOperand();
4408}
4409
4410
Dan Gohman7f321562007-06-25 16:23:39 +00004411SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4412 unsigned NumInScalars = N->getNumOperands();
4413 MVT::ValueType VT = N->getValueType(0);
4414 unsigned NumElts = MVT::getVectorNumElements(VT);
4415 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattnerca242442006-03-19 01:27:56 +00004416
Dan Gohman7f321562007-06-25 16:23:39 +00004417 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4418 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4419 // at most two distinct vectors, turn this into a shuffle node.
Chris Lattnerd7648c82006-03-28 20:28:38 +00004420 SDOperand VecIn1, VecIn2;
4421 for (unsigned i = 0; i != NumInScalars; ++i) {
4422 // Ignore undef inputs.
4423 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4424
Dan Gohman7f321562007-06-25 16:23:39 +00004425 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00004426 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00004427 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00004428 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4429 VecIn1 = VecIn2 = SDOperand(0, 0);
4430 break;
4431 }
4432
Dan Gohman7f321562007-06-25 16:23:39 +00004433 // If the input vector type disagrees with the result of the build_vector,
Chris Lattnerd7648c82006-03-28 20:28:38 +00004434 // we can't make a shuffle.
4435 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004436 if (ExtractedFromVec.getValueType() != VT) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00004437 VecIn1 = VecIn2 = SDOperand(0, 0);
4438 break;
4439 }
4440
4441 // Otherwise, remember this. We allow up to two distinct input vectors.
4442 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4443 continue;
4444
4445 if (VecIn1.Val == 0) {
4446 VecIn1 = ExtractedFromVec;
4447 } else if (VecIn2.Val == 0) {
4448 VecIn2 = ExtractedFromVec;
4449 } else {
4450 // Too many inputs.
4451 VecIn1 = VecIn2 = SDOperand(0, 0);
4452 break;
4453 }
4454 }
4455
4456 // If everything is good, we can make a shuffle operation.
4457 if (VecIn1.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004458 SmallVector<SDOperand, 8> BuildVecIndices;
Chris Lattnerd7648c82006-03-28 20:28:38 +00004459 for (unsigned i = 0; i != NumInScalars; ++i) {
4460 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Evan Cheng597a3bd2007-01-20 10:10:26 +00004461 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004462 continue;
4463 }
4464
4465 SDOperand Extract = N->getOperand(i);
4466
4467 // If extracting from the first vector, just use the index directly.
4468 if (Extract.getOperand(0) == VecIn1) {
4469 BuildVecIndices.push_back(Extract.getOperand(1));
4470 continue;
4471 }
4472
4473 // Otherwise, use InIdx + VecSize
4474 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00004475 BuildVecIndices.push_back(DAG.getIntPtrConstant(Idx+NumInScalars));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004476 }
4477
4478 // Add count and size info.
Chris Lattner0bd48932008-01-17 07:00:52 +00004479 MVT::ValueType BuildVecVT = MVT::getVectorType(TLI.getPointerTy(), NumElts);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004480
Dan Gohman7f321562007-06-25 16:23:39 +00004481 // Return the new VECTOR_SHUFFLE node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004482 SDOperand Ops[5];
4483 Ops[0] = VecIn1;
Chris Lattnercef896e2006-03-28 22:19:47 +00004484 if (VecIn2.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004485 Ops[1] = VecIn2;
Chris Lattnercef896e2006-03-28 22:19:47 +00004486 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004487 // Use an undef build_vector as input for the second operand.
Chris Lattnercef896e2006-03-28 22:19:47 +00004488 std::vector<SDOperand> UnOps(NumInScalars,
4489 DAG.getNode(ISD::UNDEF,
Dan Gohman7f321562007-06-25 16:23:39 +00004490 EltType));
4491 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004492 &UnOps[0], UnOps.size());
4493 AddToWorkList(Ops[1].Val);
Chris Lattnercef896e2006-03-28 22:19:47 +00004494 }
Dan Gohman7f321562007-06-25 16:23:39 +00004495 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004496 &BuildVecIndices[0], BuildVecIndices.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004497 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004498 }
4499
4500 return SDOperand();
4501}
4502
Dan Gohman7f321562007-06-25 16:23:39 +00004503SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4504 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4505 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4506 // inputs come from at most two distinct vectors, turn this into a shuffle
4507 // node.
4508
4509 // If we only have one input vector, we don't need to do any concatenation.
4510 if (N->getNumOperands() == 1) {
4511 return N->getOperand(0);
4512 }
4513
4514 return SDOperand();
4515}
4516
Chris Lattner66445d32006-03-28 22:11:53 +00004517SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004518 SDOperand ShufMask = N->getOperand(2);
4519 unsigned NumElts = ShufMask.getNumOperands();
4520
4521 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4522 bool isIdentity = true;
4523 for (unsigned i = 0; i != NumElts; ++i) {
4524 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4525 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4526 isIdentity = false;
4527 break;
4528 }
4529 }
4530 if (isIdentity) return N->getOperand(0);
4531
4532 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4533 isIdentity = true;
4534 for (unsigned i = 0; i != NumElts; ++i) {
4535 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4536 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4537 isIdentity = false;
4538 break;
4539 }
4540 }
4541 if (isIdentity) return N->getOperand(1);
Evan Chenge7bec0d2006-07-20 22:44:41 +00004542
4543 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4544 // needed at all.
4545 bool isUnary = true;
Evan Cheng917ec982006-07-21 08:25:53 +00004546 bool isSplat = true;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004547 int VecNum = -1;
Reid Spencer9160a6a2006-07-25 20:44:41 +00004548 unsigned BaseIdx = 0;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004549 for (unsigned i = 0; i != NumElts; ++i)
4550 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4551 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4552 int V = (Idx < NumElts) ? 0 : 1;
Evan Cheng917ec982006-07-21 08:25:53 +00004553 if (VecNum == -1) {
Evan Chenge7bec0d2006-07-20 22:44:41 +00004554 VecNum = V;
Evan Cheng917ec982006-07-21 08:25:53 +00004555 BaseIdx = Idx;
4556 } else {
4557 if (BaseIdx != Idx)
4558 isSplat = false;
4559 if (VecNum != V) {
4560 isUnary = false;
4561 break;
4562 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00004563 }
4564 }
4565
4566 SDOperand N0 = N->getOperand(0);
4567 SDOperand N1 = N->getOperand(1);
4568 // Normalize unary shuffle so the RHS is undef.
4569 if (isUnary && VecNum == 1)
4570 std::swap(N0, N1);
4571
Evan Cheng917ec982006-07-21 08:25:53 +00004572 // If it is a splat, check if the argument vector is a build_vector with
4573 // all scalar elements the same.
4574 if (isSplat) {
4575 SDNode *V = N0.Val;
Evan Cheng917ec982006-07-21 08:25:53 +00004576
Dan Gohman7f321562007-06-25 16:23:39 +00004577 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00004578 // not the number of vector elements, look through it. Be careful not to
4579 // look though conversions that change things like v4f32 to v2f64.
Dan Gohman7f321562007-06-25 16:23:39 +00004580 if (V->getOpcode() == ISD::BIT_CONVERT) {
Evan Cheng59569222006-10-16 22:49:37 +00004581 SDOperand ConvInput = V->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004582 if (MVT::getVectorNumElements(ConvInput.getValueType()) == NumElts)
Evan Cheng59569222006-10-16 22:49:37 +00004583 V = ConvInput.Val;
4584 }
4585
Dan Gohman7f321562007-06-25 16:23:39 +00004586 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4587 unsigned NumElems = V->getNumOperands();
Evan Cheng917ec982006-07-21 08:25:53 +00004588 if (NumElems > BaseIdx) {
4589 SDOperand Base;
4590 bool AllSame = true;
4591 for (unsigned i = 0; i != NumElems; ++i) {
4592 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4593 Base = V->getOperand(i);
4594 break;
4595 }
4596 }
4597 // Splat of <u, u, u, u>, return <u, u, u, u>
4598 if (!Base.Val)
4599 return N0;
4600 for (unsigned i = 0; i != NumElems; ++i) {
Evan Chenge0480d22007-09-18 21:54:37 +00004601 if (V->getOperand(i) != Base) {
Evan Cheng917ec982006-07-21 08:25:53 +00004602 AllSame = false;
4603 break;
4604 }
4605 }
4606 // Splat of <x, x, x, x>, return <x, x, x, x>
4607 if (AllSame)
4608 return N0;
4609 }
4610 }
4611 }
4612
Evan Chenge7bec0d2006-07-20 22:44:41 +00004613 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4614 // into an undef.
4615 if (isUnary || N0 == N1) {
Chris Lattner17614ea2006-04-08 05:34:25 +00004616 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4617 // first operand.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004618 SmallVector<SDOperand, 8> MappedOps;
Chris Lattner17614ea2006-04-08 05:34:25 +00004619 for (unsigned i = 0; i != NumElts; ++i) {
4620 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4621 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4622 MappedOps.push_back(ShufMask.getOperand(i));
4623 } else {
4624 unsigned NewIdx =
4625 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4626 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4627 }
4628 }
Dan Gohman7f321562007-06-25 16:23:39 +00004629 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004630 &MappedOps[0], MappedOps.size());
Chris Lattner17614ea2006-04-08 05:34:25 +00004631 AddToWorkList(ShufMask.Val);
Dan Gohman7f321562007-06-25 16:23:39 +00004632 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4633 N0,
4634 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4635 ShufMask);
Chris Lattner17614ea2006-04-08 05:34:25 +00004636 }
Dan Gohman7f321562007-06-25 16:23:39 +00004637
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004638 return SDOperand();
4639}
4640
Evan Cheng44f1f092006-04-20 08:56:16 +00004641/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00004642/// an AND to a vector_shuffle with the destination vector and a zero vector.
4643/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00004644/// vector_shuffle V, Zero, <0, 4, 2, 4>
4645SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4646 SDOperand LHS = N->getOperand(0);
4647 SDOperand RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00004648 if (N->getOpcode() == ISD::AND) {
4649 if (RHS.getOpcode() == ISD::BIT_CONVERT)
Evan Cheng44f1f092006-04-20 08:56:16 +00004650 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004651 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Evan Cheng44f1f092006-04-20 08:56:16 +00004652 std::vector<SDOperand> IdxOps;
4653 unsigned NumOps = RHS.getNumOperands();
Dan Gohman7f321562007-06-25 16:23:39 +00004654 unsigned NumElts = NumOps;
4655 MVT::ValueType EVT = MVT::getVectorElementType(RHS.getValueType());
Evan Cheng44f1f092006-04-20 08:56:16 +00004656 for (unsigned i = 0; i != NumElts; ++i) {
4657 SDOperand Elt = RHS.getOperand(i);
4658 if (!isa<ConstantSDNode>(Elt))
4659 return SDOperand();
4660 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
4661 IdxOps.push_back(DAG.getConstant(i, EVT));
4662 else if (cast<ConstantSDNode>(Elt)->isNullValue())
4663 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
4664 else
4665 return SDOperand();
4666 }
4667
4668 // Let's see if the target supports this vector_shuffle.
4669 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
4670 return SDOperand();
4671
Dan Gohman7f321562007-06-25 16:23:39 +00004672 // Return the new VECTOR_SHUFFLE node.
4673 MVT::ValueType VT = MVT::getVectorType(EVT, NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00004674 std::vector<SDOperand> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004675 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
Evan Cheng44f1f092006-04-20 08:56:16 +00004676 Ops.push_back(LHS);
4677 AddToWorkList(LHS.Val);
4678 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
Dan Gohman7f321562007-06-25 16:23:39 +00004679 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004680 &ZeroOps[0], ZeroOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004681 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004682 &IdxOps[0], IdxOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004683 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004684 &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004685 if (VT != LHS.getValueType()) {
4686 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
Evan Cheng44f1f092006-04-20 08:56:16 +00004687 }
4688 return Result;
4689 }
4690 }
4691 return SDOperand();
4692}
4693
Dan Gohman7f321562007-06-25 16:23:39 +00004694/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
4695SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
4696 // After legalize, the target may be depending on adds and other
4697 // binary ops to provide legal ways to construct constants or other
4698 // things. Simplifying them may result in a loss of legality.
4699 if (AfterLegalize) return SDOperand();
4700
4701 MVT::ValueType VT = N->getValueType(0);
Dan Gohman05d92fe2007-07-13 20:03:40 +00004702 assert(MVT::isVector(VT) && "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00004703
4704 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattneredab1b92006-04-02 03:25:57 +00004705 SDOperand LHS = N->getOperand(0);
4706 SDOperand RHS = N->getOperand(1);
Evan Cheng44f1f092006-04-20 08:56:16 +00004707 SDOperand Shuffle = XformToShuffleWithZero(N);
4708 if (Shuffle.Val) return Shuffle;
4709
Dan Gohman7f321562007-06-25 16:23:39 +00004710 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00004711 // this operation.
Dan Gohman7f321562007-06-25 16:23:39 +00004712 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
4713 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004714 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004715 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Chris Lattneredab1b92006-04-02 03:25:57 +00004716 SDOperand LHSOp = LHS.getOperand(i);
4717 SDOperand RHSOp = RHS.getOperand(i);
4718 // If these two elements can't be folded, bail out.
4719 if ((LHSOp.getOpcode() != ISD::UNDEF &&
4720 LHSOp.getOpcode() != ISD::Constant &&
4721 LHSOp.getOpcode() != ISD::ConstantFP) ||
4722 (RHSOp.getOpcode() != ISD::UNDEF &&
4723 RHSOp.getOpcode() != ISD::Constant &&
4724 RHSOp.getOpcode() != ISD::ConstantFP))
4725 break;
Evan Cheng7b336a82006-05-31 06:08:35 +00004726 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00004727 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
4728 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00004729 if ((RHSOp.getOpcode() == ISD::Constant &&
4730 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
4731 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00004732 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00004733 break;
4734 }
Dan Gohman7f321562007-06-25 16:23:39 +00004735 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
Chris Lattner3e104b12006-04-08 04:15:24 +00004736 AddToWorkList(Ops.back().Val);
Chris Lattneredab1b92006-04-02 03:25:57 +00004737 assert((Ops.back().getOpcode() == ISD::UNDEF ||
4738 Ops.back().getOpcode() == ISD::Constant ||
4739 Ops.back().getOpcode() == ISD::ConstantFP) &&
4740 "Scalar binop didn't fold!");
4741 }
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004742
Dan Gohman7f321562007-06-25 16:23:39 +00004743 if (Ops.size() == LHS.getNumOperands()) {
4744 MVT::ValueType VT = LHS.getValueType();
4745 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004746 }
Chris Lattneredab1b92006-04-02 03:25:57 +00004747 }
4748
4749 return SDOperand();
4750}
4751
Nate Begeman44728a72005-09-19 22:34:01 +00004752SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00004753 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
4754
4755 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
4756 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4757 // If we got a simplified select_cc node back from SimplifySelectCC, then
4758 // break it down into a new SETCC node, and a new SELECT node, and then return
4759 // the SELECT node, since we were called with a SELECT node.
4760 if (SCC.Val) {
4761 // Check to see if we got a select_cc back (to turn into setcc/select).
4762 // Otherwise, just return whatever node we got back, like fabs.
4763 if (SCC.getOpcode() == ISD::SELECT_CC) {
4764 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
4765 SCC.getOperand(0), SCC.getOperand(1),
4766 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00004767 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004768 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
4769 SCC.getOperand(3), SETCC);
4770 }
4771 return SCC;
4772 }
Nate Begeman44728a72005-09-19 22:34:01 +00004773 return SDOperand();
4774}
4775
Chris Lattner40c62d52005-10-18 06:04:22 +00004776/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
4777/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00004778/// select. Callers of this should assume that TheSelect is deleted if this
4779/// returns true. As such, they should return the appropriate thing (e.g. the
4780/// node) back to the top-level of the DAG combiner loop to avoid it being
4781/// looked at.
Chris Lattner40c62d52005-10-18 06:04:22 +00004782///
4783bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
4784 SDOperand RHS) {
4785
4786 // If this is a select from two identical things, try to pull the operation
4787 // through the select.
4788 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
Chris Lattner40c62d52005-10-18 06:04:22 +00004789 // If this is a load and the token chain is identical, replace the select
4790 // of two loads with a load through a select of the address to load from.
4791 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
4792 // constants have been dropped into the constant pool.
Evan Cheng466685d2006-10-09 20:57:25 +00004793 if (LHS.getOpcode() == ISD::LOAD &&
Chris Lattner40c62d52005-10-18 06:04:22 +00004794 // Token chains must be identical.
Evan Cheng466685d2006-10-09 20:57:25 +00004795 LHS.getOperand(0) == RHS.getOperand(0)) {
4796 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
4797 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
4798
4799 // If this is an EXTLOAD, the VT's must match.
Evan Cheng2e49f092006-10-11 07:10:22 +00004800 if (LLD->getLoadedVT() == RLD->getLoadedVT()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004801 // FIXME: this conflates two src values, discarding one. This is not
4802 // the right thing to do, but nothing uses srcvalues now. When they do,
4803 // turn SrcValue into a list of locations.
4804 SDOperand Addr;
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004805 if (TheSelect->getOpcode() == ISD::SELECT) {
4806 // Check that the condition doesn't reach either load. If so, folding
4807 // this will induce a cycle into the DAG.
4808 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4809 !RLD->isPredecessor(TheSelect->getOperand(0).Val)) {
4810 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
4811 TheSelect->getOperand(0), LLD->getBasePtr(),
4812 RLD->getBasePtr());
4813 }
4814 } else {
4815 // Check that the condition doesn't reach either load. If so, folding
4816 // this will induce a cycle into the DAG.
4817 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4818 !RLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4819 !LLD->isPredecessor(TheSelect->getOperand(1).Val) &&
4820 !RLD->isPredecessor(TheSelect->getOperand(1).Val)) {
4821 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
Evan Cheng466685d2006-10-09 20:57:25 +00004822 TheSelect->getOperand(0),
4823 TheSelect->getOperand(1),
4824 LLD->getBasePtr(), RLD->getBasePtr(),
4825 TheSelect->getOperand(4));
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004826 }
Evan Cheng466685d2006-10-09 20:57:25 +00004827 }
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004828
4829 if (Addr.Val) {
4830 SDOperand Load;
4831 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
4832 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
4833 Addr,LLD->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004834 LLD->getSrcValueOffset(),
4835 LLD->isVolatile(),
4836 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004837 else {
4838 Load = DAG.getExtLoad(LLD->getExtensionType(),
4839 TheSelect->getValueType(0),
4840 LLD->getChain(), Addr, LLD->getSrcValue(),
4841 LLD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004842 LLD->getLoadedVT(),
4843 LLD->isVolatile(),
4844 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004845 }
4846 // Users of the select now use the result of the load.
4847 CombineTo(TheSelect, Load);
4848
4849 // Users of the old loads now use the new load's chain. We know the
4850 // old-load value is dead now.
4851 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
4852 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
4853 return true;
4854 }
Evan Chengc5484282006-10-04 00:56:09 +00004855 }
Chris Lattner40c62d52005-10-18 06:04:22 +00004856 }
4857 }
4858
4859 return false;
4860}
4861
Nate Begeman44728a72005-09-19 22:34:01 +00004862SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
4863 SDOperand N2, SDOperand N3,
Chris Lattner1eba01e2007-04-11 06:50:51 +00004864 ISD::CondCode CC, bool NotExtCompare) {
Nate Begemanf845b452005-10-08 00:29:44 +00004865
4866 MVT::ValueType VT = N2.getValueType();
Nate Begemanf845b452005-10-08 00:29:44 +00004867 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
4868 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
4869 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
4870
4871 // Determine if the condition we're dealing with is constant
4872 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00004873 if (SCC.Val) AddToWorkList(SCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004874 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
4875
4876 // fold select_cc true, x, y -> x
4877 if (SCCC && SCCC->getValue())
4878 return N2;
4879 // fold select_cc false, x, y -> y
4880 if (SCCC && SCCC->getValue() == 0)
4881 return N3;
4882
4883 // Check to see if we can simplify the select into an fabs node
4884 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
4885 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00004886 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00004887 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
4888 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
4889 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
4890 N2 == N3.getOperand(0))
4891 return DAG.getNode(ISD::FABS, VT, N0);
4892
4893 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
4894 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
4895 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
4896 N2.getOperand(0) == N3)
4897 return DAG.getNode(ISD::FABS, VT, N3);
4898 }
4899 }
4900
4901 // Check to see if we can perform the "gzip trick", transforming
4902 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
Chris Lattnere3152e52006-09-20 06:41:35 +00004903 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Nate Begemanf845b452005-10-08 00:29:44 +00004904 MVT::isInteger(N0.getValueType()) &&
Chris Lattnere3152e52006-09-20 06:41:35 +00004905 MVT::isInteger(N2.getValueType()) &&
4906 (N1C->isNullValue() || // (a < 0) ? b : 0
4907 (N1C->getValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Nate Begemanf845b452005-10-08 00:29:44 +00004908 MVT::ValueType XType = N0.getValueType();
4909 MVT::ValueType AType = N2.getValueType();
4910 if (XType >= AType) {
4911 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00004912 // single-bit constant.
Nate Begemanf845b452005-10-08 00:29:44 +00004913 if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
4914 unsigned ShCtV = Log2_64(N2C->getValue());
4915 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
4916 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
4917 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00004918 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004919 if (XType > AType) {
4920 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004921 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004922 }
4923 return DAG.getNode(ISD::AND, AType, Shift, N2);
4924 }
4925 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4926 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4927 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00004928 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004929 if (XType > AType) {
4930 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004931 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004932 }
4933 return DAG.getNode(ISD::AND, AType, Shift, N2);
4934 }
4935 }
Nate Begeman07ed4172005-10-10 21:26:48 +00004936
4937 // fold select C, 16, 0 -> shl C, 4
4938 if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
4939 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
Chris Lattner1eba01e2007-04-11 06:50:51 +00004940
4941 // If the caller doesn't want us to simplify this into a zext of a compare,
4942 // don't do it.
4943 if (NotExtCompare && N2C->getValue() == 1)
4944 return SDOperand();
4945
Nate Begeman07ed4172005-10-10 21:26:48 +00004946 // Get a SetCC of the condition
4947 // FIXME: Should probably make sure that setcc is legal if we ever have a
4948 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00004949 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00004950 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00004951 if (AfterLegalize) {
4952 SCC = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
Chris Lattner555d8d62006-12-07 22:36:47 +00004953 if (N2.getValueType() < SCC.getValueType())
4954 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
4955 else
4956 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004957 } else {
4958 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00004959 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004960 }
Chris Lattner5750df92006-03-01 04:03:14 +00004961 AddToWorkList(SCC.Val);
4962 AddToWorkList(Temp.Val);
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004963
4964 if (N2C->getValue() == 1)
4965 return Temp;
Nate Begeman07ed4172005-10-10 21:26:48 +00004966 // shl setcc result by log2 n2c
4967 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
4968 DAG.getConstant(Log2_64(N2C->getValue()),
4969 TLI.getShiftAmountTy()));
4970 }
4971
Nate Begemanf845b452005-10-08 00:29:44 +00004972 // Check to see if this is the equivalent of setcc
4973 // FIXME: Turn all of these into setcc if setcc if setcc is legal
4974 // otherwise, go ahead with the folds.
4975 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
4976 MVT::ValueType XType = N0.getValueType();
4977 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
4978 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
4979 if (Res.getValueType() != VT)
4980 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
4981 return Res;
4982 }
4983
4984 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
4985 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
4986 TLI.isOperationLegal(ISD::CTLZ, XType)) {
4987 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
4988 return DAG.getNode(ISD::SRL, XType, Ctlz,
4989 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
4990 TLI.getShiftAmountTy()));
4991 }
4992 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
4993 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
4994 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
4995 N0);
4996 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
4997 DAG.getConstant(~0ULL, XType));
4998 return DAG.getNode(ISD::SRL, XType,
4999 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
5000 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5001 TLI.getShiftAmountTy()));
5002 }
5003 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
5004 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
5005 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
5006 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5007 TLI.getShiftAmountTy()));
5008 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
5009 }
5010 }
5011
5012 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
5013 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5014 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
Chris Lattner1982ef22007-04-11 05:11:38 +00005015 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
5016 N2.getOperand(0) == N1 && MVT::isInteger(N0.getValueType())) {
5017 MVT::ValueType XType = N0.getValueType();
5018 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5019 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5020 TLI.getShiftAmountTy()));
5021 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5022 AddToWorkList(Shift.Val);
5023 AddToWorkList(Add.Val);
5024 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5025 }
5026 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
5027 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5028 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
5029 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
5030 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Nate Begemanf845b452005-10-08 00:29:44 +00005031 MVT::ValueType XType = N0.getValueType();
5032 if (SubC->isNullValue() && MVT::isInteger(XType)) {
5033 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5034 DAG.getConstant(MVT::getSizeInBits(XType)-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00005035 TLI.getShiftAmountTy()));
Nate Begemanf845b452005-10-08 00:29:44 +00005036 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005037 AddToWorkList(Shift.Val);
5038 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005039 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5040 }
5041 }
5042 }
Chris Lattner1982ef22007-04-11 05:11:38 +00005043
Nate Begeman44728a72005-09-19 22:34:01 +00005044 return SDOperand();
5045}
5046
Evan Chengfa1eb272007-02-08 22:13:59 +00005047/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Nate Begeman452d7be2005-09-16 00:54:12 +00005048SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00005049 SDOperand N1, ISD::CondCode Cond,
5050 bool foldBooleans) {
Evan Chengfa1eb272007-02-08 22:13:59 +00005051 TargetLowering::DAGCombinerInfo
5052 DagCombineInfo(DAG, !AfterLegalize, false, this);
5053 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
Nate Begeman452d7be2005-09-16 00:54:12 +00005054}
5055
Nate Begeman69575232005-10-20 02:15:44 +00005056/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
5057/// return a DAG expression to select that will generate the same value by
5058/// multiplying by a magic number. See:
5059/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5060SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005061 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005062 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
5063
Andrew Lenharth232c9102006-06-12 16:07:18 +00005064 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005065 ii != ee; ++ii)
5066 AddToWorkList(*ii);
5067 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005068}
5069
5070/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
5071/// return a DAG expression to select that will generate the same value by
5072/// multiplying by a magic number. See:
5073/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5074SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005075 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005076 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00005077
Andrew Lenharth232c9102006-06-12 16:07:18 +00005078 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005079 ii != ee; ++ii)
5080 AddToWorkList(*ii);
5081 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005082}
5083
Jim Laskey71382342006-10-07 23:37:56 +00005084/// FindBaseOffset - Return true if base is known not to alias with anything
5085/// but itself. Provides base object and offset as results.
5086static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5087 // Assume it is a primitive operation.
5088 Base = Ptr; Offset = 0;
5089
5090 // If it's an adding a simple constant then integrate the offset.
5091 if (Base.getOpcode() == ISD::ADD) {
5092 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5093 Base = Base.getOperand(0);
5094 Offset += C->getValue();
5095 }
5096 }
5097
5098 // If it's any of the following then it can't alias with anything but itself.
5099 return isa<FrameIndexSDNode>(Base) ||
5100 isa<ConstantPoolSDNode>(Base) ||
5101 isa<GlobalAddressSDNode>(Base);
5102}
5103
5104/// isAlias - Return true if there is any possibility that the two addresses
5105/// overlap.
Jim Laskey096c22e2006-10-18 12:29:57 +00005106bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5107 const Value *SrcValue1, int SrcValueOffset1,
5108 SDOperand Ptr2, int64_t Size2,
5109 const Value *SrcValue2, int SrcValueOffset2)
5110{
Jim Laskey71382342006-10-07 23:37:56 +00005111 // If they are the same then they must be aliases.
5112 if (Ptr1 == Ptr2) return true;
5113
5114 // Gather base node and offset information.
5115 SDOperand Base1, Base2;
5116 int64_t Offset1, Offset2;
5117 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5118 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5119
5120 // If they have a same base address then...
5121 if (Base1 == Base2) {
5122 // Check to see if the addresses overlap.
5123 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5124 }
5125
Jim Laskey096c22e2006-10-18 12:29:57 +00005126 // If we know both bases then they can't alias.
5127 if (KnownBase1 && KnownBase2) return false;
5128
Jim Laskey07a27092006-10-18 19:08:31 +00005129 if (CombinerGlobalAA) {
5130 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00005131 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5132 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5133 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Jim Laskey07a27092006-10-18 19:08:31 +00005134 AliasAnalysis::AliasResult AAResult =
Jim Laskey096c22e2006-10-18 12:29:57 +00005135 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
Jim Laskey07a27092006-10-18 19:08:31 +00005136 if (AAResult == AliasAnalysis::NoAlias)
5137 return false;
5138 }
Jim Laskey096c22e2006-10-18 12:29:57 +00005139
5140 // Otherwise we have to assume they alias.
5141 return true;
Jim Laskey71382342006-10-07 23:37:56 +00005142}
5143
5144/// FindAliasInfo - Extracts the relevant alias information from the memory
5145/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00005146bool DAGCombiner::FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +00005147 SDOperand &Ptr, int64_t &Size,
5148 const Value *&SrcValue, int &SrcValueOffset) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005149 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5150 Ptr = LD->getBasePtr();
Jim Laskeyc2b19f32006-10-11 17:47:52 +00005151 Size = MVT::getSizeInBits(LD->getLoadedVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005152 SrcValue = LD->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005153 SrcValueOffset = LD->getSrcValueOffset();
Jim Laskey71382342006-10-07 23:37:56 +00005154 return true;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005155 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005156 Ptr = ST->getBasePtr();
Evan Cheng8b2794a2006-10-13 21:14:26 +00005157 Size = MVT::getSizeInBits(ST->getStoredVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005158 SrcValue = ST->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005159 SrcValueOffset = ST->getSrcValueOffset();
Jim Laskey7ca56af2006-10-11 13:47:09 +00005160 } else {
Jim Laskey71382342006-10-07 23:37:56 +00005161 assert(0 && "FindAliasInfo expected a memory operand");
Jim Laskey71382342006-10-07 23:37:56 +00005162 }
5163
5164 return false;
5165}
5166
Jim Laskey6ff23e52006-10-04 16:53:27 +00005167/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5168/// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +00005169void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +00005170 SmallVector<SDOperand, 8> &Aliases) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005171 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
Jim Laskey6ff23e52006-10-04 16:53:27 +00005172 std::set<SDNode *> Visited; // Visited node set.
5173
Jim Laskey279f0532006-09-25 16:29:54 +00005174 // Get alias information for node.
5175 SDOperand Ptr;
5176 int64_t Size;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005177 const Value *SrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005178 int SrcValueOffset;
5179 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
Jim Laskey279f0532006-09-25 16:29:54 +00005180
Jim Laskey6ff23e52006-10-04 16:53:27 +00005181 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00005182 Chains.push_back(OriginalChain);
Jim Laskey6ff23e52006-10-04 16:53:27 +00005183
Jim Laskeybc588b82006-10-05 15:07:25 +00005184 // Look at each chain and determine if it is an alias. If so, add it to the
5185 // aliases list. If not, then continue up the chain looking for the next
5186 // candidate.
5187 while (!Chains.empty()) {
5188 SDOperand Chain = Chains.back();
5189 Chains.pop_back();
Jim Laskey6ff23e52006-10-04 16:53:27 +00005190
Jim Laskeybc588b82006-10-05 15:07:25 +00005191 // Don't bother if we've been before.
5192 if (Visited.find(Chain.Val) != Visited.end()) continue;
5193 Visited.insert(Chain.Val);
5194
5195 switch (Chain.getOpcode()) {
5196 case ISD::EntryToken:
5197 // Entry token is ideal chain operand, but handled in FindBetterChain.
5198 break;
Jim Laskey6ff23e52006-10-04 16:53:27 +00005199
Jim Laskeybc588b82006-10-05 15:07:25 +00005200 case ISD::LOAD:
5201 case ISD::STORE: {
5202 // Get alias information for Chain.
5203 SDOperand OpPtr;
5204 int64_t OpSize;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005205 const Value *OpSrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005206 int OpSrcValueOffset;
5207 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5208 OpSrcValue, OpSrcValueOffset);
Jim Laskeybc588b82006-10-05 15:07:25 +00005209
5210 // If chain is alias then stop here.
5211 if (!(IsLoad && IsOpLoad) &&
Jim Laskey096c22e2006-10-18 12:29:57 +00005212 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5213 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005214 Aliases.push_back(Chain);
5215 } else {
5216 // Look further up the chain.
5217 Chains.push_back(Chain.getOperand(0));
5218 // Clean up old chain.
5219 AddToWorkList(Chain.Val);
Jim Laskey279f0532006-09-25 16:29:54 +00005220 }
Jim Laskeybc588b82006-10-05 15:07:25 +00005221 break;
5222 }
5223
5224 case ISD::TokenFactor:
5225 // We have to check each of the operands of the token factor, so we queue
5226 // then up. Adding the operands to the queue (stack) in reverse order
5227 // maintains the original order and increases the likelihood that getNode
5228 // will find a matching token factor (CSE.)
5229 for (unsigned n = Chain.getNumOperands(); n;)
5230 Chains.push_back(Chain.getOperand(--n));
5231 // Eliminate the token factor if we can.
5232 AddToWorkList(Chain.Val);
5233 break;
5234
5235 default:
5236 // For all other instructions we will just have to take what we can get.
5237 Aliases.push_back(Chain);
5238 break;
Jim Laskey279f0532006-09-25 16:29:54 +00005239 }
5240 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00005241}
5242
5243/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5244/// for a better chain (aliasing node.)
5245SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5246 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00005247
Jim Laskey6ff23e52006-10-04 16:53:27 +00005248 // Accumulate all the aliases to this node.
5249 GatherAllAliases(N, OldChain, Aliases);
5250
5251 if (Aliases.size() == 0) {
5252 // If no operands then chain to entry token.
5253 return DAG.getEntryNode();
5254 } else if (Aliases.size() == 1) {
5255 // If a single operand then chain to it. We don't need to revisit it.
5256 return Aliases[0];
5257 }
5258
5259 // Construct a custom tailored token factor.
5260 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5261 &Aliases[0], Aliases.size());
5262
5263 // Make sure the old chain gets cleaned up.
5264 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5265
5266 return NewChain;
Jim Laskey279f0532006-09-25 16:29:54 +00005267}
5268
Nate Begeman1d4d4142005-09-01 00:19:25 +00005269// SelectionDAG::Combine - This is the entry point for the file.
5270//
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005271void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
Chris Lattner938ab022007-01-16 04:55:25 +00005272 if (!RunningAfterLegalize && ViewDAGCombine1)
5273 viewGraph();
5274 if (RunningAfterLegalize && ViewDAGCombine2)
5275 viewGraph();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005276 /// run - This is the main entry point to this class.
5277 ///
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005278 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005279}