blob: fc393e9ef237d1cfdc9fdfecdb55b1e67afd363c [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Nate Begeman1d4d4142005-09-01 00:19:25 +000012//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000016#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000017#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000018#include "llvm/Target/TargetData.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000019#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000020#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000021#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000022#include "llvm/ADT/SmallPtrSet.h"
23#include "llvm/ADT/Statistic.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000024#include "llvm/Support/Compiler.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000025#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/MathExtras.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000028#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000029using namespace llvm;
30
Chris Lattnercd3245a2006-12-19 22:41:21 +000031STATISTIC(NodesCombined , "Number of dag nodes combined");
32STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
33STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
34
Nate Begeman1d4d4142005-09-01 00:19:25 +000035namespace {
Chris Lattner938ab022007-01-16 04:55:25 +000036#ifndef NDEBUG
37 static cl::opt<bool>
38 ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
39 cl::desc("Pop up a window to show dags before the first "
40 "dag combine pass"));
41 static cl::opt<bool>
42 ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
43 cl::desc("Pop up a window to show dags before the second "
44 "dag combine pass"));
45#else
46 static const bool ViewDAGCombine1 = false;
47 static const bool ViewDAGCombine2 = false;
48#endif
49
Jim Laskey71382342006-10-07 23:37:56 +000050 static cl::opt<bool>
51 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000052 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000053
Jim Laskey07a27092006-10-18 19:08:31 +000054 static cl::opt<bool>
55 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
56 cl::desc("Include global information in alias analysis"));
57
Jim Laskeybc588b82006-10-05 15:07:25 +000058//------------------------------ DAGCombiner ---------------------------------//
59
Jim Laskey71382342006-10-07 23:37:56 +000060 class VISIBILITY_HIDDEN DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000061 SelectionDAG &DAG;
62 TargetLowering &TLI;
Nate Begeman4ebd8052005-09-01 23:24:04 +000063 bool AfterLegalize;
Nate Begeman1d4d4142005-09-01 00:19:25 +000064
65 // Worklist of all of the nodes that need to be simplified.
66 std::vector<SDNode*> WorkList;
67
Jim Laskeyc7c3f112006-10-16 20:52:31 +000068 // AA - Used for DAG load/store alias analysis.
69 AliasAnalysis &AA;
70
Nate Begeman1d4d4142005-09-01 00:19:25 +000071 /// AddUsersToWorkList - When an instruction is simplified, add all users of
72 /// the instruction to the work lists because they might get more simplified
73 /// now.
74 ///
75 void AddUsersToWorkList(SDNode *N) {
76 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000077 UI != UE; ++UI)
Jim Laskey6ff23e52006-10-04 16:53:27 +000078 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000079 }
80
81 /// removeFromWorkList - remove all instances of N from the worklist.
Chris Lattner5750df92006-03-01 04:03:14 +000082 ///
Nate Begeman1d4d4142005-09-01 00:19:25 +000083 void removeFromWorkList(SDNode *N) {
84 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
85 WorkList.end());
86 }
87
Dan Gohman389079b2007-10-08 17:57:15 +000088 /// visit - call the node-specific routine that knows how to fold each
89 /// particular type of node.
90 SDOperand visit(SDNode *N);
91
Chris Lattner24664722006-03-01 04:53:38 +000092 public:
Jim Laskey6ff23e52006-10-04 16:53:27 +000093 /// AddToWorkList - Add to the work list making sure it's instance is at the
94 /// the back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +000095 void AddToWorkList(SDNode *N) {
Jim Laskey6ff23e52006-10-04 16:53:27 +000096 removeFromWorkList(N);
Chris Lattner5750df92006-03-01 04:03:14 +000097 WorkList.push_back(N);
98 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000099
Jim Laskey274062c2006-10-13 23:32:28 +0000100 SDOperand CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
101 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000102 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
Chris Lattner87514ca2005-10-10 22:31:19 +0000103 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000104 DOUT << "\nReplacing.1 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000105 DOUT << "\nWith: "; DEBUG(To[0].Val->dump(&DAG));
106 DOUT << " and " << NumTo-1 << " other values\n";
Chris Lattner01a22022005-10-10 22:04:48 +0000107 std::vector<SDNode*> NowDead;
Chris Lattner3577e382006-08-11 17:56:38 +0000108 DAG.ReplaceAllUsesWith(N, To, &NowDead);
Chris Lattner01a22022005-10-10 22:04:48 +0000109
Jim Laskey274062c2006-10-13 23:32:28 +0000110 if (AddTo) {
111 // Push the new nodes and any users onto the worklist
112 for (unsigned i = 0, e = NumTo; i != e; ++i) {
113 AddToWorkList(To[i].Val);
114 AddUsersToWorkList(To[i].Val);
115 }
Chris Lattner01a22022005-10-10 22:04:48 +0000116 }
117
Jim Laskey6ff23e52006-10-04 16:53:27 +0000118 // Nodes can be reintroduced into the worklist. Make sure we do not
119 // process a node that has been replaced.
Chris Lattner01a22022005-10-10 22:04:48 +0000120 removeFromWorkList(N);
121 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
122 removeFromWorkList(NowDead[i]);
123
124 // Finally, since the node is now dead, remove it from the graph.
125 DAG.DeleteNode(N);
126 return SDOperand(N, 0);
127 }
Nate Begeman368e18d2006-02-16 21:11:51 +0000128
Jim Laskey274062c2006-10-13 23:32:28 +0000129 SDOperand CombineTo(SDNode *N, SDOperand Res, bool AddTo = true) {
130 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000131 }
132
Jim Laskey274062c2006-10-13 23:32:28 +0000133 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1,
134 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000135 SDOperand To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000136 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000137 }
Chris Lattner0bd48932008-01-17 07:00:52 +0000138
Chris Lattner24664722006-03-01 04:53:38 +0000139 private:
140
Chris Lattner012f2412006-02-17 21:58:01 +0000141 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000142 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000143 /// propagation. If so, return true.
Chris Lattnere33544c2007-10-13 06:58:48 +0000144 bool SimplifyDemandedBits(SDOperand Op, uint64_t Demanded = ~0ULL) {
Chris Lattnerb16f55f2007-12-22 20:56:36 +0000145 TargetLowering::TargetLoweringOpt TLO(DAG, AfterLegalize);
Nate Begeman368e18d2006-02-16 21:11:51 +0000146 uint64_t KnownZero, KnownOne;
Chris Lattnere33544c2007-10-13 06:58:48 +0000147 Demanded &= MVT::getIntVTBitMask(Op.getValueType());
Chris Lattner012f2412006-02-17 21:58:01 +0000148 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
149 return false;
150
151 // Revisit the node.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000152 AddToWorkList(Op.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000153
154 // Replace the old value with the new one.
155 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000156 DOUT << "\nReplacing.2 "; DEBUG(TLO.Old.Val->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000157 DOUT << "\nWith: "; DEBUG(TLO.New.Val->dump(&DAG));
158 DOUT << '\n';
Chris Lattner012f2412006-02-17 21:58:01 +0000159
160 std::vector<SDNode*> NowDead;
Chris Lattner01d029b2007-10-15 06:10:22 +0000161 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &NowDead);
Chris Lattner012f2412006-02-17 21:58:01 +0000162
Chris Lattner7d20d392006-02-20 06:51:04 +0000163 // Push the new node and any (possibly new) users onto the worklist.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000164 AddToWorkList(TLO.New.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000165 AddUsersToWorkList(TLO.New.Val);
166
167 // Nodes can end up on the worklist more than once. Make sure we do
168 // not process a node that has been replaced.
Chris Lattner012f2412006-02-17 21:58:01 +0000169 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
170 removeFromWorkList(NowDead[i]);
171
Chris Lattner7d20d392006-02-20 06:51:04 +0000172 // Finally, if the node is now dead, remove it from the graph. The node
173 // may not be dead if the replacement process recursively simplified to
174 // something else needing this node.
175 if (TLO.Old.Val->use_empty()) {
176 removeFromWorkList(TLO.Old.Val);
Chris Lattnerec06e9a2007-04-18 03:05:22 +0000177
178 // If the operands of this node are only used by the node, they will now
179 // be dead. Make sure to visit them first to delete dead nodes early.
180 for (unsigned i = 0, e = TLO.Old.Val->getNumOperands(); i != e; ++i)
181 if (TLO.Old.Val->getOperand(i).Val->hasOneUse())
182 AddToWorkList(TLO.Old.Val->getOperand(i).Val);
183
Chris Lattner7d20d392006-02-20 06:51:04 +0000184 DAG.DeleteNode(TLO.Old.Val);
185 }
Chris Lattner012f2412006-02-17 21:58:01 +0000186 return true;
Nate Begeman368e18d2006-02-16 21:11:51 +0000187 }
Chris Lattner87514ca2005-10-10 22:31:19 +0000188
Chris Lattner448f2192006-11-11 00:39:41 +0000189 bool CombineToPreIndexedLoadStore(SDNode *N);
190 bool CombineToPostIndexedLoadStore(SDNode *N);
191
192
Dan Gohman389079b2007-10-08 17:57:15 +0000193 /// combine - call the node-specific routine that knows how to fold each
194 /// particular type of node. If that doesn't do anything, try the
195 /// target-specific DAG combines.
196 SDOperand combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000197
198 // Visitation implementation - Implement dag node combining for different
199 // node types. The semantics are as follows:
200 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000201 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000202 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000203 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000204 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000205 SDOperand visitTokenFactor(SDNode *N);
206 SDOperand visitADD(SDNode *N);
207 SDOperand visitSUB(SDNode *N);
Chris Lattner91153682007-03-04 20:03:15 +0000208 SDOperand visitADDC(SDNode *N);
209 SDOperand visitADDE(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000210 SDOperand visitMUL(SDNode *N);
211 SDOperand visitSDIV(SDNode *N);
212 SDOperand visitUDIV(SDNode *N);
213 SDOperand visitSREM(SDNode *N);
214 SDOperand visitUREM(SDNode *N);
215 SDOperand visitMULHU(SDNode *N);
216 SDOperand visitMULHS(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000217 SDOperand visitSMUL_LOHI(SDNode *N);
218 SDOperand visitUMUL_LOHI(SDNode *N);
219 SDOperand visitSDIVREM(SDNode *N);
220 SDOperand visitUDIVREM(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000221 SDOperand visitAND(SDNode *N);
222 SDOperand visitOR(SDNode *N);
223 SDOperand visitXOR(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000224 SDOperand SimplifyVBinOp(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000225 SDOperand visitSHL(SDNode *N);
226 SDOperand visitSRA(SDNode *N);
227 SDOperand visitSRL(SDNode *N);
228 SDOperand visitCTLZ(SDNode *N);
229 SDOperand visitCTTZ(SDNode *N);
230 SDOperand visitCTPOP(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000231 SDOperand visitSELECT(SDNode *N);
232 SDOperand visitSELECT_CC(SDNode *N);
233 SDOperand visitSETCC(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000234 SDOperand visitSIGN_EXTEND(SDNode *N);
235 SDOperand visitZERO_EXTEND(SDNode *N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000236 SDOperand visitANY_EXTEND(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000237 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
238 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000239 SDOperand visitBIT_CONVERT(SDNode *N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000240 SDOperand visitFADD(SDNode *N);
241 SDOperand visitFSUB(SDNode *N);
242 SDOperand visitFMUL(SDNode *N);
243 SDOperand visitFDIV(SDNode *N);
244 SDOperand visitFREM(SDNode *N);
Chris Lattner12d83032006-03-05 05:30:57 +0000245 SDOperand visitFCOPYSIGN(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000246 SDOperand visitSINT_TO_FP(SDNode *N);
247 SDOperand visitUINT_TO_FP(SDNode *N);
248 SDOperand visitFP_TO_SINT(SDNode *N);
249 SDOperand visitFP_TO_UINT(SDNode *N);
250 SDOperand visitFP_ROUND(SDNode *N);
251 SDOperand visitFP_ROUND_INREG(SDNode *N);
252 SDOperand visitFP_EXTEND(SDNode *N);
253 SDOperand visitFNEG(SDNode *N);
254 SDOperand visitFABS(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000255 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000256 SDOperand visitBR_CC(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000257 SDOperand visitLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000258 SDOperand visitSTORE(SDNode *N);
Chris Lattnerca242442006-03-19 01:27:56 +0000259 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
Evan Cheng513da432007-10-06 08:19:55 +0000260 SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000261 SDOperand visitBUILD_VECTOR(SDNode *N);
262 SDOperand visitCONCAT_VECTORS(SDNode *N);
Chris Lattner66445d32006-03-28 22:11:53 +0000263 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000264
Evan Cheng44f1f092006-04-20 08:56:16 +0000265 SDOperand XformToShuffleWithZero(SDNode *N);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000266 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
267
Chris Lattnere70da202007-12-06 07:33:36 +0000268 SDOperand visitShiftByConstant(SDNode *N, unsigned Amt);
269
Chris Lattner40c62d52005-10-18 06:04:22 +0000270 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Chris Lattner35e5c142006-05-05 05:51:50 +0000271 SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000272 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
273 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
Chris Lattner1eba01e2007-04-11 06:50:51 +0000274 SDOperand N3, ISD::CondCode CC,
275 bool NotExtCompare = false);
Nate Begeman452d7be2005-09-16 00:54:12 +0000276 SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000277 ISD::CondCode Cond, bool foldBooleans = true);
Dan Gohman389079b2007-10-08 17:57:15 +0000278 bool SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, unsigned HiOp);
Dan Gohman7f321562007-06-25 16:23:39 +0000279 SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT::ValueType);
Nate Begeman69575232005-10-20 02:15:44 +0000280 SDOperand BuildSDIV(SDNode *N);
Chris Lattner516b9622006-09-14 20:50:57 +0000281 SDOperand BuildUDIV(SDNode *N);
282 SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
Evan Chengc88138f2007-03-22 01:54:19 +0000283 SDOperand ReduceLoadWidth(SDNode *N);
Jim Laskey279f0532006-09-25 16:29:54 +0000284
Chris Lattner2b4c2792007-10-13 06:35:54 +0000285 SDOperand GetDemandedBits(SDOperand V, uint64_t Mask);
286
Jim Laskey6ff23e52006-10-04 16:53:27 +0000287 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
288 /// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +0000289 void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000290 SmallVector<SDOperand, 8> &Aliases);
291
Jim Laskey096c22e2006-10-18 12:29:57 +0000292 /// isAlias - Return true if there is any possibility that the two addresses
293 /// overlap.
294 bool isAlias(SDOperand Ptr1, int64_t Size1,
295 const Value *SrcValue1, int SrcValueOffset1,
296 SDOperand Ptr2, int64_t Size2,
Jeff Cohend41b30d2006-11-05 19:31:28 +0000297 const Value *SrcValue2, int SrcValueOffset2);
Jim Laskey096c22e2006-10-18 12:29:57 +0000298
Jim Laskey7ca56af2006-10-11 13:47:09 +0000299 /// FindAliasInfo - Extracts the relevant alias information from the memory
300 /// node. Returns true if the operand was a load.
301 bool FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +0000302 SDOperand &Ptr, int64_t &Size,
303 const Value *&SrcValue, int &SrcValueOffset);
Jim Laskey7ca56af2006-10-11 13:47:09 +0000304
Jim Laskey279f0532006-09-25 16:29:54 +0000305 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000306 /// looking for a better chain (aliasing node.)
Jim Laskey279f0532006-09-25 16:29:54 +0000307 SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
308
Nate Begeman1d4d4142005-09-01 00:19:25 +0000309public:
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000310 DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
311 : DAG(D),
312 TLI(D.getTargetLoweringInfo()),
313 AfterLegalize(false),
314 AA(A) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000315
316 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000317 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000318 };
319}
320
Chris Lattner24664722006-03-01 04:53:38 +0000321//===----------------------------------------------------------------------===//
322// TargetLowering::DAGCombinerInfo implementation
323//===----------------------------------------------------------------------===//
324
325void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
326 ((DAGCombiner*)DC)->AddToWorkList(N);
327}
328
329SDOperand TargetLowering::DAGCombinerInfo::
330CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
Chris Lattner3577e382006-08-11 17:56:38 +0000331 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
Chris Lattner24664722006-03-01 04:53:38 +0000332}
333
334SDOperand TargetLowering::DAGCombinerInfo::
335CombineTo(SDNode *N, SDOperand Res) {
336 return ((DAGCombiner*)DC)->CombineTo(N, Res);
337}
338
339
340SDOperand TargetLowering::DAGCombinerInfo::
341CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
342 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
343}
344
345
Chris Lattner24664722006-03-01 04:53:38 +0000346//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000347// Helper Functions
348//===----------------------------------------------------------------------===//
349
350/// isNegatibleForFree - Return 1 if we can compute the negated form of the
351/// specified expression for the same cost as the expression itself, or 2 if we
352/// can compute the negated form more cheaply than the expression itself.
Chris Lattner501fee72007-05-23 07:35:22 +0000353static char isNegatibleForFree(SDOperand Op, unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000354 // No compile time optimizations on this type.
355 if (Op.getValueType() == MVT::ppcf128)
356 return 0;
357
Chris Lattner29446522007-05-14 22:04:50 +0000358 // fneg is removable even if it has multiple uses.
359 if (Op.getOpcode() == ISD::FNEG) return 2;
360
361 // Don't allow anything with multiple uses.
362 if (!Op.hasOneUse()) return 0;
363
Chris Lattner3adf9512007-05-25 02:19:06 +0000364 // Don't recurse exponentially.
365 if (Depth > 6) return 0;
366
Chris Lattner29446522007-05-14 22:04:50 +0000367 switch (Op.getOpcode()) {
368 default: return false;
369 case ISD::ConstantFP:
370 return 1;
371 case ISD::FADD:
372 // FIXME: determine better conditions for this xform.
373 if (!UnsafeFPMath) return 0;
374
375 // -(A+B) -> -A - B
Chris Lattner501fee72007-05-23 07:35:22 +0000376 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000377 return V;
378 // -(A+B) -> -B - A
Chris Lattner501fee72007-05-23 07:35:22 +0000379 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000380 case ISD::FSUB:
381 // We can't turn -(A-B) into B-A when we honor signed zeros.
382 if (!UnsafeFPMath) return 0;
383
384 // -(A-B) -> B-A
385 return 1;
386
387 case ISD::FMUL:
388 case ISD::FDIV:
389 if (HonorSignDependentRoundingFPMath()) return 0;
390
391 // -(X*Y) -> (-X * Y) or (X*-Y)
Chris Lattner501fee72007-05-23 07:35:22 +0000392 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000393 return V;
394
Chris Lattner501fee72007-05-23 07:35:22 +0000395 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000396
397 case ISD::FP_EXTEND:
398 case ISD::FP_ROUND:
399 case ISD::FSIN:
Chris Lattner501fee72007-05-23 07:35:22 +0000400 return isNegatibleForFree(Op.getOperand(0), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000401 }
402}
403
404/// GetNegatedExpression - If isNegatibleForFree returns true, this function
405/// returns the newly negated expression.
Chris Lattner3adf9512007-05-25 02:19:06 +0000406static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
407 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000408 // fneg is removable even if it has multiple uses.
409 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
410
411 // Don't allow anything with multiple uses.
412 assert(Op.hasOneUse() && "Unknown reuse!");
413
Chris Lattner3adf9512007-05-25 02:19:06 +0000414 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000415 switch (Op.getOpcode()) {
416 default: assert(0 && "Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000417 case ISD::ConstantFP: {
418 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
419 V.changeSign();
420 return DAG.getConstantFP(V, Op.getValueType());
421 }
Chris Lattner29446522007-05-14 22:04:50 +0000422 case ISD::FADD:
423 // FIXME: determine better conditions for this xform.
424 assert(UnsafeFPMath);
425
426 // -(A+B) -> -A - B
Chris Lattner3adf9512007-05-25 02:19:06 +0000427 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000428 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000429 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000430 Op.getOperand(1));
431 // -(A+B) -> -B - A
432 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000433 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000434 Op.getOperand(0));
435 case ISD::FSUB:
436 // We can't turn -(A-B) into B-A when we honor signed zeros.
437 assert(UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000438
439 // -(0-B) -> B
440 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000441 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000442 return Op.getOperand(1);
Chris Lattner29446522007-05-14 22:04:50 +0000443
444 // -(A-B) -> B-A
445 return DAG.getNode(ISD::FSUB, Op.getValueType(), Op.getOperand(1),
446 Op.getOperand(0));
447
448 case ISD::FMUL:
449 case ISD::FDIV:
450 assert(!HonorSignDependentRoundingFPMath());
451
452 // -(X*Y) -> -X * Y
Chris Lattner3adf9512007-05-25 02:19:06 +0000453 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000454 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000455 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000456 Op.getOperand(1));
457
458 // -(X*Y) -> X * -Y
459 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
460 Op.getOperand(0),
Chris Lattner3adf9512007-05-25 02:19:06 +0000461 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000462
463 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000464 case ISD::FSIN:
465 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000466 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000467 case ISD::FP_ROUND:
468 return DAG.getNode(ISD::FP_ROUND, Op.getValueType(),
469 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
470 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000471 }
472}
Chris Lattner24664722006-03-01 04:53:38 +0000473
474
Nate Begeman4ebd8052005-09-01 23:24:04 +0000475// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
476// that selects between the values 1 and 0, making it equivalent to a setcc.
Nate Begeman646d7e22005-09-02 21:18:40 +0000477// Also, set the incoming LHS, RHS, and CC references to the appropriate
478// nodes based on the type of node we are checking. This simplifies life a
479// bit for the callers.
480static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
481 SDOperand &CC) {
482 if (N.getOpcode() == ISD::SETCC) {
483 LHS = N.getOperand(0);
484 RHS = N.getOperand(1);
485 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000486 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000487 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000488 if (N.getOpcode() == ISD::SELECT_CC &&
489 N.getOperand(2).getOpcode() == ISD::Constant &&
490 N.getOperand(3).getOpcode() == ISD::Constant &&
491 cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000492 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
493 LHS = N.getOperand(0);
494 RHS = N.getOperand(1);
495 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000496 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000497 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000498 return false;
499}
500
Nate Begeman99801192005-09-07 23:25:52 +0000501// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
502// one use. If this is true, it allows the users to invert the operation for
503// free when it is profitable to do so.
504static bool isOneUseSetCC(SDOperand N) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000505 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000506 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000507 return true;
508 return false;
509}
510
Nate Begemancd4d58c2006-02-03 06:46:56 +0000511SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
512 MVT::ValueType VT = N0.getValueType();
513 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
514 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
515 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
516 if (isa<ConstantSDNode>(N1)) {
517 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000518 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000519 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(0));
520 } else if (N0.hasOneUse()) {
521 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000522 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000523 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
524 }
525 }
526 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
527 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
528 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
529 if (isa<ConstantSDNode>(N0)) {
530 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000531 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000532 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(0));
533 } else if (N1.hasOneUse()) {
534 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000535 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000536 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
537 }
538 }
539 return SDOperand();
540}
541
Chris Lattner29446522007-05-14 22:04:50 +0000542//===----------------------------------------------------------------------===//
543// Main DAG Combiner implementation
544//===----------------------------------------------------------------------===//
545
Nate Begeman4ebd8052005-09-01 23:24:04 +0000546void DAGCombiner::Run(bool RunningAfterLegalize) {
547 // set the instance variable, so that the various visit routines may use it.
548 AfterLegalize = RunningAfterLegalize;
549
Nate Begeman646d7e22005-09-02 21:18:40 +0000550 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000551 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
552 E = DAG.allnodes_end(); I != E; ++I)
553 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000554
Chris Lattner95038592005-10-05 06:35:28 +0000555 // Create a dummy node (which is not added to allnodes), that adds a reference
556 // to the root node, preventing it from being deleted, and tracking any
557 // changes of the root.
558 HandleSDNode Dummy(DAG.getRoot());
559
Jim Laskey26f7fa72006-10-17 19:33:52 +0000560 // The root of the dag may dangle to deleted nodes until the dag combiner is
561 // done. Set it to null to avoid confusion.
562 DAG.setRoot(SDOperand());
Chris Lattner24664722006-03-01 04:53:38 +0000563
Nate Begeman1d4d4142005-09-01 00:19:25 +0000564 // while the worklist isn't empty, inspect the node on the end of it and
565 // try and combine it.
566 while (!WorkList.empty()) {
567 SDNode *N = WorkList.back();
568 WorkList.pop_back();
569
570 // If N has no uses, it is dead. Make sure to revisit all N's operands once
Chris Lattner95038592005-10-05 06:35:28 +0000571 // N is deleted from the DAG, since they too may now be dead or may have a
572 // reduced number of uses, allowing other xforms.
573 if (N->use_empty() && N != &Dummy) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000574 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jim Laskey6ff23e52006-10-04 16:53:27 +0000575 AddToWorkList(N->getOperand(i).Val);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000576
Chris Lattner95038592005-10-05 06:35:28 +0000577 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000578 continue;
579 }
580
Dan Gohman389079b2007-10-08 17:57:15 +0000581 SDOperand RV = combine(N);
Chris Lattner24664722006-03-01 04:53:38 +0000582
Nate Begeman83e75ec2005-09-06 04:43:02 +0000583 if (RV.Val) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000584 ++NodesCombined;
Nate Begeman646d7e22005-09-02 21:18:40 +0000585 // If we get back the same node we passed in, rather than a new node or
586 // zero, we know that the node must have defined multiple values and
587 // CombineTo was used. Since CombineTo takes care of the worklist
588 // mechanics for us, we have no work to do in this case.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000589 if (RV.Val != N) {
Chris Lattner729c6d12006-05-27 00:43:02 +0000590 assert(N->getOpcode() != ISD::DELETED_NODE &&
591 RV.Val->getOpcode() != ISD::DELETED_NODE &&
592 "Node was deleted but visit returned new node!");
593
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000594 DOUT << "\nReplacing.3 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000595 DOUT << "\nWith: "; DEBUG(RV.Val->dump(&DAG));
596 DOUT << '\n';
Chris Lattner01a22022005-10-10 22:04:48 +0000597 std::vector<SDNode*> NowDead;
Evan Cheng2adffa12006-09-21 19:04:05 +0000598 if (N->getNumValues() == RV.Val->getNumValues())
599 DAG.ReplaceAllUsesWith(N, RV.Val, &NowDead);
600 else {
601 assert(N->getValueType(0) == RV.getValueType() && "Type mismatch");
602 SDOperand OpV = RV;
603 DAG.ReplaceAllUsesWith(N, &OpV, &NowDead);
604 }
Nate Begeman646d7e22005-09-02 21:18:40 +0000605
606 // Push the new node and any users onto the worklist
Jim Laskey6ff23e52006-10-04 16:53:27 +0000607 AddToWorkList(RV.Val);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000608 AddUsersToWorkList(RV.Val);
Chris Lattner20e3d862008-01-24 07:18:21 +0000609
Chris Lattner23e202d2008-01-24 17:10:01 +0000610 // Add any uses of the old node to the worklist in case this node is the
611 // last one that uses them. They may become dead after this node is
612 // deleted.
Chris Lattner20e3d862008-01-24 07:18:21 +0000613 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
614 AddToWorkList(N->getOperand(i).Val);
Nate Begeman646d7e22005-09-02 21:18:40 +0000615
Jim Laskey6ff23e52006-10-04 16:53:27 +0000616 // Nodes can be reintroduced into the worklist. Make sure we do not
617 // process a node that has been replaced.
Nate Begeman646d7e22005-09-02 21:18:40 +0000618 removeFromWorkList(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000619 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
620 removeFromWorkList(NowDead[i]);
Chris Lattner5c46f742005-10-05 06:11:08 +0000621
622 // Finally, since the node is now dead, remove it from the graph.
623 DAG.DeleteNode(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000624 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000625 }
626 }
Chris Lattner95038592005-10-05 06:35:28 +0000627
628 // If the root changed (e.g. it was a dead load, update the root).
629 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000630}
631
Nate Begeman83e75ec2005-09-06 04:43:02 +0000632SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000633 switch(N->getOpcode()) {
634 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000635 case ISD::TokenFactor: return visitTokenFactor(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000636 case ISD::ADD: return visitADD(N);
637 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +0000638 case ISD::ADDC: return visitADDC(N);
639 case ISD::ADDE: return visitADDE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000640 case ISD::MUL: return visitMUL(N);
641 case ISD::SDIV: return visitSDIV(N);
642 case ISD::UDIV: return visitUDIV(N);
643 case ISD::SREM: return visitSREM(N);
644 case ISD::UREM: return visitUREM(N);
645 case ISD::MULHU: return visitMULHU(N);
646 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +0000647 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
648 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
649 case ISD::SDIVREM: return visitSDIVREM(N);
650 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000651 case ISD::AND: return visitAND(N);
652 case ISD::OR: return visitOR(N);
653 case ISD::XOR: return visitXOR(N);
654 case ISD::SHL: return visitSHL(N);
655 case ISD::SRA: return visitSRA(N);
656 case ISD::SRL: return visitSRL(N);
657 case ISD::CTLZ: return visitCTLZ(N);
658 case ISD::CTTZ: return visitCTTZ(N);
659 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000660 case ISD::SELECT: return visitSELECT(N);
661 case ISD::SELECT_CC: return visitSELECT_CC(N);
662 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000663 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
664 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000665 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000666 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
667 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000668 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000669 case ISD::FADD: return visitFADD(N);
670 case ISD::FSUB: return visitFSUB(N);
671 case ISD::FMUL: return visitFMUL(N);
672 case ISD::FDIV: return visitFDIV(N);
673 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +0000674 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000675 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
676 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
677 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
678 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
679 case ISD::FP_ROUND: return visitFP_ROUND(N);
680 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
681 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
682 case ISD::FNEG: return visitFNEG(N);
683 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000684 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000685 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000686 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000687 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +0000688 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +0000689 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +0000690 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
691 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Chris Lattner66445d32006-03-28 22:11:53 +0000692 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000693 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000694 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000695}
696
Dan Gohman389079b2007-10-08 17:57:15 +0000697SDOperand DAGCombiner::combine(SDNode *N) {
698
699 SDOperand RV = visit(N);
700
701 // If nothing happened, try a target-specific DAG combine.
702 if (RV.Val == 0) {
703 assert(N->getOpcode() != ISD::DELETED_NODE &&
704 "Node was deleted but visit returned NULL!");
705
706 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
707 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
708
709 // Expose the DAG combiner to the target combiner impls.
710 TargetLowering::DAGCombinerInfo
711 DagCombineInfo(DAG, !AfterLegalize, false, this);
712
713 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
714 }
715 }
716
717 return RV;
718}
719
Chris Lattner6270f682006-10-08 22:57:01 +0000720/// getInputChainForNode - Given a node, return its input chain if it has one,
721/// otherwise return a null sd operand.
722static SDOperand getInputChainForNode(SDNode *N) {
723 if (unsigned NumOps = N->getNumOperands()) {
724 if (N->getOperand(0).getValueType() == MVT::Other)
725 return N->getOperand(0);
726 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
727 return N->getOperand(NumOps-1);
728 for (unsigned i = 1; i < NumOps-1; ++i)
729 if (N->getOperand(i).getValueType() == MVT::Other)
730 return N->getOperand(i);
731 }
732 return SDOperand(0, 0);
733}
734
Nate Begeman83e75ec2005-09-06 04:43:02 +0000735SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +0000736 // If N has two operands, where one has an input chain equal to the other,
737 // the 'other' chain is redundant.
738 if (N->getNumOperands() == 2) {
739 if (getInputChainForNode(N->getOperand(0).Val) == N->getOperand(1))
740 return N->getOperand(0);
741 if (getInputChainForNode(N->getOperand(1).Val) == N->getOperand(0))
742 return N->getOperand(1);
743 }
744
Chris Lattnerc76d4412007-05-16 06:37:59 +0000745 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
746 SmallVector<SDOperand, 8> Ops; // Ops for replacing token factor.
747 SmallPtrSet<SDNode*, 16> SeenOps;
748 bool Changed = false; // If we should replace this token factor.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000749
750 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +0000751 TFs.push_back(N);
Jim Laskey279f0532006-09-25 16:29:54 +0000752
Jim Laskey71382342006-10-07 23:37:56 +0000753 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +0000754 // encountered.
755 for (unsigned i = 0; i < TFs.size(); ++i) {
756 SDNode *TF = TFs[i];
757
Jim Laskey6ff23e52006-10-04 16:53:27 +0000758 // Check each of the operands.
759 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
760 SDOperand Op = TF->getOperand(i);
Jim Laskey279f0532006-09-25 16:29:54 +0000761
Jim Laskey6ff23e52006-10-04 16:53:27 +0000762 switch (Op.getOpcode()) {
763 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +0000764 // Entry tokens don't need to be added to the list. They are
765 // rededundant.
766 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000767 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000768
Jim Laskey6ff23e52006-10-04 16:53:27 +0000769 case ISD::TokenFactor:
Jim Laskeybc588b82006-10-05 15:07:25 +0000770 if ((CombinerAA || Op.hasOneUse()) &&
771 std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000772 // Queue up for processing.
773 TFs.push_back(Op.Val);
774 // Clean up in case the token factor is removed.
775 AddToWorkList(Op.Val);
776 Changed = true;
777 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000778 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000779 // Fall thru
780
781 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +0000782 // Only add if it isn't already in the list.
783 if (SeenOps.insert(Op.Val))
Jim Laskeybc588b82006-10-05 15:07:25 +0000784 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +0000785 else
786 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000787 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000788 }
789 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000790 }
791
792 SDOperand Result;
793
794 // If we've change things around then replace token factor.
795 if (Changed) {
796 if (Ops.size() == 0) {
797 // The entry token is the only possible outcome.
798 Result = DAG.getEntryNode();
799 } else {
800 // New and improved token factor.
801 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +0000802 }
Jim Laskey274062c2006-10-13 23:32:28 +0000803
804 // Don't add users to work list.
805 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +0000806 }
Jim Laskey279f0532006-09-25 16:29:54 +0000807
Jim Laskey6ff23e52006-10-04 16:53:27 +0000808 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000809}
810
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000811static
812SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
813 MVT::ValueType VT = N0.getValueType();
814 SDOperand N00 = N0.getOperand(0);
815 SDOperand N01 = N0.getOperand(1);
816 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
817 if (N01C && N00.getOpcode() == ISD::ADD && N00.Val->hasOneUse() &&
818 isa<ConstantSDNode>(N00.getOperand(1))) {
819 N0 = DAG.getNode(ISD::ADD, VT,
820 DAG.getNode(ISD::SHL, VT, N00.getOperand(0), N01),
821 DAG.getNode(ISD::SHL, VT, N00.getOperand(1), N01));
822 return DAG.getNode(ISD::ADD, VT, N0, N1);
823 }
824 return SDOperand();
825}
826
Evan Chengb13cdbd2007-06-21 07:39:16 +0000827static
828SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
829 SelectionDAG &DAG) {
830 MVT::ValueType VT = N->getValueType(0);
831 unsigned Opc = N->getOpcode();
832 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
833 SDOperand LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
834 SDOperand RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
835 ISD::CondCode CC = ISD::SETCC_INVALID;
836 if (isSlctCC)
837 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
838 else {
839 SDOperand CCOp = Slct.getOperand(0);
840 if (CCOp.getOpcode() == ISD::SETCC)
841 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
842 }
843
844 bool DoXform = false;
845 bool InvCC = false;
846 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
847 "Bad input!");
848 if (LHS.getOpcode() == ISD::Constant &&
849 cast<ConstantSDNode>(LHS)->isNullValue())
850 DoXform = true;
851 else if (CC != ISD::SETCC_INVALID &&
852 RHS.getOpcode() == ISD::Constant &&
853 cast<ConstantSDNode>(RHS)->isNullValue()) {
854 std::swap(LHS, RHS);
Chris Lattner4626b252008-01-17 07:20:38 +0000855 SDOperand Op0 = Slct.getOperand(0);
856 bool isInt = MVT::isInteger(isSlctCC ? Op0.getValueType()
857 : Op0.getOperand(0).getValueType());
Evan Chengb13cdbd2007-06-21 07:39:16 +0000858 CC = ISD::getSetCCInverse(CC, isInt);
859 DoXform = true;
860 InvCC = true;
861 }
862
863 if (DoXform) {
864 SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
865 if (isSlctCC)
866 return DAG.getSelectCC(OtherOp, Result,
867 Slct.getOperand(0), Slct.getOperand(1), CC);
868 SDOperand CCOp = Slct.getOperand(0);
869 if (InvCC)
870 CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
871 CCOp.getOperand(1), CC);
872 return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
873 }
874 return SDOperand();
875}
876
Nate Begeman83e75ec2005-09-06 04:43:02 +0000877SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000878 SDOperand N0 = N->getOperand(0);
879 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000880 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
881 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000882 MVT::ValueType VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000883
884 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +0000885 if (MVT::isVector(VT)) {
886 SDOperand FoldedVOp = SimplifyVBinOp(N);
887 if (FoldedVOp.Val) return FoldedVOp;
888 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000889
Dan Gohman613e0d82007-07-03 14:03:57 +0000890 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +0000891 if (N0.getOpcode() == ISD::UNDEF)
892 return N0;
893 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +0000894 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000895 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000896 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000897 return DAG.getNode(ISD::ADD, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000898 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000899 if (N0C && !N1C)
900 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000901 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000902 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000903 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000904 // fold ((c1-A)+c2) -> (c1+c2)-A
905 if (N1C && N0.getOpcode() == ISD::SUB)
906 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
907 return DAG.getNode(ISD::SUB, VT,
908 DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
909 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000910 // reassociate add
911 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
912 if (RADD.Val != 0)
913 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000914 // fold ((0-A) + B) -> B-A
915 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
916 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000917 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000918 // fold (A + (0-B)) -> A-B
919 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
920 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000921 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000922 // fold (A+(B-A)) -> B
923 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000924 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +0000925
Evan Cheng860771d2006-03-01 01:09:54 +0000926 if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +0000927 return SDOperand(N, 0);
Chris Lattner947c2892006-03-13 06:51:27 +0000928
929 // fold (a+b) -> (a|b) iff a and b share no bits.
930 if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
931 uint64_t LHSZero, LHSOne;
932 uint64_t RHSZero, RHSOne;
933 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000934 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000935 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000936 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000937
938 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
939 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
940 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
941 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
942 return DAG.getNode(ISD::OR, VT, N0, N1);
943 }
944 }
Evan Cheng3ef554d2006-11-06 08:14:30 +0000945
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000946 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
947 if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
948 SDOperand Result = combineShlAddConstant(N0, N1, DAG);
949 if (Result.Val) return Result;
950 }
951 if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
952 SDOperand Result = combineShlAddConstant(N1, N0, DAG);
953 if (Result.Val) return Result;
954 }
955
Evan Chengb13cdbd2007-06-21 07:39:16 +0000956 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
957 if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
958 SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
959 if (Result.Val) return Result;
960 }
961 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
962 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
963 if (Result.Val) return Result;
964 }
965
Nate Begeman83e75ec2005-09-06 04:43:02 +0000966 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000967}
968
Chris Lattner91153682007-03-04 20:03:15 +0000969SDOperand DAGCombiner::visitADDC(SDNode *N) {
970 SDOperand N0 = N->getOperand(0);
971 SDOperand N1 = N->getOperand(1);
972 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
973 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
974 MVT::ValueType VT = N0.getValueType();
975
976 // If the flag result is dead, turn this into an ADD.
977 if (N->hasNUsesOfValue(0, 1))
978 return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
Chris Lattnerb6541762007-03-04 20:40:38 +0000979 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
Chris Lattner91153682007-03-04 20:03:15 +0000980
981 // canonicalize constant to RHS.
Chris Lattnerbcf24842007-03-04 20:08:45 +0000982 if (N0C && !N1C) {
983 SDOperand Ops[] = { N1, N0 };
984 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
985 }
Chris Lattner91153682007-03-04 20:03:15 +0000986
Chris Lattnerb6541762007-03-04 20:40:38 +0000987 // fold (addc x, 0) -> x + no carry out
988 if (N1C && N1C->isNullValue())
989 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
990
991 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
992 uint64_t LHSZero, LHSOne;
993 uint64_t RHSZero, RHSOne;
994 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000995 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000996 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000997 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000998
999 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1000 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1001 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1002 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1003 return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
1004 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1005 }
Chris Lattner91153682007-03-04 20:03:15 +00001006
1007 return SDOperand();
1008}
1009
1010SDOperand DAGCombiner::visitADDE(SDNode *N) {
1011 SDOperand N0 = N->getOperand(0);
1012 SDOperand N1 = N->getOperand(1);
Chris Lattnerb6541762007-03-04 20:40:38 +00001013 SDOperand CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001014 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1015 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Chris Lattnerbcf24842007-03-04 20:08:45 +00001016 //MVT::ValueType VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +00001017
1018 // canonicalize constant to RHS
Chris Lattnerbcf24842007-03-04 20:08:45 +00001019 if (N0C && !N1C) {
Chris Lattnerb6541762007-03-04 20:40:38 +00001020 SDOperand Ops[] = { N1, N0, CarryIn };
Chris Lattnerbcf24842007-03-04 20:08:45 +00001021 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1022 }
Chris Lattner91153682007-03-04 20:03:15 +00001023
Chris Lattnerb6541762007-03-04 20:40:38 +00001024 // fold (adde x, y, false) -> (addc x, y)
1025 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1026 SDOperand Ops[] = { N1, N0 };
1027 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1028 }
Chris Lattner91153682007-03-04 20:03:15 +00001029
1030 return SDOperand();
1031}
1032
1033
1034
Nate Begeman83e75ec2005-09-06 04:43:02 +00001035SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001036 SDOperand N0 = N->getOperand(0);
1037 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001038 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1039 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001040 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001041
Dan Gohman7f321562007-06-25 16:23:39 +00001042 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001043 if (MVT::isVector(VT)) {
1044 SDOperand FoldedVOp = SimplifyVBinOp(N);
1045 if (FoldedVOp.Val) return FoldedVOp;
1046 }
Dan Gohman7f321562007-06-25 16:23:39 +00001047
Chris Lattner854077d2005-10-17 01:07:11 +00001048 // fold (sub x, x) -> 0
1049 if (N0 == N1)
1050 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001051 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001052 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001053 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +00001054 // fold (sub x, c) -> (add x, -c)
1055 if (N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001056 return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001057 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001058 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001059 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001060 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001061 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001062 return N0.getOperand(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +00001063 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1064 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1065 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1066 if (Result.Val) return Result;
1067 }
Dan Gohman613e0d82007-07-03 14:03:57 +00001068 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001069 if (N0.getOpcode() == ISD::UNDEF)
1070 return N0;
1071 if (N1.getOpcode() == ISD::UNDEF)
1072 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001073
Nate Begeman83e75ec2005-09-06 04:43:02 +00001074 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001075}
1076
Nate Begeman83e75ec2005-09-06 04:43:02 +00001077SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001078 SDOperand N0 = N->getOperand(0);
1079 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001080 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1081 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +00001082 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001083
Dan Gohman7f321562007-06-25 16:23:39 +00001084 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001085 if (MVT::isVector(VT)) {
1086 SDOperand FoldedVOp = SimplifyVBinOp(N);
1087 if (FoldedVOp.Val) return FoldedVOp;
1088 }
Dan Gohman7f321562007-06-25 16:23:39 +00001089
Dan Gohman613e0d82007-07-03 14:03:57 +00001090 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001091 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001092 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001093 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001094 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001095 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001096 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001097 if (N0C && !N1C)
1098 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001099 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001100 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001101 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001102 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001103 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001104 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001105 // fold (mul x, (1 << c)) -> x << c
Nate Begeman646d7e22005-09-02 21:18:40 +00001106 if (N1C && isPowerOf2_64(N1C->getValue()))
Chris Lattner3e6099b2005-10-30 06:41:49 +00001107 return DAG.getNode(ISD::SHL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001108 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001109 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001110 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1111 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1112 // FIXME: If the input is something that is easily negated (e.g. a
1113 // single-use add), we should put the negate there.
1114 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1115 DAG.getNode(ISD::SHL, VT, N0,
1116 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1117 TLI.getShiftAmountTy())));
1118 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +00001119
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001120 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1121 if (N1C && N0.getOpcode() == ISD::SHL &&
1122 isa<ConstantSDNode>(N0.getOperand(1))) {
1123 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
Chris Lattner5750df92006-03-01 04:03:14 +00001124 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001125 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1126 }
1127
1128 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1129 // use.
1130 {
1131 SDOperand Sh(0,0), Y(0,0);
1132 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1133 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1134 N0.Val->hasOneUse()) {
1135 Sh = N0; Y = N1;
1136 } else if (N1.getOpcode() == ISD::SHL &&
1137 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1138 Sh = N1; Y = N0;
1139 }
1140 if (Sh.Val) {
1141 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1142 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1143 }
1144 }
Chris Lattnera1deca32006-03-04 23:33:26 +00001145 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1146 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1147 isa<ConstantSDNode>(N0.getOperand(1))) {
1148 return DAG.getNode(ISD::ADD, VT,
1149 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1150 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1151 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001152
Nate Begemancd4d58c2006-02-03 06:46:56 +00001153 // reassociate mul
1154 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1155 if (RMUL.Val != 0)
1156 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001157
Nate Begeman83e75ec2005-09-06 04:43:02 +00001158 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001159}
1160
Nate Begeman83e75ec2005-09-06 04:43:02 +00001161SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001162 SDOperand N0 = N->getOperand(0);
1163 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001164 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1165 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001166 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001167
Dan Gohman7f321562007-06-25 16:23:39 +00001168 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001169 if (MVT::isVector(VT)) {
1170 SDOperand FoldedVOp = SimplifyVBinOp(N);
1171 if (FoldedVOp.Val) return FoldedVOp;
1172 }
Dan Gohman7f321562007-06-25 16:23:39 +00001173
Nate Begeman1d4d4142005-09-01 00:19:25 +00001174 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001175 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001176 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001177 // fold (sdiv X, 1) -> X
1178 if (N1C && N1C->getSignExtended() == 1LL)
1179 return N0;
1180 // fold (sdiv X, -1) -> 0-X
1181 if (N1C && N1C->isAllOnesValue())
1182 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001183 // If we know the sign bits of both operands are zero, strength reduce to a
1184 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
1185 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001186 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1187 DAG.MaskedValueIsZero(N0, SignBit))
Chris Lattner094c8fc2005-10-07 06:10:46 +00001188 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001189 // fold (sdiv X, pow2) -> simple ops after legalize
Nate Begemanfb7217b2006-02-17 19:54:08 +00001190 if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +00001191 (isPowerOf2_64(N1C->getSignExtended()) ||
1192 isPowerOf2_64(-N1C->getSignExtended()))) {
1193 // If dividing by powers of two is cheap, then don't perform the following
1194 // fold.
1195 if (TLI.isPow2DivCheap())
1196 return SDOperand();
1197 int64_t pow2 = N1C->getSignExtended();
1198 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
Chris Lattner8f4880b2006-02-16 08:02:36 +00001199 unsigned lg2 = Log2_64(abs2);
1200 // Splat the sign bit into the register
1201 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001202 DAG.getConstant(MVT::getSizeInBits(VT)-1,
1203 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00001204 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +00001205 // Add (N0 < 0) ? abs2 - 1 : 0;
1206 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
1207 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001208 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +00001209 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +00001210 AddToWorkList(SRL.Val);
1211 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +00001212 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1213 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +00001214 // If we're dividing by a positive value, we're done. Otherwise, we must
1215 // negate the result.
1216 if (pow2 > 0)
1217 return SRA;
Chris Lattner5750df92006-03-01 04:03:14 +00001218 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001219 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1220 }
Nate Begeman69575232005-10-20 02:15:44 +00001221 // if integer divide is expensive and we satisfy the requirements, emit an
1222 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +00001223 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +00001224 !TLI.isIntDivCheap()) {
1225 SDOperand Op = BuildSDIV(N);
1226 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001227 }
Dan Gohman7f321562007-06-25 16:23:39 +00001228
Dan Gohman613e0d82007-07-03 14:03:57 +00001229 // undef / X -> 0
1230 if (N0.getOpcode() == ISD::UNDEF)
1231 return DAG.getConstant(0, VT);
1232 // X / undef -> undef
1233 if (N1.getOpcode() == ISD::UNDEF)
1234 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001235
Nate Begeman83e75ec2005-09-06 04:43:02 +00001236 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001237}
1238
Nate Begeman83e75ec2005-09-06 04:43:02 +00001239SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001240 SDOperand N0 = N->getOperand(0);
1241 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001242 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1243 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001244 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001245
Dan Gohman7f321562007-06-25 16:23:39 +00001246 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001247 if (MVT::isVector(VT)) {
1248 SDOperand FoldedVOp = SimplifyVBinOp(N);
1249 if (FoldedVOp.Val) return FoldedVOp;
1250 }
Dan Gohman7f321562007-06-25 16:23:39 +00001251
Nate Begeman1d4d4142005-09-01 00:19:25 +00001252 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001253 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001254 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001255 // fold (udiv x, (1 << c)) -> x >>u c
Nate Begeman646d7e22005-09-02 21:18:40 +00001256 if (N1C && isPowerOf2_64(N1C->getValue()))
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001257 return DAG.getNode(ISD::SRL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001258 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001259 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001260 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1261 if (N1.getOpcode() == ISD::SHL) {
1262 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1263 if (isPowerOf2_64(SHC->getValue())) {
1264 MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +00001265 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
1266 DAG.getConstant(Log2_64(SHC->getValue()),
1267 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +00001268 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001269 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001270 }
1271 }
1272 }
Nate Begeman69575232005-10-20 02:15:44 +00001273 // fold (udiv x, c) -> alternate
Chris Lattnere9936d12005-10-22 18:50:15 +00001274 if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
1275 SDOperand Op = BuildUDIV(N);
1276 if (Op.Val) return Op;
1277 }
Dan Gohman7f321562007-06-25 16:23:39 +00001278
Dan Gohman613e0d82007-07-03 14:03:57 +00001279 // undef / X -> 0
1280 if (N0.getOpcode() == ISD::UNDEF)
1281 return DAG.getConstant(0, VT);
1282 // X / undef -> undef
1283 if (N1.getOpcode() == ISD::UNDEF)
1284 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001285
Nate Begeman83e75ec2005-09-06 04:43:02 +00001286 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001287}
1288
Nate Begeman83e75ec2005-09-06 04:43:02 +00001289SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001290 SDOperand N0 = N->getOperand(0);
1291 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001292 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1293 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001294 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001295
1296 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001297 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001298 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001299 // If we know the sign bits of both operands are zero, strength reduce to a
1300 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
1301 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001302 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1303 DAG.MaskedValueIsZero(N0, SignBit))
Nate Begemana148d982006-01-18 22:35:16 +00001304 return DAG.getNode(ISD::UREM, VT, N0, N1);
Chris Lattner26d29902006-10-12 20:58:32 +00001305
Dan Gohman77003042007-11-26 23:46:11 +00001306 // If X/C can be simplified by the division-by-constant logic, lower
1307 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001308 if (N1C && !N1C->isNullValue()) {
1309 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001310 SDOperand OptimizedDiv = combine(Div.Val);
1311 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1312 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1313 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1314 AddToWorkList(Mul.Val);
1315 return Sub;
1316 }
Chris Lattner26d29902006-10-12 20:58:32 +00001317 }
1318
Dan Gohman613e0d82007-07-03 14:03:57 +00001319 // undef % X -> 0
1320 if (N0.getOpcode() == ISD::UNDEF)
1321 return DAG.getConstant(0, VT);
1322 // X % undef -> undef
1323 if (N1.getOpcode() == ISD::UNDEF)
1324 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001325
Nate Begeman83e75ec2005-09-06 04:43:02 +00001326 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001327}
1328
Nate Begeman83e75ec2005-09-06 04:43:02 +00001329SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001330 SDOperand N0 = N->getOperand(0);
1331 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001332 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1333 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001334 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001335
1336 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001337 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001338 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001339 // fold (urem x, pow2) -> (and x, pow2-1)
1340 if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
Nate Begemana148d982006-01-18 22:35:16 +00001341 return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00001342 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1343 if (N1.getOpcode() == ISD::SHL) {
1344 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1345 if (isPowerOf2_64(SHC->getValue())) {
Nate Begemanbab92392006-02-05 08:07:24 +00001346 SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001347 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001348 return DAG.getNode(ISD::AND, VT, N0, Add);
1349 }
1350 }
1351 }
Chris Lattner26d29902006-10-12 20:58:32 +00001352
Dan Gohman77003042007-11-26 23:46:11 +00001353 // If X/C can be simplified by the division-by-constant logic, lower
1354 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001355 if (N1C && !N1C->isNullValue()) {
1356 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001357 SDOperand OptimizedDiv = combine(Div.Val);
1358 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1359 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1360 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1361 AddToWorkList(Mul.Val);
1362 return Sub;
1363 }
Chris Lattner26d29902006-10-12 20:58:32 +00001364 }
1365
Dan Gohman613e0d82007-07-03 14:03:57 +00001366 // undef % X -> 0
1367 if (N0.getOpcode() == ISD::UNDEF)
1368 return DAG.getConstant(0, VT);
1369 // X % undef -> undef
1370 if (N1.getOpcode() == ISD::UNDEF)
1371 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001372
Nate Begeman83e75ec2005-09-06 04:43:02 +00001373 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001374}
1375
Nate Begeman83e75ec2005-09-06 04:43:02 +00001376SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001377 SDOperand N0 = N->getOperand(0);
1378 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001379 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001380 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001381
1382 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001383 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001384 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001385 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001386 if (N1C && N1C->getValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001387 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
1388 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001389 TLI.getShiftAmountTy()));
Dan Gohman613e0d82007-07-03 14:03:57 +00001390 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001391 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001392 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001393
Nate Begeman83e75ec2005-09-06 04:43:02 +00001394 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001395}
1396
Nate Begeman83e75ec2005-09-06 04:43:02 +00001397SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001398 SDOperand N0 = N->getOperand(0);
1399 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001400 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001401 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001402
1403 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001404 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001405 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001406 // fold (mulhu x, 1) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001407 if (N1C && N1C->getValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001408 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00001409 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001410 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001411 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001412
Nate Begeman83e75ec2005-09-06 04:43:02 +00001413 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001414}
1415
Dan Gohman389079b2007-10-08 17:57:15 +00001416/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1417/// compute two values. LoOp and HiOp give the opcodes for the two computations
1418/// that are being performed. Return true if a simplification was made.
1419///
1420bool DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N,
1421 unsigned LoOp, unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00001422 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00001423 bool HiExists = N->hasAnyUseOfValue(1);
1424 if (!HiExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001425 (!AfterLegalize ||
1426 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
1427 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0),
1428 DAG.getNode(LoOp, N->getValueType(0),
1429 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001430 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001431 return true;
1432 }
1433
1434 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00001435 bool LoExists = N->hasAnyUseOfValue(0);
1436 if (!LoExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001437 (!AfterLegalize ||
1438 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
1439 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
1440 DAG.getNode(HiOp, N->getValueType(1),
1441 N->op_begin(),
Chris Lattner01d029b2007-10-15 06:10:22 +00001442 N->getNumOperands()));
Dan Gohman389079b2007-10-08 17:57:15 +00001443 return true;
1444 }
1445
Evan Cheng44711942007-11-08 09:25:29 +00001446 // If both halves are used, return as it is.
1447 if (LoExists && HiExists)
1448 return false;
1449
1450 // If the two computed results can be simplified separately, separate them.
1451 bool RetVal = false;
1452 if (LoExists) {
1453 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1454 N->op_begin(), N->getNumOperands());
1455 SDOperand LoOpt = combine(Lo.Val);
1456 if (LoOpt.Val && LoOpt != Lo &&
1457 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())) {
1458 RetVal = true;
1459 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), LoOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001460 } else
1461 DAG.DeleteNode(Lo.Val);
Dan Gohman389079b2007-10-08 17:57:15 +00001462 }
1463
Evan Cheng44711942007-11-08 09:25:29 +00001464 if (HiExists) {
1465 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1466 N->op_begin(), N->getNumOperands());
1467 SDOperand HiOpt = combine(Hi.Val);
1468 if (HiOpt.Val && HiOpt != Hi &&
1469 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())) {
1470 RetVal = true;
1471 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), HiOpt);
Evan Cheng02132d62007-12-19 01:34:38 +00001472 } else
1473 DAG.DeleteNode(Hi.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001474 }
1475
1476 return RetVal;
Dan Gohman389079b2007-10-08 17:57:15 +00001477}
1478
1479SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
1480
1481 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS))
1482 return SDOperand();
1483
1484 return SDOperand();
1485}
1486
1487SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
1488
1489 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU))
1490 return SDOperand();
1491
1492 return SDOperand();
1493}
1494
1495SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
1496
1497 if (SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM))
1498 return SDOperand();
1499
1500 return SDOperand();
1501}
1502
1503SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
1504
1505 if (SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM))
1506 return SDOperand();
1507
1508 return SDOperand();
1509}
1510
Chris Lattner35e5c142006-05-05 05:51:50 +00001511/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1512/// two operands of the same opcode, try to simplify it.
1513SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1514 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
1515 MVT::ValueType VT = N0.getValueType();
1516 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1517
Chris Lattner540121f2006-05-05 06:31:05 +00001518 // For each of OP in AND/OR/XOR:
1519 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1520 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1521 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Chris Lattner0d8dae72006-05-05 06:32:04 +00001522 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
Chris Lattner540121f2006-05-05 06:31:05 +00001523 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
Chris Lattner0d8dae72006-05-05 06:32:04 +00001524 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001525 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1526 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1527 N0.getOperand(0).getValueType(),
1528 N0.getOperand(0), N1.getOperand(0));
1529 AddToWorkList(ORNode.Val);
Chris Lattner540121f2006-05-05 06:31:05 +00001530 return DAG.getNode(N0.getOpcode(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00001531 }
1532
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001533 // For each of OP in SHL/SRL/SRA/AND...
1534 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1535 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1536 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00001537 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001538 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001539 N0.getOperand(1) == N1.getOperand(1)) {
1540 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1541 N0.getOperand(0).getValueType(),
1542 N0.getOperand(0), N1.getOperand(0));
1543 AddToWorkList(ORNode.Val);
1544 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1545 }
1546
1547 return SDOperand();
1548}
1549
Nate Begeman83e75ec2005-09-06 04:43:02 +00001550SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001551 SDOperand N0 = N->getOperand(0);
1552 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001553 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001554 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1555 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001556 MVT::ValueType VT = N1.getValueType();
1557
Dan Gohman7f321562007-06-25 16:23:39 +00001558 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001559 if (MVT::isVector(VT)) {
1560 SDOperand FoldedVOp = SimplifyVBinOp(N);
1561 if (FoldedVOp.Val) return FoldedVOp;
1562 }
Dan Gohman7f321562007-06-25 16:23:39 +00001563
Dan Gohman613e0d82007-07-03 14:03:57 +00001564 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001565 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001566 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001567 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001568 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001569 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001570 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001571 if (N0C && !N1C)
1572 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001573 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001574 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001575 return N0;
1576 // if (and x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001577 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001578 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001579 // reassociate and
1580 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1581 if (RAND.Val != 0)
1582 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001583 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001584 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001585 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Nate Begeman646d7e22005-09-02 21:18:40 +00001586 if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001587 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001588 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1589 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001590 unsigned InMask = MVT::getIntVTBitMask(N0.getOperand(0).getValueType());
Dan Gohmanea859be2007-06-22 14:59:07 +00001591 if (DAG.MaskedValueIsZero(N0.getOperand(0),
Chris Lattner1ec05d12006-03-01 21:47:21 +00001592 ~N1C->getValue() & InMask)) {
1593 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
1594 N0.getOperand(0));
1595
1596 // Replace uses of the AND with uses of the Zero extend node.
1597 CombineTo(N, Zext);
1598
Chris Lattner3603cd62006-02-02 07:17:31 +00001599 // We actually want to replace all uses of the any_extend with the
1600 // zero_extend, to avoid duplicating things. This will later cause this
1601 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001602 CombineTo(N0.Val, Zext);
Chris Lattnerfedced72006-04-20 23:55:59 +00001603 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00001604 }
1605 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001606 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1607 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1608 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1609 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1610
1611 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1612 MVT::isInteger(LL.getValueType())) {
1613 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
1614 if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
1615 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001616 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001617 return DAG.getSetCC(VT, ORNode, LR, Op1);
1618 }
1619 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1620 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1621 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001622 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001623 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1624 }
1625 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1626 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1627 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001628 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001629 return DAG.getSetCC(VT, ORNode, LR, Op1);
1630 }
1631 }
1632 // canonicalize equivalent to ll == rl
1633 if (LL == RR && LR == RL) {
1634 Op1 = ISD::getSetCCSwappedOperands(Op1);
1635 std::swap(RL, RR);
1636 }
1637 if (LL == RL && LR == RR) {
1638 bool isInteger = MVT::isInteger(LL.getValueType());
1639 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1640 if (Result != ISD::SETCC_INVALID)
1641 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1642 }
1643 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001644
1645 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1646 if (N0.getOpcode() == N1.getOpcode()) {
1647 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1648 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001649 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001650
Nate Begemande996292006-02-03 22:24:05 +00001651 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1652 // fold (and (sra)) -> (and (srl)) when possible.
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001653 if (!MVT::isVector(VT) &&
1654 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001655 return SDOperand(N, 0);
Nate Begemanded49632005-10-13 03:11:28 +00001656 // fold (zext_inreg (extload x)) -> (zextload x)
Evan Cheng83060c52007-03-07 08:07:03 +00001657 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
Evan Cheng466685d2006-10-09 20:57:25 +00001658 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001659 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001660 // If we zero all the possible extended bits, then we can turn this into
1661 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001662 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001663 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001664 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1665 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001666 LN0->getSrcValueOffset(), EVT,
1667 LN0->isVolatile(),
1668 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001669 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001670 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001671 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001672 }
1673 }
1674 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00001675 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1676 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001677 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001678 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001679 // If we zero all the possible extended bits, then we can turn this into
1680 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001681 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001682 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001683 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1684 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001685 LN0->getSrcValueOffset(), EVT,
1686 LN0->isVolatile(),
1687 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001688 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001689 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001690 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001691 }
1692 }
Chris Lattner15045b62006-02-28 06:35:35 +00001693
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001694 // fold (and (load x), 255) -> (zextload x, i8)
1695 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng466685d2006-10-09 20:57:25 +00001696 if (N1C && N0.getOpcode() == ISD::LOAD) {
1697 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1698 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerddf89562008-01-17 19:59:44 +00001699 LN0->isUnindexed() && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001700 MVT::ValueType EVT, LoadedVT;
1701 if (N1C->getValue() == 255)
1702 EVT = MVT::i8;
1703 else if (N1C->getValue() == 65535)
1704 EVT = MVT::i16;
1705 else if (N1C->getValue() == ~0U)
1706 EVT = MVT::i32;
1707 else
1708 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001709
Evan Cheng2e49f092006-10-11 07:10:22 +00001710 LoadedVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001711 if (EVT != MVT::Other && LoadedVT > EVT &&
1712 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1713 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1714 // For big endian targets, we need to add an offset to the pointer to
1715 // load the correct bytes. For little endian systems, we merely need to
1716 // read fewer bytes from the same pointer.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00001717 unsigned LVTStoreBytes = MVT::getStoreSizeInBits(LoadedVT)/8;
1718 unsigned EVTStoreBytes = MVT::getStoreSizeInBits(EVT)/8;
1719 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Duncan Sandsdc846502007-10-28 12:59:45 +00001720 unsigned Alignment = LN0->getAlignment();
Evan Cheng466685d2006-10-09 20:57:25 +00001721 SDOperand NewPtr = LN0->getBasePtr();
Duncan Sandsdc846502007-10-28 12:59:45 +00001722 if (!TLI.isLittleEndian()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001723 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1724 DAG.getConstant(PtrOff, PtrType));
Duncan Sandsdc846502007-10-28 12:59:45 +00001725 Alignment = MinAlign(Alignment, PtrOff);
1726 }
Evan Cheng466685d2006-10-09 20:57:25 +00001727 AddToWorkList(NewPtr.Val);
1728 SDOperand Load =
1729 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001730 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00001731 LN0->isVolatile(), Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00001732 AddToWorkList(N);
1733 CombineTo(N0.Val, Load, Load.getValue(1));
1734 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1735 }
Chris Lattner15045b62006-02-28 06:35:35 +00001736 }
1737 }
1738
Nate Begeman83e75ec2005-09-06 04:43:02 +00001739 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001740}
1741
Nate Begeman83e75ec2005-09-06 04:43:02 +00001742SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001743 SDOperand N0 = N->getOperand(0);
1744 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001745 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001746 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1747 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001748 MVT::ValueType VT = N1.getValueType();
1749 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001750
Dan Gohman7f321562007-06-25 16:23:39 +00001751 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001752 if (MVT::isVector(VT)) {
1753 SDOperand FoldedVOp = SimplifyVBinOp(N);
1754 if (FoldedVOp.Val) return FoldedVOp;
1755 }
Dan Gohman7f321562007-06-25 16:23:39 +00001756
Dan Gohman613e0d82007-07-03 14:03:57 +00001757 // fold (or x, undef) -> -1
Dan Gohmand595b5f2007-07-10 14:20:37 +00001758 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Chris Lattnere094f542007-07-09 16:16:34 +00001759 return DAG.getConstant(~0ULL, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001760 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001761 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001762 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001763 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001764 if (N0C && !N1C)
1765 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001766 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001767 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001768 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001769 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001770 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001771 return N1;
1772 // fold (or x, c) -> c iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001773 if (N1C &&
Dan Gohmanea859be2007-06-22 14:59:07 +00001774 DAG.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001775 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001776 // reassociate or
1777 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1778 if (ROR.Val != 0)
1779 return ROR;
1780 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1781 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001782 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001783 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1784 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1785 N1),
1786 DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001787 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001788 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1789 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1790 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1791 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1792
1793 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1794 MVT::isInteger(LL.getValueType())) {
1795 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1796 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
1797 if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1798 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1799 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001800 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001801 return DAG.getSetCC(VT, ORNode, LR, Op1);
1802 }
1803 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1804 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1805 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1806 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1807 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001808 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001809 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1810 }
1811 }
1812 // canonicalize equivalent to ll == rl
1813 if (LL == RR && LR == RL) {
1814 Op1 = ISD::getSetCCSwappedOperands(Op1);
1815 std::swap(RL, RR);
1816 }
1817 if (LL == RL && LR == RR) {
1818 bool isInteger = MVT::isInteger(LL.getValueType());
1819 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1820 if (Result != ISD::SETCC_INVALID)
1821 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1822 }
1823 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001824
1825 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1826 if (N0.getOpcode() == N1.getOpcode()) {
1827 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1828 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001829 }
Chris Lattner516b9622006-09-14 20:50:57 +00001830
Chris Lattner1ec72732006-09-14 21:11:37 +00001831 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1832 if (N0.getOpcode() == ISD::AND &&
1833 N1.getOpcode() == ISD::AND &&
1834 N0.getOperand(1).getOpcode() == ISD::Constant &&
1835 N1.getOperand(1).getOpcode() == ISD::Constant &&
1836 // Don't increase # computations.
1837 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1838 // We can only do this xform if we know that bits from X that are set in C2
1839 // but not in C1 are already zero. Likewise for Y.
1840 uint64_t LHSMask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1841 uint64_t RHSMask = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1842
Dan Gohmanea859be2007-06-22 14:59:07 +00001843 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1844 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Chris Lattner1ec72732006-09-14 21:11:37 +00001845 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1846 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1847 }
1848 }
1849
1850
Chris Lattner516b9622006-09-14 20:50:57 +00001851 // See if this is some rotate idiom.
1852 if (SDNode *Rot = MatchRotate(N0, N1))
1853 return SDOperand(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00001854
Nate Begeman83e75ec2005-09-06 04:43:02 +00001855 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001856}
1857
Chris Lattner516b9622006-09-14 20:50:57 +00001858
1859/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1860static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1861 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00001862 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001863 Mask = Op.getOperand(1);
1864 Op = Op.getOperand(0);
1865 } else {
1866 return false;
1867 }
1868 }
1869
1870 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1871 Shift = Op;
1872 return true;
1873 }
1874 return false;
1875}
1876
1877
1878// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1879// idioms for rotate, and if the target supports rotation instructions, generate
1880// a rot[lr].
1881SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1882 // Must be a legal type. Expanded an promoted things won't work with rotates.
1883 MVT::ValueType VT = LHS.getValueType();
1884 if (!TLI.isTypeLegal(VT)) return 0;
1885
1886 // The target must have at least one rotate flavor.
1887 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1888 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1889 if (!HasROTL && !HasROTR) return 0;
1890
1891 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1892 SDOperand LHSShift; // The shift.
1893 SDOperand LHSMask; // AND value if any.
1894 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1895 return 0; // Not part of a rotate.
1896
1897 SDOperand RHSShift; // The shift.
1898 SDOperand RHSMask; // AND value if any.
1899 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1900 return 0; // Not part of a rotate.
1901
1902 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1903 return 0; // Not shifting the same value.
1904
1905 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1906 return 0; // Shifts must disagree.
1907
1908 // Canonicalize shl to left side in a shl/srl pair.
1909 if (RHSShift.getOpcode() == ISD::SHL) {
1910 std::swap(LHS, RHS);
1911 std::swap(LHSShift, RHSShift);
1912 std::swap(LHSMask , RHSMask );
1913 }
1914
1915 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Scott Michelc9dc1142007-04-02 21:36:32 +00001916 SDOperand LHSShiftArg = LHSShift.getOperand(0);
1917 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1918 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00001919
1920 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1921 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00001922 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
1923 RHSShiftAmt.getOpcode() == ISD::Constant) {
1924 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
1925 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
Chris Lattner516b9622006-09-14 20:50:57 +00001926 if ((LShVal + RShVal) != OpSizeInBits)
1927 return 0;
1928
1929 SDOperand Rot;
1930 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001931 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001932 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001933 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001934
1935 // If there is an AND of either shifted operand, apply it to the result.
1936 if (LHSMask.Val || RHSMask.Val) {
1937 uint64_t Mask = MVT::getIntVTBitMask(VT);
1938
1939 if (LHSMask.Val) {
1940 uint64_t RHSBits = (1ULL << LShVal)-1;
1941 Mask &= cast<ConstantSDNode>(LHSMask)->getValue() | RHSBits;
1942 }
1943 if (RHSMask.Val) {
1944 uint64_t LHSBits = ~((1ULL << (OpSizeInBits-RShVal))-1);
1945 Mask &= cast<ConstantSDNode>(RHSMask)->getValue() | LHSBits;
1946 }
1947
1948 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
1949 }
1950
1951 return Rot.Val;
1952 }
1953
1954 // If there is a mask here, and we have a variable shift, we can't be sure
1955 // that we're masking out the right stuff.
1956 if (LHSMask.Val || RHSMask.Val)
1957 return 0;
1958
1959 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1960 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001961 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
1962 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001963 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001964 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001965 if (SUBC->getValue() == OpSizeInBits)
1966 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001967 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001968 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001969 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001970 }
1971 }
1972
1973 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1974 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001975 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
1976 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001977 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001978 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001979 if (SUBC->getValue() == OpSizeInBits)
1980 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001981 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001982 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001983 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1984 }
1985 }
1986
1987 // Look for sign/zext/any-extended cases:
1988 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1989 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1990 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
1991 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1992 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1993 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
1994 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
1995 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
1996 if (RExtOp0.getOpcode() == ISD::SUB &&
1997 RExtOp0.getOperand(1) == LExtOp0) {
1998 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1999 // (rotr x, y)
2000 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2001 // (rotl x, (sub 32, y))
2002 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
2003 if (SUBC->getValue() == OpSizeInBits) {
2004 if (HasROTL)
2005 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2006 else
2007 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2008 }
2009 }
2010 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2011 RExtOp0 == LExtOp0.getOperand(1)) {
2012 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2013 // (rotl x, y)
2014 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2015 // (rotr x, (sub 32, y))
2016 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
2017 if (SUBC->getValue() == OpSizeInBits) {
2018 if (HasROTL)
2019 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2020 else
2021 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2022 }
2023 }
Chris Lattner516b9622006-09-14 20:50:57 +00002024 }
2025 }
2026
2027 return 0;
2028}
2029
2030
Nate Begeman83e75ec2005-09-06 04:43:02 +00002031SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002032 SDOperand N0 = N->getOperand(0);
2033 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002034 SDOperand LHS, RHS, CC;
2035 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2036 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002037 MVT::ValueType VT = N0.getValueType();
2038
Dan Gohman7f321562007-06-25 16:23:39 +00002039 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00002040 if (MVT::isVector(VT)) {
2041 SDOperand FoldedVOp = SimplifyVBinOp(N);
2042 if (FoldedVOp.Val) return FoldedVOp;
2043 }
Dan Gohman7f321562007-06-25 16:23:39 +00002044
Dan Gohman613e0d82007-07-03 14:03:57 +00002045 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00002046 if (N0.getOpcode() == ISD::UNDEF)
2047 return N0;
2048 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002049 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002050 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002051 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002052 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00002053 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002054 if (N0C && !N1C)
2055 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002056 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002057 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002058 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00002059 // reassociate xor
2060 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2061 if (RXOR.Val != 0)
2062 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002063 // fold !(x cc y) -> (x !cc y)
Nate Begeman646d7e22005-09-02 21:18:40 +00002064 if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
2065 bool isInt = MVT::isInteger(LHS.getValueType());
2066 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2067 isInt);
2068 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002069 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002070 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002071 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002072 assert(0 && "Unhandled SetCC Equivalent!");
2073 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002074 }
Chris Lattner61c5ff42007-09-10 21:39:07 +00002075 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
2076 if (N1C && N1C->getValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
2077 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2078 SDOperand V = N0.getOperand(0);
2079 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00002080 DAG.getConstant(1, V.getValueType()));
Chris Lattner61c5ff42007-09-10 21:39:07 +00002081 AddToWorkList(V.Val);
2082 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2083 }
2084
Nate Begeman99801192005-09-07 23:25:52 +00002085 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Chris Lattner734c91d2006-11-10 21:37:15 +00002086 if (N1C && N1C->getValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00002087 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002088 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002089 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2090 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002091 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2092 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002093 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002094 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002095 }
2096 }
Nate Begeman99801192005-09-07 23:25:52 +00002097 // fold !(x or y) -> (!x and !y) iff x or y are constants
2098 if (N1C && N1C->isAllOnesValue() &&
2099 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002100 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002101 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2102 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002103 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2104 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002105 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002106 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002107 }
2108 }
Nate Begeman223df222005-09-08 20:18:10 +00002109 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2110 if (N1C && N0.getOpcode() == ISD::XOR) {
2111 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2112 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2113 if (N00C)
2114 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
2115 DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
2116 if (N01C)
2117 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
2118 DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
2119 }
2120 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00002121 if (N0 == N1) {
2122 if (!MVT::isVector(VT)) {
2123 return DAG.getConstant(0, VT);
2124 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2125 // Produce a vector of zeros.
Dan Gohman51eaa862007-06-14 22:58:02 +00002126 SDOperand El = DAG.getConstant(0, MVT::getVectorElementType(VT));
Chris Lattner4fbdd592006-03-28 19:11:05 +00002127 std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002128 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4fbdd592006-03-28 19:11:05 +00002129 }
2130 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002131
2132 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2133 if (N0.getOpcode() == N1.getOpcode()) {
2134 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2135 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002136 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002137
Chris Lattner3e104b12006-04-08 04:15:24 +00002138 // Simplify the expression using non-local knowledge.
2139 if (!MVT::isVector(VT) &&
2140 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002141 return SDOperand(N, 0);
Chris Lattner3e104b12006-04-08 04:15:24 +00002142
Nate Begeman83e75ec2005-09-06 04:43:02 +00002143 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002144}
2145
Chris Lattnere70da202007-12-06 07:33:36 +00002146/// visitShiftByConstant - Handle transforms common to the three shifts, when
2147/// the shift amount is a constant.
2148SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2149 SDNode *LHS = N->getOperand(0).Val;
2150 if (!LHS->hasOneUse()) return SDOperand();
2151
2152 // We want to pull some binops through shifts, so that we have (and (shift))
2153 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
2154 // thing happens with address calculations, so it's important to canonicalize
2155 // it.
2156 bool HighBitSet = false; // Can we transform this if the high bit is set?
2157
2158 switch (LHS->getOpcode()) {
2159 default: return SDOperand();
2160 case ISD::OR:
2161 case ISD::XOR:
2162 HighBitSet = false; // We can only transform sra if the high bit is clear.
2163 break;
2164 case ISD::AND:
2165 HighBitSet = true; // We can only transform sra if the high bit is set.
2166 break;
2167 case ISD::ADD:
2168 if (N->getOpcode() != ISD::SHL)
2169 return SDOperand(); // only shl(add) not sr[al](add).
2170 HighBitSet = false; // We can only transform sra if the high bit is clear.
2171 break;
2172 }
2173
2174 // We require the RHS of the binop to be a constant as well.
2175 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2176 if (!BinOpCst) return SDOperand();
2177
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00002178
2179 // FIXME: disable this for unless the input to the binop is a shift by a
2180 // constant. If it is not a shift, it pessimizes some common cases like:
2181 //
2182 //void foo(int *X, int i) { X[i & 1235] = 1; }
2183 //int bar(int *X, int i) { return X[i & 255]; }
2184 SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2185 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
2186 BinOpLHSVal->getOpcode() != ISD::SRA &&
2187 BinOpLHSVal->getOpcode() != ISD::SRL) ||
2188 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2189 return SDOperand();
2190
Chris Lattnere70da202007-12-06 07:33:36 +00002191 MVT::ValueType VT = N->getValueType(0);
2192
2193 // If this is a signed shift right, and the high bit is modified
2194 // by the logical operation, do not perform the transformation.
2195 // The highBitSet boolean indicates the value of the high bit of
2196 // the constant which would cause it to be modified for this
2197 // operation.
2198 if (N->getOpcode() == ISD::SRA) {
2199 uint64_t BinOpRHSSign = BinOpCst->getValue() >> MVT::getSizeInBits(VT)-1;
2200 if ((bool)BinOpRHSSign != HighBitSet)
2201 return SDOperand();
2202 }
2203
2204 // Fold the constants, shifting the binop RHS by the shift amount.
2205 SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2206 LHS->getOperand(1), N->getOperand(1));
2207
2208 // Create the new shift.
2209 SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2210 N->getOperand(1));
2211
2212 // Create the new binop.
2213 return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2214}
2215
2216
Nate Begeman83e75ec2005-09-06 04:43:02 +00002217SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002218 SDOperand N0 = N->getOperand(0);
2219 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002220 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2221 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002222 MVT::ValueType VT = N0.getValueType();
2223 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2224
2225 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002226 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002227 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002228 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002229 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002230 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002231 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002232 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002233 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002234 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002235 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002236 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002237 // if (shl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002238 if (DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002239 return DAG.getConstant(0, VT);
Chris Lattner61a4c072007-04-18 03:06:49 +00002240 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002241 return SDOperand(N, 0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002242 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002243 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002244 N0.getOperand(1).getOpcode() == ISD::Constant) {
2245 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002246 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002247 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002248 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002249 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002250 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002251 }
2252 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2253 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002254 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002255 N0.getOperand(1).getOpcode() == ISD::Constant) {
2256 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002257 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002258 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2259 DAG.getConstant(~0ULL << c1, VT));
2260 if (c2 > c1)
2261 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00002262 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002263 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00002264 return DAG.getNode(ISD::SRL, VT, Mask,
2265 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002266 }
2267 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002268 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00002269 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002270 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattnere70da202007-12-06 07:33:36 +00002271
2272 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002273}
2274
Nate Begeman83e75ec2005-09-06 04:43:02 +00002275SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002276 SDOperand N0 = N->getOperand(0);
2277 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002278 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2279 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002280 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002281
2282 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002283 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002284 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002285 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002286 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002287 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002288 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002289 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002290 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002291 // fold (sra x, c >= size(x)) -> undef
Nate Begemanfb7217b2006-02-17 19:54:08 +00002292 if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002293 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002294 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002295 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002296 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002297 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2298 // sext_inreg.
2299 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
2300 unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
2301 MVT::ValueType EVT;
2302 switch (LowBits) {
2303 default: EVT = MVT::Other; break;
2304 case 1: EVT = MVT::i1; break;
2305 case 8: EVT = MVT::i8; break;
2306 case 16: EVT = MVT::i16; break;
2307 case 32: EVT = MVT::i32; break;
2308 }
2309 if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
2310 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2311 DAG.getValueType(EVT));
2312 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002313
2314 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2315 if (N1C && N0.getOpcode() == ISD::SRA) {
2316 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2317 unsigned Sum = N1C->getValue() + C1->getValue();
2318 if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
2319 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2320 DAG.getConstant(Sum, N1C->getValueType(0)));
2321 }
2322 }
2323
Chris Lattnera8504462006-05-08 20:51:54 +00002324 // Simplify, based on bits shifted out of the LHS.
2325 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2326 return SDOperand(N, 0);
2327
2328
Nate Begeman1d4d4142005-09-01 00:19:25 +00002329 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohmanea859be2007-06-22 14:59:07 +00002330 if (DAG.MaskedValueIsZero(N0, MVT::getIntVTSignBit(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002331 return DAG.getNode(ISD::SRL, VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00002332
2333 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002334}
2335
Nate Begeman83e75ec2005-09-06 04:43:02 +00002336SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002337 SDOperand N0 = N->getOperand(0);
2338 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002339 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2340 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002341 MVT::ValueType VT = N0.getValueType();
2342 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2343
2344 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002345 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002346 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002347 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002348 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002349 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002350 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002351 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002352 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002353 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002354 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002355 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002356 // if (srl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002357 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002358 return DAG.getConstant(0, VT);
Chris Lattnerec06e9a2007-04-18 03:05:22 +00002359
Nate Begeman1d4d4142005-09-01 00:19:25 +00002360 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002361 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002362 N0.getOperand(1).getOpcode() == ISD::Constant) {
2363 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002364 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002365 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002366 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002367 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002368 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002369 }
Chris Lattner350bec02006-04-02 06:11:11 +00002370
Chris Lattner06afe072006-05-05 22:53:17 +00002371 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2372 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2373 // Shifting in all undef bits?
2374 MVT::ValueType SmallVT = N0.getOperand(0).getValueType();
2375 if (N1C->getValue() >= MVT::getSizeInBits(SmallVT))
2376 return DAG.getNode(ISD::UNDEF, VT);
2377
2378 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2379 AddToWorkList(SmallShift.Val);
2380 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2381 }
2382
Chris Lattner3657ffe2006-10-12 20:23:19 +00002383 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2384 // bit, which is unmodified by sra.
2385 if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
2386 if (N0.getOpcode() == ISD::SRA)
2387 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2388 }
2389
Chris Lattner350bec02006-04-02 06:11:11 +00002390 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2391 if (N1C && N0.getOpcode() == ISD::CTLZ &&
2392 N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
2393 uint64_t KnownZero, KnownOne, Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002394 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Chris Lattner350bec02006-04-02 06:11:11 +00002395
2396 // If any of the input bits are KnownOne, then the input couldn't be all
2397 // zeros, thus the result of the srl will always be zero.
2398 if (KnownOne) return DAG.getConstant(0, VT);
2399
2400 // If all of the bits input the to ctlz node are known to be zero, then
2401 // the result of the ctlz is "32" and the result of the shift is one.
2402 uint64_t UnknownBits = ~KnownZero & Mask;
2403 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2404
2405 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2406 if ((UnknownBits & (UnknownBits-1)) == 0) {
2407 // Okay, we know that only that the single bit specified by UnknownBits
2408 // could be set on input to the CTLZ node. If this bit is set, the SRL
2409 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2410 // to an SRL,XOR pair, which is likely to simplify more.
2411 unsigned ShAmt = CountTrailingZeros_64(UnknownBits);
2412 SDOperand Op = N0.getOperand(0);
2413 if (ShAmt) {
2414 Op = DAG.getNode(ISD::SRL, VT, Op,
2415 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2416 AddToWorkList(Op.Val);
2417 }
2418 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2419 }
2420 }
Chris Lattner61a4c072007-04-18 03:06:49 +00002421
2422 // fold operands of srl based on knowledge that the low bits are not
2423 // demanded.
2424 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2425 return SDOperand(N, 0);
2426
Chris Lattnere70da202007-12-06 07:33:36 +00002427 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002428}
2429
Nate Begeman83e75ec2005-09-06 04:43:02 +00002430SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002431 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002432 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002433
2434 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002435 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002436 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002437 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002438}
2439
Nate Begeman83e75ec2005-09-06 04:43:02 +00002440SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002441 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002442 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002443
2444 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002445 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002446 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002447 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002448}
2449
Nate Begeman83e75ec2005-09-06 04:43:02 +00002450SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002451 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002452 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002453
2454 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002455 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002456 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002457 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002458}
2459
Nate Begeman452d7be2005-09-16 00:54:12 +00002460SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2461 SDOperand N0 = N->getOperand(0);
2462 SDOperand N1 = N->getOperand(1);
2463 SDOperand N2 = N->getOperand(2);
2464 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2465 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2466 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2467 MVT::ValueType VT = N->getValueType(0);
Evan Cheng571c4782007-08-18 05:57:05 +00002468 MVT::ValueType VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00002469
Nate Begeman452d7be2005-09-16 00:54:12 +00002470 // fold select C, X, X -> X
2471 if (N1 == N2)
2472 return N1;
2473 // fold select true, X, Y -> X
2474 if (N0C && !N0C->isNullValue())
2475 return N1;
2476 // fold select false, X, Y -> Y
2477 if (N0C && N0C->isNullValue())
2478 return N2;
2479 // fold select C, 1, X -> C | X
Nate Begeman44728a72005-09-19 22:34:01 +00002480 if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
Nate Begeman452d7be2005-09-16 00:54:12 +00002481 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Cheng571c4782007-08-18 05:57:05 +00002482 // fold select C, 0, 1 -> ~C
2483 if (MVT::isInteger(VT) && MVT::isInteger(VT0) &&
2484 N1C && N2C && N1C->isNullValue() && N2C->getValue() == 1) {
2485 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2486 if (VT == VT0)
2487 return XORNode;
2488 AddToWorkList(XORNode.Val);
2489 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(VT0))
2490 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2491 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2492 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002493 // fold select C, 0, X -> ~C & X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002494 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
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::AND, VT, XORNode, N2);
2498 }
2499 // fold select C, X, 1 -> ~C | X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002500 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getValue() == 1) {
2501 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002502 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002503 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2504 }
2505 // fold select C, X, 0 -> C & X
2506 // FIXME: this should check for C type == X type, not i1?
2507 if (MVT::i1 == VT && N2C && N2C->isNullValue())
2508 return DAG.getNode(ISD::AND, VT, N0, N1);
2509 // fold X ? X : Y --> X ? 1 : Y --> X | Y
2510 if (MVT::i1 == VT && N0 == N1)
2511 return DAG.getNode(ISD::OR, VT, N0, N2);
2512 // fold X ? Y : X --> X ? Y : 0 --> X & Y
2513 if (MVT::i1 == VT && N0 == N2)
2514 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner729c6d12006-05-27 00:43:02 +00002515
Chris Lattner40c62d52005-10-18 06:04:22 +00002516 // If we can fold this based on the true/false value, do so.
2517 if (SimplifySelectOps(N, N1, N2))
Chris Lattner729c6d12006-05-27 00:43:02 +00002518 return SDOperand(N, 0); // Don't revisit N.
2519
Nate Begeman44728a72005-09-19 22:34:01 +00002520 // fold selects based on a setcc into other things, such as min/max/abs
2521 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman750ac1b2006-02-01 07:19:44 +00002522 // FIXME:
2523 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2524 // having to say they don't support SELECT_CC on every type the DAG knows
2525 // about, since there is no way to mark an opcode illegal at all value types
2526 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2527 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2528 N1, N2, N0.getOperand(2));
2529 else
2530 return SimplifySelect(N0, N1, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00002531 return SDOperand();
2532}
2533
2534SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00002535 SDOperand N0 = N->getOperand(0);
2536 SDOperand N1 = N->getOperand(1);
2537 SDOperand N2 = N->getOperand(2);
2538 SDOperand N3 = N->getOperand(3);
2539 SDOperand N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00002540 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2541
Nate Begeman44728a72005-09-19 22:34:01 +00002542 // fold select_cc lhs, rhs, x, x, cc -> x
2543 if (N2 == N3)
2544 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00002545
Chris Lattner5f42a242006-09-20 06:19:26 +00002546 // Determine if the condition we're dealing with is constant
2547 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00002548 if (SCC.Val) AddToWorkList(SCC.Val);
Chris Lattner5f42a242006-09-20 06:19:26 +00002549
2550 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
2551 if (SCCC->getValue())
2552 return N2; // cond always true -> true val
2553 else
2554 return N3; // cond always false -> false val
2555 }
2556
2557 // Fold to a simpler select_cc
2558 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2559 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2560 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2561 SCC.getOperand(2));
2562
Chris Lattner40c62d52005-10-18 06:04:22 +00002563 // If we can fold this based on the true/false value, do so.
2564 if (SimplifySelectOps(N, N2, N3))
Chris Lattner729c6d12006-05-27 00:43:02 +00002565 return SDOperand(N, 0); // Don't revisit N.
Chris Lattner40c62d52005-10-18 06:04:22 +00002566
Nate Begeman44728a72005-09-19 22:34:01 +00002567 // fold select_cc into other things, such as min/max/abs
2568 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00002569}
2570
2571SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2572 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2573 cast<CondCodeSDNode>(N->getOperand(2))->get());
2574}
2575
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002576// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2577// "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2578// transformation. Returns true if extension are possible and the above
2579// mentioned transformation is profitable.
2580static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2581 unsigned ExtOpc,
2582 SmallVector<SDNode*, 4> &ExtendNodes,
2583 TargetLowering &TLI) {
2584 bool HasCopyToRegUses = false;
2585 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2586 for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2587 UI != UE; ++UI) {
2588 SDNode *User = *UI;
2589 if (User == N)
2590 continue;
2591 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2592 if (User->getOpcode() == ISD::SETCC) {
2593 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2594 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2595 // Sign bits will be lost after a zext.
2596 return false;
2597 bool Add = false;
2598 for (unsigned i = 0; i != 2; ++i) {
2599 SDOperand UseOp = User->getOperand(i);
2600 if (UseOp == N0)
2601 continue;
2602 if (!isa<ConstantSDNode>(UseOp))
2603 return false;
2604 Add = true;
2605 }
2606 if (Add)
2607 ExtendNodes.push_back(User);
2608 } else {
2609 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2610 SDOperand UseOp = User->getOperand(i);
2611 if (UseOp == N0) {
2612 // If truncate from extended type to original load type is free
2613 // on this target, then it's ok to extend a CopyToReg.
2614 if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2615 HasCopyToRegUses = true;
2616 else
2617 return false;
2618 }
2619 }
2620 }
2621 }
2622
2623 if (HasCopyToRegUses) {
2624 bool BothLiveOut = false;
2625 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2626 UI != UE; ++UI) {
2627 SDNode *User = *UI;
2628 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2629 SDOperand UseOp = User->getOperand(i);
2630 if (UseOp.Val == N && UseOp.ResNo == 0) {
2631 BothLiveOut = true;
2632 break;
2633 }
2634 }
2635 }
2636 if (BothLiveOut)
2637 // Both unextended and extended values are live out. There had better be
2638 // good a reason for the transformation.
2639 return ExtendNodes.size();
2640 }
2641 return true;
2642}
2643
Nate Begeman83e75ec2005-09-06 04:43:02 +00002644SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002645 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002646 MVT::ValueType VT = N->getValueType(0);
2647
Nate Begeman1d4d4142005-09-01 00:19:25 +00002648 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002649 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002650 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Chris Lattner310b5782006-05-06 23:06:26 +00002651
Nate Begeman1d4d4142005-09-01 00:19:25 +00002652 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002653 // fold (sext (aext x)) -> (sext x)
2654 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002655 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattner310b5782006-05-06 23:06:26 +00002656
Evan Chengc88138f2007-03-22 01:54:19 +00002657 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2658 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Chris Lattner22558872007-02-26 03:13:59 +00002659 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002660 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002661 if (NarrowLoad.Val) {
2662 if (NarrowLoad.Val != N0.Val)
2663 CombineTo(N0.Val, NarrowLoad);
2664 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2665 }
Evan Chengc88138f2007-03-22 01:54:19 +00002666 }
2667
2668 // See if the value being truncated is already sign extended. If so, just
2669 // eliminate the trunc/sext pair.
2670 if (N0.getOpcode() == ISD::TRUNCATE) {
Chris Lattner6007b842006-09-21 06:00:20 +00002671 SDOperand Op = N0.getOperand(0);
Chris Lattner22558872007-02-26 03:13:59 +00002672 unsigned OpBits = MVT::getSizeInBits(Op.getValueType());
2673 unsigned MidBits = MVT::getSizeInBits(N0.getValueType());
2674 unsigned DestBits = MVT::getSizeInBits(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002675 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Chris Lattner22558872007-02-26 03:13:59 +00002676
2677 if (OpBits == DestBits) {
2678 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2679 // bits, it is already ready.
2680 if (NumSignBits > DestBits-MidBits)
2681 return Op;
2682 } else if (OpBits < DestBits) {
2683 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2684 // bits, just sext from i32.
2685 if (NumSignBits > OpBits-MidBits)
2686 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2687 } else {
2688 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2689 // bits, just truncate to i32.
2690 if (NumSignBits > OpBits-MidBits)
2691 return DAG.getNode(ISD::TRUNCATE, VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00002692 }
Chris Lattner22558872007-02-26 03:13:59 +00002693
2694 // fold (sext (truncate x)) -> (sextinreg x).
2695 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2696 N0.getValueType())) {
2697 if (Op.getValueType() < VT)
2698 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2699 else if (Op.getValueType() > VT)
2700 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2701 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2702 DAG.getValueType(N0.getValueType()));
2703 }
Chris Lattner6007b842006-09-21 06:00:20 +00002704 }
Chris Lattner310b5782006-05-06 23:06:26 +00002705
Evan Cheng110dec22005-12-14 02:19:23 +00002706 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002707 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002708 (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002709 bool DoXform = true;
2710 SmallVector<SDNode*, 4> SetCCs;
2711 if (!N0.hasOneUse())
2712 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2713 if (DoXform) {
2714 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2715 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2716 LN0->getBasePtr(), LN0->getSrcValue(),
2717 LN0->getSrcValueOffset(),
2718 N0.getValueType(),
2719 LN0->isVolatile(),
2720 LN0->getAlignment());
2721 CombineTo(N, ExtLoad);
2722 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2723 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2724 // Extend SetCC uses if necessary.
2725 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2726 SDNode *SetCC = SetCCs[i];
2727 SmallVector<SDOperand, 4> Ops;
2728 for (unsigned j = 0; j != 2; ++j) {
2729 SDOperand SOp = SetCC->getOperand(j);
2730 if (SOp == Trunc)
2731 Ops.push_back(ExtLoad);
2732 else
2733 Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2734 }
2735 Ops.push_back(SetCC->getOperand(2));
2736 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2737 &Ops[0], Ops.size()));
2738 }
2739 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2740 }
Nate Begeman3df4d522005-10-12 20:40:40 +00002741 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002742
2743 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2744 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002745 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2746 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002747 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002748 MVT::ValueType EVT = LN0->getLoadedVT();
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002749 if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2750 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2751 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002752 LN0->getSrcValueOffset(), EVT,
2753 LN0->isVolatile(),
2754 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002755 CombineTo(N, ExtLoad);
2756 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2757 ExtLoad.getValue(1));
2758 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2759 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002760 }
2761
Chris Lattner20a35c32007-04-11 05:32:27 +00002762 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2763 if (N0.getOpcode() == ISD::SETCC) {
2764 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002765 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2766 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2767 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2768 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002769 }
2770
Nate Begeman83e75ec2005-09-06 04:43:02 +00002771 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002772}
2773
Nate Begeman83e75ec2005-09-06 04:43:02 +00002774SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002775 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002776 MVT::ValueType VT = N->getValueType(0);
2777
Nate Begeman1d4d4142005-09-01 00:19:25 +00002778 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002779 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002780 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002781 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002782 // fold (zext (aext x)) -> (zext x)
2783 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002784 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00002785
Evan Chengc88138f2007-03-22 01:54:19 +00002786 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2787 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00002788 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002789 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002790 if (NarrowLoad.Val) {
2791 if (NarrowLoad.Val != N0.Val)
2792 CombineTo(N0.Val, NarrowLoad);
2793 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2794 }
Evan Chengc88138f2007-03-22 01:54:19 +00002795 }
2796
Chris Lattner6007b842006-09-21 06:00:20 +00002797 // fold (zext (truncate x)) -> (and x, mask)
2798 if (N0.getOpcode() == ISD::TRUNCATE &&
2799 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2800 SDOperand Op = N0.getOperand(0);
2801 if (Op.getValueType() < VT) {
2802 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2803 } else if (Op.getValueType() > VT) {
2804 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2805 }
2806 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2807 }
2808
Chris Lattner111c2282006-09-21 06:14:31 +00002809 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2810 if (N0.getOpcode() == ISD::AND &&
2811 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2812 N0.getOperand(1).getOpcode() == ISD::Constant) {
2813 SDOperand X = N0.getOperand(0).getOperand(0);
2814 if (X.getValueType() < VT) {
2815 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2816 } else if (X.getValueType() > VT) {
2817 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2818 }
2819 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2820 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2821 }
2822
Evan Cheng110dec22005-12-14 02:19:23 +00002823 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002824 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002825 (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002826 bool DoXform = true;
2827 SmallVector<SDNode*, 4> SetCCs;
2828 if (!N0.hasOneUse())
2829 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
2830 if (DoXform) {
2831 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2832 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2833 LN0->getBasePtr(), LN0->getSrcValue(),
2834 LN0->getSrcValueOffset(),
2835 N0.getValueType(),
2836 LN0->isVolatile(),
2837 LN0->getAlignment());
2838 CombineTo(N, ExtLoad);
2839 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2840 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2841 // Extend SetCC uses if necessary.
2842 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2843 SDNode *SetCC = SetCCs[i];
2844 SmallVector<SDOperand, 4> Ops;
2845 for (unsigned j = 0; j != 2; ++j) {
2846 SDOperand SOp = SetCC->getOperand(j);
2847 if (SOp == Trunc)
2848 Ops.push_back(ExtLoad);
2849 else
Evan Chengde1631b2007-10-30 20:11:21 +00002850 Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002851 }
2852 Ops.push_back(SetCC->getOperand(2));
2853 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2854 &Ops[0], Ops.size()));
2855 }
2856 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2857 }
Evan Cheng110dec22005-12-14 02:19:23 +00002858 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002859
2860 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2861 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002862 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2863 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002864 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002865 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002866 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2867 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002868 LN0->getSrcValueOffset(), EVT,
2869 LN0->isVolatile(),
2870 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002871 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002872 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2873 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002874 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002875 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002876
2877 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2878 if (N0.getOpcode() == ISD::SETCC) {
2879 SDOperand SCC =
2880 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2881 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00002882 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2883 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002884 }
2885
Nate Begeman83e75ec2005-09-06 04:43:02 +00002886 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002887}
2888
Chris Lattner5ffc0662006-05-05 05:58:59 +00002889SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
2890 SDOperand N0 = N->getOperand(0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00002891 MVT::ValueType VT = N->getValueType(0);
2892
2893 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00002894 if (isa<ConstantSDNode>(N0))
Chris Lattner5ffc0662006-05-05 05:58:59 +00002895 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
2896 // fold (aext (aext x)) -> (aext x)
2897 // fold (aext (zext x)) -> (zext x)
2898 // fold (aext (sext x)) -> (sext x)
2899 if (N0.getOpcode() == ISD::ANY_EXTEND ||
2900 N0.getOpcode() == ISD::ZERO_EXTEND ||
2901 N0.getOpcode() == ISD::SIGN_EXTEND)
2902 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
2903
Evan Chengc88138f2007-03-22 01:54:19 +00002904 // fold (aext (truncate (load x))) -> (aext (smaller load x))
2905 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
2906 if (N0.getOpcode() == ISD::TRUNCATE) {
2907 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002908 if (NarrowLoad.Val) {
2909 if (NarrowLoad.Val != N0.Val)
2910 CombineTo(N0.Val, NarrowLoad);
2911 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
2912 }
Evan Chengc88138f2007-03-22 01:54:19 +00002913 }
2914
Chris Lattner84750582006-09-20 06:29:17 +00002915 // fold (aext (truncate x))
2916 if (N0.getOpcode() == ISD::TRUNCATE) {
2917 SDOperand TruncOp = N0.getOperand(0);
2918 if (TruncOp.getValueType() == VT)
2919 return TruncOp; // x iff x size == zext size.
2920 if (TruncOp.getValueType() > VT)
2921 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
2922 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
2923 }
Chris Lattner0e4b9222006-09-21 06:40:43 +00002924
2925 // fold (aext (and (trunc x), cst)) -> (and x, cst).
2926 if (N0.getOpcode() == ISD::AND &&
2927 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2928 N0.getOperand(1).getOpcode() == ISD::Constant) {
2929 SDOperand X = N0.getOperand(0).getOperand(0);
2930 if (X.getValueType() < VT) {
2931 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2932 } else if (X.getValueType() > VT) {
2933 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2934 }
2935 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2936 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2937 }
2938
Chris Lattner5ffc0662006-05-05 05:58:59 +00002939 // fold (aext (load x)) -> (aext (truncate (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00002940 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00002941 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002942 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2943 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
2944 LN0->getBasePtr(), LN0->getSrcValue(),
2945 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002946 N0.getValueType(),
2947 LN0->isVolatile(),
2948 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002949 CombineTo(N, ExtLoad);
2950 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2951 ExtLoad.getValue(1));
2952 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2953 }
2954
2955 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
2956 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
2957 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002958 if (N0.getOpcode() == ISD::LOAD &&
2959 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng466685d2006-10-09 20:57:25 +00002960 N0.hasOneUse()) {
2961 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002962 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002963 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
2964 LN0->getChain(), LN0->getBasePtr(),
2965 LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002966 LN0->getSrcValueOffset(), EVT,
2967 LN0->isVolatile(),
2968 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002969 CombineTo(N, ExtLoad);
2970 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2971 ExtLoad.getValue(1));
2972 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2973 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002974
2975 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2976 if (N0.getOpcode() == ISD::SETCC) {
2977 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002978 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2979 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00002980 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Chris Lattner1eba01e2007-04-11 06:50:51 +00002981 if (SCC.Val)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00002982 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002983 }
2984
Chris Lattner5ffc0662006-05-05 05:58:59 +00002985 return SDOperand();
2986}
2987
Chris Lattner2b4c2792007-10-13 06:35:54 +00002988/// GetDemandedBits - See if the specified operand can be simplified with the
2989/// knowledge that only the bits specified by Mask are used. If so, return the
2990/// simpler operand, otherwise return a null SDOperand.
2991SDOperand DAGCombiner::GetDemandedBits(SDOperand V, uint64_t Mask) {
2992 switch (V.getOpcode()) {
2993 default: break;
2994 case ISD::OR:
2995 case ISD::XOR:
2996 // If the LHS or RHS don't contribute bits to the or, drop them.
2997 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
2998 return V.getOperand(1);
2999 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
3000 return V.getOperand(0);
3001 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00003002 case ISD::SRL:
3003 // Only look at single-use SRLs.
3004 if (!V.Val->hasOneUse())
3005 break;
3006 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3007 // See if we can recursively simplify the LHS.
3008 unsigned Amt = RHSC->getValue();
3009 Mask = (Mask << Amt) & MVT::getIntVTBitMask(V.getValueType());
3010 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), Mask);
3011 if (SimplifyLHS.Val) {
3012 return DAG.getNode(ISD::SRL, V.getValueType(),
3013 SimplifyLHS, V.getOperand(1));
3014 }
3015 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00003016 }
3017 return SDOperand();
3018}
3019
Evan Chengc88138f2007-03-22 01:54:19 +00003020/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3021/// bits and then truncated to a narrower type and where N is a multiple
3022/// of number of bits of the narrower type, transform it to a narrower load
3023/// from address + N / num of bits of new type. If the result is to be
3024/// extended, also fold the extension to form a extending load.
3025SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3026 unsigned Opc = N->getOpcode();
3027 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3028 SDOperand N0 = N->getOperand(0);
3029 MVT::ValueType VT = N->getValueType(0);
3030 MVT::ValueType EVT = N->getValueType(0);
3031
Evan Chenge177e302007-03-23 22:13:36 +00003032 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3033 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00003034 if (Opc == ISD::SIGN_EXTEND_INREG) {
3035 ExtType = ISD::SEXTLOAD;
3036 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Evan Chenge177e302007-03-23 22:13:36 +00003037 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3038 return SDOperand();
Evan Chengc88138f2007-03-22 01:54:19 +00003039 }
3040
3041 unsigned EVTBits = MVT::getSizeInBits(EVT);
3042 unsigned ShAmt = 0;
Evan Chengb37b80c2007-03-23 20:55:21 +00003043 bool CombineSRL = false;
Evan Chengc88138f2007-03-22 01:54:19 +00003044 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3045 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3046 ShAmt = N01->getValue();
3047 // Is the shift amount a multiple of size of VT?
3048 if ((ShAmt & (EVTBits-1)) == 0) {
3049 N0 = N0.getOperand(0);
3050 if (MVT::getSizeInBits(N0.getValueType()) <= EVTBits)
3051 return SDOperand();
Evan Chengb37b80c2007-03-23 20:55:21 +00003052 CombineSRL = true;
Evan Chengc88138f2007-03-22 01:54:19 +00003053 }
3054 }
3055 }
3056
3057 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3058 // Do not allow folding to i1 here. i1 is implicitly stored in memory in
3059 // zero extended form: by shrinking the load, we lose track of the fact
3060 // that it is already zero extended.
3061 // FIXME: This should be reevaluated.
3062 VT != MVT::i1) {
3063 assert(MVT::getSizeInBits(N0.getValueType()) > EVTBits &&
3064 "Cannot truncate to larger type!");
3065 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3066 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Evan Chengdae54ce2007-03-24 00:02:43 +00003067 // For big endian targets, we need to adjust the offset to the pointer to
3068 // load the correct bytes.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00003069 if (!TLI.isLittleEndian()) {
3070 unsigned LVTStoreBits = MVT::getStoreSizeInBits(N0.getValueType());
3071 unsigned EVTStoreBits = MVT::getStoreSizeInBits(EVT);
3072 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3073 }
Evan Chengdae54ce2007-03-24 00:02:43 +00003074 uint64_t PtrOff = ShAmt / 8;
Duncan Sandsdc846502007-10-28 12:59:45 +00003075 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Evan Chengc88138f2007-03-22 01:54:19 +00003076 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3077 DAG.getConstant(PtrOff, PtrType));
3078 AddToWorkList(NewPtr.Val);
3079 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3080 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003081 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Duncan Sandsdc846502007-10-28 12:59:45 +00003082 LN0->isVolatile(), NewAlign)
Evan Chengc88138f2007-03-22 01:54:19 +00003083 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003084 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00003085 LN0->isVolatile(), NewAlign);
Evan Chengc88138f2007-03-22 01:54:19 +00003086 AddToWorkList(N);
Evan Chengb37b80c2007-03-23 20:55:21 +00003087 if (CombineSRL) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003088 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Evan Chengb37b80c2007-03-23 20:55:21 +00003089 CombineTo(N->getOperand(0).Val, Load);
3090 } else
3091 CombineTo(N0.Val, Load, Load.getValue(1));
Evan Cheng15213b72007-03-26 07:12:51 +00003092 if (ShAmt) {
3093 if (Opc == ISD::SIGN_EXTEND_INREG)
3094 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3095 else
3096 return DAG.getNode(Opc, VT, Load);
3097 }
Evan Chengc88138f2007-03-22 01:54:19 +00003098 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3099 }
3100
3101 return SDOperand();
3102}
3103
Chris Lattner5ffc0662006-05-05 05:58:59 +00003104
Nate Begeman83e75ec2005-09-06 04:43:02 +00003105SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003106 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003107 SDOperand N1 = N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003108 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003109 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Nate Begeman07ed4172005-10-10 21:26:48 +00003110 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003111
Nate Begeman1d4d4142005-09-01 00:19:25 +00003112 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00003113 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Chris Lattner310b5782006-05-06 23:06:26 +00003114 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
Chris Lattneree4ea922006-05-06 09:30:03 +00003115
Chris Lattner541a24f2006-05-06 22:43:44 +00003116 // If the input is already sign extended, just drop the extension.
Dan Gohmanea859be2007-06-22 14:59:07 +00003117 if (DAG.ComputeNumSignBits(N0) >= MVT::getSizeInBits(VT)-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00003118 return N0;
3119
Nate Begeman646d7e22005-09-02 21:18:40 +00003120 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3121 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3122 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00003123 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003124 }
Chris Lattner4b37e872006-05-08 21:18:59 +00003125
Chris Lattner95a5e052007-04-17 19:03:21 +00003126 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohmanea859be2007-06-22 14:59:07 +00003127 if (DAG.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
Nate Begemande996292006-02-03 22:24:05 +00003128 return DAG.getZeroExtendInReg(N0, EVT);
Chris Lattner4b37e872006-05-08 21:18:59 +00003129
Chris Lattner95a5e052007-04-17 19:03:21 +00003130 // fold operands of sext_in_reg based on knowledge that the top bits are not
3131 // demanded.
3132 if (SimplifyDemandedBits(SDOperand(N, 0)))
3133 return SDOperand(N, 0);
3134
Evan Chengc88138f2007-03-22 01:54:19 +00003135 // fold (sext_in_reg (load x)) -> (smaller sextload x)
3136 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3137 SDOperand NarrowLoad = ReduceLoadWidth(N);
3138 if (NarrowLoad.Val)
3139 return NarrowLoad;
3140
Chris Lattner4b37e872006-05-08 21:18:59 +00003141 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3142 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3143 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3144 if (N0.getOpcode() == ISD::SRL) {
3145 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
3146 if (ShAmt->getValue()+EVTBits <= MVT::getSizeInBits(VT)) {
3147 // We can turn this into an SRA iff the input to the SRL is already sign
3148 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00003149 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Chris Lattner4b37e872006-05-08 21:18:59 +00003150 if (MVT::getSizeInBits(VT)-(ShAmt->getValue()+EVTBits) < InSignBits)
3151 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3152 }
3153 }
Evan Chengc88138f2007-03-22 01:54:19 +00003154
Nate Begemanded49632005-10-13 03:11:28 +00003155 // fold (sext_inreg (extload x)) -> (sextload x)
Evan Chengc5484282006-10-04 00:56:09 +00003156 if (ISD::isEXTLoad(N0.Val) &&
Evan Cheng83060c52007-03-07 08:07:03 +00003157 ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003158 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003159 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003160 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3161 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3162 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003163 LN0->getSrcValueOffset(), EVT,
3164 LN0->isVolatile(),
3165 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003166 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003167 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003168 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003169 }
3170 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00003171 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3172 N0.hasOneUse() &&
Evan Cheng2e49f092006-10-11 07:10:22 +00003173 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003174 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003175 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3176 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3177 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003178 LN0->getSrcValueOffset(), EVT,
3179 LN0->isVolatile(),
3180 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003181 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003182 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003183 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003184 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003185 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003186}
3187
Nate Begeman83e75ec2005-09-06 04:43:02 +00003188SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003189 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003190 MVT::ValueType VT = N->getValueType(0);
3191
3192 // noop truncate
3193 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003194 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003195 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003196 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00003197 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003198 // fold (truncate (truncate x)) -> (truncate x)
3199 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003200 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003201 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattnerb72773b2006-05-05 22:56:26 +00003202 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3203 N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003204 if (N0.getOperand(0).getValueType() < VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003205 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00003206 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003207 else if (N0.getOperand(0).getValueType() > VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003208 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003209 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003210 else
3211 // if the source and dest are the same type, we can drop both the extend
3212 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003213 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003214 }
Evan Cheng007b69e2007-03-21 20:14:05 +00003215
Chris Lattner2b4c2792007-10-13 06:35:54 +00003216 // See if we can simplify the input to this truncate through knowledge that
3217 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3218 // -> trunc y
3219 SDOperand Shorter = GetDemandedBits(N0, MVT::getIntVTBitMask(VT));
3220 if (Shorter.Val)
3221 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3222
Nate Begeman3df4d522005-10-12 20:40:40 +00003223 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00003224 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Evan Chengc88138f2007-03-22 01:54:19 +00003225 return ReduceLoadWidth(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003226}
3227
Chris Lattner94683772005-12-23 05:30:37 +00003228SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3229 SDOperand N0 = N->getOperand(0);
3230 MVT::ValueType VT = N->getValueType(0);
3231
Dan Gohman7f321562007-06-25 16:23:39 +00003232 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3233 // Only do this before legalize, since afterward the target may be depending
3234 // on the bitconvert.
3235 // First check to see if this is all constant.
3236 if (!AfterLegalize &&
3237 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
3238 MVT::isVector(VT)) {
3239 bool isSimple = true;
3240 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3241 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3242 N0.getOperand(i).getOpcode() != ISD::Constant &&
3243 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3244 isSimple = false;
3245 break;
3246 }
3247
3248 MVT::ValueType DestEltVT = MVT::getVectorElementType(N->getValueType(0));
3249 assert(!MVT::isVector(DestEltVT) &&
3250 "Element type of vector ValueType must not be vector!");
3251 if (isSimple) {
3252 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3253 }
3254 }
3255
Chris Lattner94683772005-12-23 05:30:37 +00003256 // If the input is a constant, let getNode() fold it.
3257 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3258 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3259 if (Res.Val != N) return Res;
3260 }
3261
Chris Lattnerc8547d82005-12-23 05:37:50 +00003262 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3263 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00003264
Chris Lattner57104102005-12-23 05:44:41 +00003265 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00003266 // If the resultant load doesn't need a higher alignment than the original!
3267 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Evan Cheng59d5b682007-05-07 21:27:48 +00003268 TLI.isOperationLegal(ISD::LOAD, VT)) {
Evan Cheng466685d2006-10-09 20:57:25 +00003269 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng59d5b682007-05-07 21:27:48 +00003270 unsigned Align = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00003271 getABITypeAlignment(MVT::getTypeForValueType(VT));
Evan Cheng59d5b682007-05-07 21:27:48 +00003272 unsigned OrigAlign = LN0->getAlignment();
3273 if (Align <= OrigAlign) {
3274 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3275 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003276 LN0->isVolatile(), Align);
Evan Cheng59d5b682007-05-07 21:27:48 +00003277 AddToWorkList(N);
3278 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3279 Load.getValue(1));
3280 return Load;
3281 }
Chris Lattner57104102005-12-23 05:44:41 +00003282 }
3283
Chris Lattner94683772005-12-23 05:30:37 +00003284 return SDOperand();
3285}
3286
Dan Gohman7f321562007-06-25 16:23:39 +00003287/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
Chris Lattner6258fb22006-04-02 02:53:43 +00003288/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3289/// destination element value type.
3290SDOperand DAGCombiner::
Dan Gohman7f321562007-06-25 16:23:39 +00003291ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003292 MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
3293
3294 // If this is already the right type, we're done.
3295 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3296
3297 unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
3298 unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
3299
3300 // If this is a conversion of N elements of one type to N elements of another
3301 // type, convert each element. This handles FP<->INT cases.
3302 if (SrcBitSize == DstBitSize) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003303 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003304 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003305 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
Chris Lattner3e104b12006-04-08 04:15:24 +00003306 AddToWorkList(Ops.back().Val);
3307 }
Dan Gohman7f321562007-06-25 16:23:39 +00003308 MVT::ValueType VT =
3309 MVT::getVectorType(DstEltVT,
3310 MVT::getVectorNumElements(BV->getValueType(0)));
3311 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003312 }
3313
3314 // Otherwise, we're growing or shrinking the elements. To avoid having to
3315 // handle annoying details of growing/shrinking FP values, we convert them to
3316 // int first.
3317 if (MVT::isFloatingPoint(SrcEltVT)) {
3318 // Convert the input float vector to a int vector where the elements are the
3319 // same sizes.
3320 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
3321 MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003322 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003323 SrcEltVT = IntVT;
3324 }
3325
3326 // Now we know the input is an integer vector. If the output is a FP type,
3327 // convert to integer first, then to FP of the right size.
3328 if (MVT::isFloatingPoint(DstEltVT)) {
3329 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
3330 MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003331 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003332
3333 // Next, convert to FP elements of the same size.
Dan Gohman7f321562007-06-25 16:23:39 +00003334 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00003335 }
3336
3337 // Okay, we know the src/dst types are both integers of differing types.
3338 // Handling growing first.
3339 assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
3340 if (SrcBitSize < DstBitSize) {
3341 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3342
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003343 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003344 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00003345 i += NumInputsPerOutput) {
3346 bool isLE = TLI.isLittleEndian();
3347 uint64_t NewBits = 0;
3348 bool EltIsUndef = true;
3349 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3350 // Shift the previously computed bits over.
3351 NewBits <<= SrcBitSize;
3352 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3353 if (Op.getOpcode() == ISD::UNDEF) continue;
3354 EltIsUndef = false;
3355
3356 NewBits |= cast<ConstantSDNode>(Op)->getValue();
3357 }
3358
3359 if (EltIsUndef)
3360 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3361 else
3362 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3363 }
3364
Dan Gohman7f321562007-06-25 16:23:39 +00003365 MVT::ValueType VT = MVT::getVectorType(DstEltVT,
3366 Ops.size());
3367 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003368 }
3369
3370 // Finally, this must be the case where we are shrinking elements: each input
3371 // turns into multiple outputs.
3372 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003373 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003374 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003375 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3376 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3377 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3378 continue;
3379 }
3380 uint64_t OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getValue();
3381
3382 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
3383 unsigned ThisVal = OpVal & ((1ULL << DstBitSize)-1);
3384 OpVal >>= DstBitSize;
3385 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
3386 }
3387
3388 // For big endian targets, swap the order of the pieces of each element.
3389 if (!TLI.isLittleEndian())
3390 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3391 }
Dan Gohman7f321562007-06-25 16:23:39 +00003392 MVT::ValueType VT = MVT::getVectorType(DstEltVT, Ops.size());
3393 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003394}
3395
3396
3397
Chris Lattner01b3d732005-09-28 22:28:18 +00003398SDOperand DAGCombiner::visitFADD(SDNode *N) {
3399 SDOperand N0 = N->getOperand(0);
3400 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003401 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3402 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003403 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003404
Dan Gohman7f321562007-06-25 16:23:39 +00003405 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003406 if (MVT::isVector(VT)) {
3407 SDOperand FoldedVOp = SimplifyVBinOp(N);
3408 if (FoldedVOp.Val) return FoldedVOp;
3409 }
Dan Gohman7f321562007-06-25 16:23:39 +00003410
Nate Begemana0e221d2005-10-18 00:28:13 +00003411 // fold (fadd c1, c2) -> c1+c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003412 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003413 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003414 // canonicalize constant to RHS
3415 if (N0CFP && !N1CFP)
3416 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003417 // fold (A + (-B)) -> A-B
Chris Lattner29446522007-05-14 22:04:50 +00003418 if (isNegatibleForFree(N1) == 2)
3419 return DAG.getNode(ISD::FSUB, VT, N0, GetNegatedExpression(N1, DAG));
Chris Lattner01b3d732005-09-28 22:28:18 +00003420 // fold ((-A) + B) -> B-A
Chris Lattner29446522007-05-14 22:04:50 +00003421 if (isNegatibleForFree(N0) == 2)
3422 return DAG.getNode(ISD::FSUB, VT, N1, GetNegatedExpression(N0, DAG));
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003423
3424 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3425 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3426 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3427 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3428 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3429
Chris Lattner01b3d732005-09-28 22:28:18 +00003430 return SDOperand();
3431}
3432
3433SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3434 SDOperand N0 = N->getOperand(0);
3435 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003436 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3437 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003438 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003439
Dan Gohman7f321562007-06-25 16:23:39 +00003440 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003441 if (MVT::isVector(VT)) {
3442 SDOperand FoldedVOp = SimplifyVBinOp(N);
3443 if (FoldedVOp.Val) return FoldedVOp;
3444 }
Dan Gohman7f321562007-06-25 16:23:39 +00003445
Nate Begemana0e221d2005-10-18 00:28:13 +00003446 // fold (fsub c1, c2) -> c1-c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003447 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003448 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00003449 // fold (0-B) -> -B
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003450 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Dan Gohman23ff1822007-07-02 15:48:56 +00003451 if (isNegatibleForFree(N1))
3452 return GetNegatedExpression(N1, DAG);
3453 return DAG.getNode(ISD::FNEG, VT, N1);
3454 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003455 // fold (A-(-B)) -> A+B
Chris Lattner29446522007-05-14 22:04:50 +00003456 if (isNegatibleForFree(N1))
3457 return DAG.getNode(ISD::FADD, VT, N0, GetNegatedExpression(N1, DAG));
3458
Chris Lattner01b3d732005-09-28 22:28:18 +00003459 return SDOperand();
3460}
3461
3462SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3463 SDOperand N0 = N->getOperand(0);
3464 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003465 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3466 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003467 MVT::ValueType VT = N->getValueType(0);
3468
Dan Gohman7f321562007-06-25 16:23:39 +00003469 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003470 if (MVT::isVector(VT)) {
3471 SDOperand FoldedVOp = SimplifyVBinOp(N);
3472 if (FoldedVOp.Val) return FoldedVOp;
3473 }
Dan Gohman7f321562007-06-25 16:23:39 +00003474
Nate Begeman11af4ea2005-10-17 20:40:11 +00003475 // fold (fmul c1, c2) -> c1*c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003476 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003477 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003478 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003479 if (N0CFP && !N1CFP)
3480 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003481 // fold (fmul X, 2.0) -> (fadd X, X)
3482 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3483 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner29446522007-05-14 22:04:50 +00003484 // fold (fmul X, -1.0) -> (fneg X)
3485 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3486 return DAG.getNode(ISD::FNEG, VT, N0);
3487
3488 // -X * -Y -> X*Y
3489 if (char LHSNeg = isNegatibleForFree(N0)) {
3490 if (char RHSNeg = isNegatibleForFree(N1)) {
3491 // Both can be negated for free, check to see if at least one is cheaper
3492 // negated.
3493 if (LHSNeg == 2 || RHSNeg == 2)
3494 return DAG.getNode(ISD::FMUL, VT, GetNegatedExpression(N0, DAG),
3495 GetNegatedExpression(N1, DAG));
3496 }
3497 }
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003498
3499 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3500 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3501 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3502 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3503 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3504
Chris Lattner01b3d732005-09-28 22:28:18 +00003505 return SDOperand();
3506}
3507
3508SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3509 SDOperand N0 = N->getOperand(0);
3510 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003511 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3512 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003513 MVT::ValueType VT = N->getValueType(0);
3514
Dan Gohman7f321562007-06-25 16:23:39 +00003515 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003516 if (MVT::isVector(VT)) {
3517 SDOperand FoldedVOp = SimplifyVBinOp(N);
3518 if (FoldedVOp.Val) return FoldedVOp;
3519 }
Dan Gohman7f321562007-06-25 16:23:39 +00003520
Nate Begemana148d982006-01-18 22:35:16 +00003521 // fold (fdiv c1, c2) -> c1/c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003522 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003523 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner29446522007-05-14 22:04:50 +00003524
3525
3526 // -X / -Y -> X*Y
3527 if (char LHSNeg = isNegatibleForFree(N0)) {
3528 if (char RHSNeg = isNegatibleForFree(N1)) {
3529 // Both can be negated for free, check to see if at least one is cheaper
3530 // negated.
3531 if (LHSNeg == 2 || RHSNeg == 2)
3532 return DAG.getNode(ISD::FDIV, VT, GetNegatedExpression(N0, DAG),
3533 GetNegatedExpression(N1, DAG));
3534 }
3535 }
3536
Chris Lattner01b3d732005-09-28 22:28:18 +00003537 return SDOperand();
3538}
3539
3540SDOperand DAGCombiner::visitFREM(SDNode *N) {
3541 SDOperand N0 = N->getOperand(0);
3542 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003543 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3544 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003545 MVT::ValueType VT = N->getValueType(0);
3546
Nate Begemana148d982006-01-18 22:35:16 +00003547 // fold (frem c1, c2) -> fmod(c1,c2)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003548 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003549 return DAG.getNode(ISD::FREM, VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00003550
Chris Lattner01b3d732005-09-28 22:28:18 +00003551 return SDOperand();
3552}
3553
Chris Lattner12d83032006-03-05 05:30:57 +00003554SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3555 SDOperand N0 = N->getOperand(0);
3556 SDOperand N1 = N->getOperand(1);
3557 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3558 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3559 MVT::ValueType VT = N->getValueType(0);
3560
Dale Johannesendb44bf82007-10-16 23:38:29 +00003561 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Chris Lattner12d83032006-03-05 05:30:57 +00003562 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3563
3564 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00003565 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00003566 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3567 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen87503a62007-08-25 22:10:57 +00003568 if (!V.isNegative())
Chris Lattner12d83032006-03-05 05:30:57 +00003569 return DAG.getNode(ISD::FABS, VT, N0);
3570 else
3571 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3572 }
3573
3574 // copysign(fabs(x), y) -> copysign(x, y)
3575 // copysign(fneg(x), y) -> copysign(x, y)
3576 // copysign(copysign(x,z), y) -> copysign(x, y)
3577 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3578 N0.getOpcode() == ISD::FCOPYSIGN)
3579 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3580
3581 // copysign(x, abs(y)) -> abs(x)
3582 if (N1.getOpcode() == ISD::FABS)
3583 return DAG.getNode(ISD::FABS, VT, N0);
3584
3585 // copysign(x, copysign(y,z)) -> copysign(x, z)
3586 if (N1.getOpcode() == ISD::FCOPYSIGN)
3587 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3588
3589 // copysign(x, fp_extend(y)) -> copysign(x, y)
3590 // copysign(x, fp_round(y)) -> copysign(x, y)
3591 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3592 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3593
3594 return SDOperand();
3595}
3596
3597
Chris Lattner01b3d732005-09-28 22:28:18 +00003598
Nate Begeman83e75ec2005-09-06 04:43:02 +00003599SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003600 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003601 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003602 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003603
3604 // fold (sint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003605 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003606 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003607 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003608}
3609
Nate Begeman83e75ec2005-09-06 04:43:02 +00003610SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003611 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003612 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003613 MVT::ValueType VT = N->getValueType(0);
3614
Nate Begeman1d4d4142005-09-01 00:19:25 +00003615 // fold (uint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003616 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003617 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003618 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003619}
3620
Nate Begeman83e75ec2005-09-06 04:43:02 +00003621SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003622 SDOperand N0 = N->getOperand(0);
3623 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3624 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003625
3626 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003627 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003628 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003629 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003630}
3631
Nate Begeman83e75ec2005-09-06 04:43:02 +00003632SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003633 SDOperand N0 = N->getOperand(0);
3634 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3635 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003636
3637 // fold (fp_to_uint c1fp) -> c1
Dale Johannesendb44bf82007-10-16 23:38:29 +00003638 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003639 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003640 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003641}
3642
Nate Begeman83e75ec2005-09-06 04:43:02 +00003643SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003644 SDOperand N0 = N->getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003645 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003646 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3647 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003648
3649 // fold (fp_round c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003650 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Chris Lattner0bd48932008-01-17 07:00:52 +00003651 return DAG.getNode(ISD::FP_ROUND, VT, N0, N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003652
3653 // fold (fp_round (fp_extend x)) -> x
3654 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3655 return N0.getOperand(0);
3656
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00003657 // fold (fp_round (fp_round x)) -> (fp_round x)
3658 if (N0.getOpcode() == ISD::FP_ROUND) {
3659 // This is a value preserving truncation if both round's are.
3660 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
3661 N0.Val->getConstantOperandVal(1) == 1;
3662 return DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0),
3663 DAG.getIntPtrConstant(IsTrunc));
3664 }
3665
Chris Lattner79dbea52006-03-13 06:26:26 +00003666 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3667 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003668 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0), N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003669 AddToWorkList(Tmp.Val);
3670 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3671 }
3672
Nate Begeman83e75ec2005-09-06 04:43:02 +00003673 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003674}
3675
Nate Begeman83e75ec2005-09-06 04:43:02 +00003676SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003677 SDOperand N0 = N->getOperand(0);
3678 MVT::ValueType VT = N->getValueType(0);
3679 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00003680 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003681
Nate Begeman1d4d4142005-09-01 00:19:25 +00003682 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003683 if (N0CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003684 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003685 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003686 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003687 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003688}
3689
Nate Begeman83e75ec2005-09-06 04:43:02 +00003690SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003691 SDOperand N0 = N->getOperand(0);
3692 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3693 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003694
Chris Lattner5938bef2007-12-29 06:55:23 +00003695 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
3696 if (N->hasOneUse() && (*N->use_begin())->getOpcode() == ISD::FP_ROUND)
3697 return SDOperand();
Chris Lattner0bd48932008-01-17 07:00:52 +00003698
Nate Begeman1d4d4142005-09-01 00:19:25 +00003699 // fold (fp_extend c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003700 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003701 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003702
3703 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
3704 // value of X.
3705 if (N0.getOpcode() == ISD::FP_ROUND && N0.Val->getConstantOperandVal(1) == 1){
3706 SDOperand In = N0.getOperand(0);
3707 if (In.getValueType() == VT) return In;
3708 if (VT < In.getValueType())
3709 return DAG.getNode(ISD::FP_ROUND, VT, In, N0.getOperand(1));
3710 return DAG.getNode(ISD::FP_EXTEND, VT, In);
3711 }
3712
3713 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Dale Johannesenb6210fc2007-10-19 20:29:00 +00003714 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003715 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003716 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3717 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3718 LN0->getBasePtr(), LN0->getSrcValue(),
3719 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003720 N0.getValueType(),
3721 LN0->isVolatile(),
3722 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00003723 CombineTo(N, ExtLoad);
Chris Lattner0bd48932008-01-17 07:00:52 +00003724 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad,
3725 DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00003726 ExtLoad.getValue(1));
3727 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3728 }
3729
3730
Nate Begeman83e75ec2005-09-06 04:43:02 +00003731 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003732}
3733
Nate Begeman83e75ec2005-09-06 04:43:02 +00003734SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003735 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00003736
Dan Gohman23ff1822007-07-02 15:48:56 +00003737 if (isNegatibleForFree(N0))
3738 return GetNegatedExpression(N0, DAG);
3739
Nate Begeman83e75ec2005-09-06 04:43:02 +00003740 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003741}
3742
Nate Begeman83e75ec2005-09-06 04:43:02 +00003743SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003744 SDOperand N0 = N->getOperand(0);
3745 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3746 MVT::ValueType VT = N->getValueType(0);
3747
Nate Begeman1d4d4142005-09-01 00:19:25 +00003748 // fold (fabs c1) -> fabs(c1)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003749 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003750 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003751 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003752 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003753 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003754 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003755 // fold (fabs (fcopysign x, y)) -> (fabs x)
3756 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
3757 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
3758
Nate Begeman83e75ec2005-09-06 04:43:02 +00003759 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003760}
3761
Nate Begeman44728a72005-09-19 22:34:01 +00003762SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
3763 SDOperand Chain = N->getOperand(0);
3764 SDOperand N1 = N->getOperand(1);
3765 SDOperand N2 = N->getOperand(2);
3766 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3767
3768 // never taken branch, fold to chain
3769 if (N1C && N1C->isNullValue())
3770 return Chain;
3771 // unconditional branch
Nate Begemane17daeb2005-10-05 21:43:42 +00003772 if (N1C && N1C->getValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00003773 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003774 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
3775 // on the target.
3776 if (N1.getOpcode() == ISD::SETCC &&
3777 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
3778 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
3779 N1.getOperand(0), N1.getOperand(1), N2);
3780 }
Nate Begeman44728a72005-09-19 22:34:01 +00003781 return SDOperand();
3782}
3783
Chris Lattner3ea0b472005-10-05 06:47:48 +00003784// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
3785//
Nate Begeman44728a72005-09-19 22:34:01 +00003786SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00003787 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
3788 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
3789
3790 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00003791 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
Chris Lattner30f73e72006-10-14 03:52:46 +00003792 if (Simp.Val) AddToWorkList(Simp.Val);
3793
Nate Begemane17daeb2005-10-05 21:43:42 +00003794 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
3795
3796 // fold br_cc true, dest -> br dest (unconditional branch)
3797 if (SCCC && SCCC->getValue())
3798 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
3799 N->getOperand(4));
3800 // fold br_cc false, dest -> unconditional fall through
3801 if (SCCC && SCCC->isNullValue())
3802 return N->getOperand(0);
Chris Lattner30f73e72006-10-14 03:52:46 +00003803
Nate Begemane17daeb2005-10-05 21:43:42 +00003804 // fold to a simpler setcc
3805 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
3806 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
3807 Simp.getOperand(2), Simp.getOperand(0),
3808 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00003809 return SDOperand();
3810}
3811
Chris Lattner448f2192006-11-11 00:39:41 +00003812
3813/// CombineToPreIndexedLoadStore - Try turning a load / store and a
3814/// pre-indexed load / store when the base pointer is a add or subtract
3815/// and it has other uses besides the load / store. After the
3816/// transformation, the new indexed load / store has effectively folded
3817/// the add / subtract in and all of its other uses are redirected to the
3818/// new load / store.
3819bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
3820 if (!AfterLegalize)
3821 return false;
3822
3823 bool isLoad = true;
3824 SDOperand Ptr;
3825 MVT::ValueType VT;
3826 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003827 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003828 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003829 VT = LD->getLoadedVT();
Evan Cheng83060c52007-03-07 08:07:03 +00003830 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00003831 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
3832 return false;
3833 Ptr = LD->getBasePtr();
3834 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003835 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003836 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003837 VT = ST->getStoredVT();
3838 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
3839 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
3840 return false;
3841 Ptr = ST->getBasePtr();
3842 isLoad = false;
3843 } else
3844 return false;
3845
Chris Lattner9f1794e2006-11-11 00:56:29 +00003846 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
3847 // out. There is no reason to make this a preinc/predec.
3848 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
3849 Ptr.Val->hasOneUse())
3850 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003851
Chris Lattner9f1794e2006-11-11 00:56:29 +00003852 // Ask the target to do addressing mode selection.
3853 SDOperand BasePtr;
3854 SDOperand Offset;
3855 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3856 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
3857 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00003858 // Don't create a indexed load / store with zero offset.
3859 if (isa<ConstantSDNode>(Offset) &&
3860 cast<ConstantSDNode>(Offset)->getValue() == 0)
3861 return false;
Chris Lattner9f1794e2006-11-11 00:56:29 +00003862
Chris Lattner41e53fd2006-11-11 01:00:15 +00003863 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00003864 // 1) The new base ptr is a frame index.
3865 // 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 +00003866 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00003867 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00003868 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00003869 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00003870
Chris Lattner41e53fd2006-11-11 01:00:15 +00003871 // Check #1. Preinc'ing a frame index would require copying the stack pointer
3872 // (plus the implicit offset) to a register to preinc anyway.
3873 if (isa<FrameIndexSDNode>(BasePtr))
3874 return false;
3875
3876 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003877 if (!isLoad) {
3878 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Chengc843abe2007-05-24 02:35:39 +00003879 if (Val == BasePtr || BasePtr.Val->isPredecessor(Val.Val))
Chris Lattner9f1794e2006-11-11 00:56:29 +00003880 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003881 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003882
Evan Chengc843abe2007-05-24 02:35:39 +00003883 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003884 bool RealUse = false;
3885 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3886 E = Ptr.Val->use_end(); I != E; ++I) {
3887 SDNode *Use = *I;
3888 if (Use == N)
3889 continue;
3890 if (Use->isPredecessor(N))
3891 return false;
3892
3893 if (!((Use->getOpcode() == ISD::LOAD &&
3894 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
3895 (Use->getOpcode() == ISD::STORE) &&
3896 cast<StoreSDNode>(Use)->getBasePtr() == Ptr))
3897 RealUse = true;
3898 }
3899 if (!RealUse)
3900 return false;
3901
3902 SDOperand Result;
3903 if (isLoad)
3904 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
3905 else
3906 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
3907 ++PreIndexedNodes;
3908 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00003909 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00003910 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
3911 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00003912 std::vector<SDNode*> NowDead;
3913 if (isLoad) {
3914 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003915 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003916 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00003917 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003918 } else {
3919 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00003920 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003921 }
3922
3923 // Nodes can end up on the worklist more than once. Make sure we do
3924 // not process a node that has been replaced.
3925 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3926 removeFromWorkList(NowDead[i]);
3927 // Finally, since the node is now dead, remove it from the graph.
3928 DAG.DeleteNode(N);
3929
3930 // Replace the uses of Ptr with uses of the updated base value.
3931 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00003932 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003933 removeFromWorkList(Ptr.Val);
3934 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3935 removeFromWorkList(NowDead[i]);
3936 DAG.DeleteNode(Ptr.Val);
3937
3938 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00003939}
3940
3941/// CombineToPostIndexedLoadStore - Try combine a load / store with a
3942/// add / sub of the base pointer node into a post-indexed load / store.
3943/// The transformation folded the add / subtract into the new indexed
3944/// load / store effectively and all of its uses are redirected to the
3945/// new load / store.
3946bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
3947 if (!AfterLegalize)
3948 return false;
3949
3950 bool isLoad = true;
3951 SDOperand Ptr;
3952 MVT::ValueType VT;
3953 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003954 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003955 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003956 VT = LD->getLoadedVT();
3957 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
3958 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
3959 return false;
3960 Ptr = LD->getBasePtr();
3961 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00003962 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00003963 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003964 VT = ST->getStoredVT();
3965 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
3966 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
3967 return false;
3968 Ptr = ST->getBasePtr();
3969 isLoad = false;
3970 } else
3971 return false;
3972
Evan Chengcc470212006-11-16 00:08:20 +00003973 if (Ptr.Val->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00003974 return false;
3975
3976 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3977 E = Ptr.Val->use_end(); I != E; ++I) {
3978 SDNode *Op = *I;
3979 if (Op == N ||
3980 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
3981 continue;
3982
3983 SDOperand BasePtr;
3984 SDOperand Offset;
3985 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3986 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
3987 if (Ptr == Offset)
3988 std::swap(BasePtr, Offset);
3989 if (Ptr != BasePtr)
Chris Lattner448f2192006-11-11 00:39:41 +00003990 continue;
Evan Chenga7d4a042007-05-03 23:52:19 +00003991 // Don't create a indexed load / store with zero offset.
3992 if (isa<ConstantSDNode>(Offset) &&
3993 cast<ConstantSDNode>(Offset)->getValue() == 0)
3994 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00003995
Chris Lattner9f1794e2006-11-11 00:56:29 +00003996 // Try turning it into a post-indexed load / store except when
3997 // 1) All uses are load / store ops that use it as base ptr.
3998 // 2) Op must be independent of N, i.e. Op is neither a predecessor
3999 // nor a successor of N. Otherwise, if Op is folded that would
4000 // create a cycle.
4001
4002 // Check for #1.
4003 bool TryNext = false;
4004 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
4005 EE = BasePtr.Val->use_end(); II != EE; ++II) {
4006 SDNode *Use = *II;
4007 if (Use == Ptr.Val)
Chris Lattner448f2192006-11-11 00:39:41 +00004008 continue;
4009
Chris Lattner9f1794e2006-11-11 00:56:29 +00004010 // If all the uses are load / store addresses, then don't do the
4011 // transformation.
4012 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
4013 bool RealUse = false;
4014 for (SDNode::use_iterator III = Use->use_begin(),
4015 EEE = Use->use_end(); III != EEE; ++III) {
4016 SDNode *UseUse = *III;
4017 if (!((UseUse->getOpcode() == ISD::LOAD &&
4018 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
4019 (UseUse->getOpcode() == ISD::STORE) &&
4020 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use))
4021 RealUse = true;
4022 }
Chris Lattner448f2192006-11-11 00:39:41 +00004023
Chris Lattner9f1794e2006-11-11 00:56:29 +00004024 if (!RealUse) {
4025 TryNext = true;
4026 break;
Chris Lattner448f2192006-11-11 00:39:41 +00004027 }
4028 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004029 }
4030 if (TryNext)
4031 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004032
Chris Lattner9f1794e2006-11-11 00:56:29 +00004033 // Check for #2
4034 if (!Op->isPredecessor(N) && !N->isPredecessor(Op)) {
4035 SDOperand Result = isLoad
4036 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4037 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4038 ++PostIndexedNodes;
4039 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004040 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004041 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4042 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00004043 std::vector<SDNode*> NowDead;
4044 if (isLoad) {
4045 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004046 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004047 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner01d029b2007-10-15 06:10:22 +00004048 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004049 } else {
4050 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner01d029b2007-10-15 06:10:22 +00004051 &NowDead);
Chris Lattner448f2192006-11-11 00:39:41 +00004052 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004053
4054 // Nodes can end up on the worklist more than once. Make sure we do
4055 // not process a node that has been replaced.
4056 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4057 removeFromWorkList(NowDead[i]);
4058 // Finally, since the node is now dead, remove it from the graph.
4059 DAG.DeleteNode(N);
4060
4061 // Replace the uses of Use with uses of the updated base value.
4062 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4063 Result.getValue(isLoad ? 1 : 0),
Chris Lattner01d029b2007-10-15 06:10:22 +00004064 &NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004065 removeFromWorkList(Op);
4066 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4067 removeFromWorkList(NowDead[i]);
4068 DAG.DeleteNode(Op);
4069
4070 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004071 }
4072 }
4073 }
4074 return false;
4075}
4076
4077
Chris Lattner01a22022005-10-10 22:04:48 +00004078SDOperand DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00004079 LoadSDNode *LD = cast<LoadSDNode>(N);
4080 SDOperand Chain = LD->getChain();
4081 SDOperand Ptr = LD->getBasePtr();
Evan Cheng45a7ca92007-05-01 00:38:21 +00004082
4083 // If load is not volatile and there are no uses of the loaded value (and
4084 // the updated indexed value in case of indexed loads), change uses of the
4085 // chain value into uses of the chain input (i.e. delete the dead load).
4086 if (!LD->isVolatile()) {
Evan Cheng498f5592007-05-01 08:53:39 +00004087 if (N->getValueType(1) == MVT::Other) {
4088 // Unindexed loads.
Evan Cheng02c42852008-01-16 23:11:54 +00004089 if (N->hasNUsesOfValue(0, 0)) {
4090 // It's not safe to use the two value CombineTo variant here. e.g.
4091 // v1, chain2 = load chain1, loc
4092 // v2, chain3 = load chain2, loc
4093 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00004094 // Now we replace use of chain2 with chain1. This makes the second load
4095 // isomorphic to the one we are deleting, and thus makes this load live.
Evan Cheng02c42852008-01-16 23:11:54 +00004096 std::vector<SDNode*> NowDead;
Evan Cheng02c42852008-01-16 23:11:54 +00004097 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
Chris Lattner125991a2008-01-24 07:57:06 +00004098 DOUT << "\nWith chain: "; DEBUG(Chain.Val->dump(&DAG));
4099 DOUT << "\n";
Evan Cheng02c42852008-01-16 23:11:54 +00004100 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Chain, &NowDead);
Evan Cheng02c42852008-01-16 23:11:54 +00004101 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4102 removeFromWorkList(NowDead[i]);
Chris Lattner125991a2008-01-24 07:57:06 +00004103 if (N->use_empty()) {
4104 removeFromWorkList(N);
4105 DAG.DeleteNode(N);
4106 }
Evan Cheng02c42852008-01-16 23:11:54 +00004107 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
4108 }
Evan Cheng498f5592007-05-01 08:53:39 +00004109 } else {
4110 // Indexed loads.
4111 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4112 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
Evan Cheng02c42852008-01-16 23:11:54 +00004113 std::vector<SDNode*> NowDead;
4114 SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4115 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4116 DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4117 DOUT << " and 2 other values\n";
4118 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &NowDead);
4119 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
Chris Lattner4626b252008-01-17 07:20:38 +00004120 DAG.getNode(ISD::UNDEF, N->getValueType(1)),
Evan Cheng02c42852008-01-16 23:11:54 +00004121 &NowDead);
4122 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 2), Chain, &NowDead);
4123 removeFromWorkList(N);
4124 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4125 removeFromWorkList(NowDead[i]);
4126 DAG.DeleteNode(N);
4127 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00004128 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00004129 }
4130 }
Chris Lattner01a22022005-10-10 22:04:48 +00004131
4132 // If this load is directly stored, replace the load value with the stored
4133 // value.
4134 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004135 // TODO: Handle TRUNCSTORE/LOADEXT
4136 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004137 if (ISD::isNON_TRUNCStore(Chain.Val)) {
4138 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4139 if (PrevST->getBasePtr() == Ptr &&
4140 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004141 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00004142 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004143 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00004144
Jim Laskey7ca56af2006-10-11 13:47:09 +00004145 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00004146 // Walk up chain skipping non-aliasing memory nodes.
4147 SDOperand BetterChain = FindBetterChain(N, Chain);
4148
Jim Laskey6ff23e52006-10-04 16:53:27 +00004149 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004150 if (Chain != BetterChain) {
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004151 SDOperand ReplLoad;
4152
Jim Laskey279f0532006-09-25 16:29:54 +00004153 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004154 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4155 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Duncan Sandsdc846502007-10-28 12:59:45 +00004156 LD->getSrcValue(), LD->getSrcValueOffset(),
4157 LD->isVolatile(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004158 } else {
4159 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4160 LD->getValueType(0),
4161 BetterChain, Ptr, LD->getSrcValue(),
4162 LD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004163 LD->getLoadedVT(),
4164 LD->isVolatile(),
4165 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004166 }
Jim Laskey279f0532006-09-25 16:29:54 +00004167
Jim Laskey6ff23e52006-10-04 16:53:27 +00004168 // Create token factor to keep old chain connected.
Jim Laskey288af5e2006-09-25 19:32:58 +00004169 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4170 Chain, ReplLoad.getValue(1));
Jim Laskey6ff23e52006-10-04 16:53:27 +00004171
Jim Laskey274062c2006-10-13 23:32:28 +00004172 // Replace uses with load result and token factor. Don't add users
4173 // to work list.
4174 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004175 }
4176 }
4177
Evan Cheng7fc033a2006-11-03 03:06:21 +00004178 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004179 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng7fc033a2006-11-03 03:06:21 +00004180 return SDOperand(N, 0);
4181
Chris Lattner01a22022005-10-10 22:04:48 +00004182 return SDOperand();
4183}
4184
Chris Lattner07649d92008-01-08 23:08:06 +00004185
Chris Lattner87514ca2005-10-10 22:31:19 +00004186SDOperand DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004187 StoreSDNode *ST = cast<StoreSDNode>(N);
4188 SDOperand Chain = ST->getChain();
4189 SDOperand Value = ST->getValue();
4190 SDOperand Ptr = ST->getBasePtr();
Jim Laskey7aed46c2006-10-11 18:55:16 +00004191
Evan Cheng59d5b682007-05-07 21:27:48 +00004192 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00004193 // resultant store does not need a higher alignment than the original.
Dale Johannesen98a6c622007-05-16 22:45:30 +00004194 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004195 ST->isUnindexed()) {
Evan Cheng59d5b682007-05-07 21:27:48 +00004196 unsigned Align = ST->getAlignment();
4197 MVT::ValueType SVT = Value.getOperand(0).getValueType();
4198 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00004199 getABITypeAlignment(MVT::getTypeForValueType(SVT));
Evan Chengc2cd2b22007-05-07 21:36:06 +00004200 if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
Evan Cheng59d5b682007-05-07 21:27:48 +00004201 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004202 ST->getSrcValueOffset(), ST->isVolatile(), Align);
Jim Laskey279f0532006-09-25 16:29:54 +00004203 }
4204
Nate Begeman2cbba892006-12-11 02:23:46 +00004205 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00004206 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Evan Cheng25ece662006-12-11 17:25:19 +00004207 if (Value.getOpcode() != ISD::TargetConstantFP) {
4208 SDOperand Tmp;
Chris Lattner62be1a72006-12-12 04:16:14 +00004209 switch (CFP->getValueType(0)) {
4210 default: assert(0 && "Unknown FP type");
Dale Johannesenc7b21d52007-09-18 18:36:59 +00004211 case MVT::f80: // We don't do this for these yet.
4212 case MVT::f128:
4213 case MVT::ppcf128:
4214 break;
Chris Lattner62be1a72006-12-12 04:16:14 +00004215 case MVT::f32:
4216 if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004217 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4218 convertToAPInt().getZExtValue(), MVT::i32);
Chris Lattner62be1a72006-12-12 04:16:14 +00004219 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004220 ST->getSrcValueOffset(), ST->isVolatile(),
4221 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004222 }
4223 break;
4224 case MVT::f64:
4225 if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004226 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4227 getZExtValue(), MVT::i64);
Chris Lattner62be1a72006-12-12 04:16:14 +00004228 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004229 ST->getSrcValueOffset(), ST->isVolatile(),
4230 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004231 } else if (TLI.isTypeLegal(MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00004232 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00004233 // argument passing. Since this is so common, custom legalize the
4234 // 64-bit integer store into two 32-bit stores.
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004235 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner62be1a72006-12-12 04:16:14 +00004236 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4237 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
4238 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
4239
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004240 int SVOffset = ST->getSrcValueOffset();
4241 unsigned Alignment = ST->getAlignment();
4242 bool isVolatile = ST->isVolatile();
4243
Chris Lattner62be1a72006-12-12 04:16:14 +00004244 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004245 ST->getSrcValueOffset(),
4246 isVolatile, ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004247 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4248 DAG.getConstant(4, Ptr.getValueType()));
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004249 SVOffset += 4;
Duncan Sandsdc846502007-10-28 12:59:45 +00004250 Alignment = MinAlign(Alignment, 4U);
Chris Lattner62be1a72006-12-12 04:16:14 +00004251 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004252 SVOffset, isVolatile, Alignment);
Chris Lattner62be1a72006-12-12 04:16:14 +00004253 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4254 }
4255 break;
Evan Cheng25ece662006-12-11 17:25:19 +00004256 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004257 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004258 }
4259
Jim Laskey279f0532006-09-25 16:29:54 +00004260 if (CombinerAA) {
4261 // Walk up chain skipping non-aliasing memory nodes.
4262 SDOperand BetterChain = FindBetterChain(N, Chain);
4263
Jim Laskey6ff23e52006-10-04 16:53:27 +00004264 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004265 if (Chain != BetterChain) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00004266 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004267 SDOperand ReplStore;
4268 if (ST->isTruncatingStore()) {
4269 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004270 ST->getSrcValue(),ST->getSrcValueOffset(),
4271 ST->getStoredVT(),
4272 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004273 } else {
4274 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004275 ST->getSrcValue(), ST->getSrcValueOffset(),
4276 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004277 }
4278
Jim Laskey279f0532006-09-25 16:29:54 +00004279 // Create token to keep both nodes around.
Jim Laskey274062c2006-10-13 23:32:28 +00004280 SDOperand Token =
4281 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4282
4283 // Don't add users to work list.
4284 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004285 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00004286 }
Chris Lattnerc33baaa2005-12-23 05:48:07 +00004287
Evan Cheng33dbedc2006-11-05 09:31:14 +00004288 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004289 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng33dbedc2006-11-05 09:31:14 +00004290 return SDOperand(N, 0);
4291
Chris Lattner3c872852007-12-29 06:26:16 +00004292 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00004293 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Chris Lattner2b4c2792007-10-13 06:35:54 +00004294 MVT::isInteger(Value.getValueType())) {
4295 // See if we can simplify the input to this truncstore with knowledge that
4296 // only the low bits are being used. For example:
4297 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4298 SDOperand Shorter =
4299 GetDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT()));
4300 AddToWorkList(Value.Val);
4301 if (Shorter.Val)
4302 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
4303 ST->getSrcValueOffset(), ST->getStoredVT(),
4304 ST->isVolatile(), ST->getAlignment());
Chris Lattnere33544c2007-10-13 06:58:48 +00004305
4306 // Otherwise, see if we can simplify the operation with
4307 // SimplifyDemandedBits, which only works if the value has a single use.
4308 if (SimplifyDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT())))
4309 return SDOperand(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00004310 }
4311
Chris Lattner3c872852007-12-29 06:26:16 +00004312 // If this is a load followed by a store to the same location, then the store
4313 // is dead/noop.
4314 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Chris Lattner07649d92008-01-08 23:08:06 +00004315 if (Ld->getBasePtr() == Ptr && ST->getStoredVT() == Ld->getLoadedVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004316 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00004317 // There can't be any side effects between the load and store, such as
4318 // a call or store.
Chris Lattner572dee72008-01-16 05:49:24 +00004319 Chain.reachesChainWithoutSideEffects(SDOperand(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00004320 // The store is dead, remove it.
4321 return Chain;
4322 }
4323 }
4324
Chris Lattnerddf89562008-01-17 19:59:44 +00004325 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
4326 // truncating store. We can do this even if this is already a truncstore.
4327 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
4328 && TLI.isTypeLegal(Value.getOperand(0).getValueType()) &&
4329 Value.Val->hasOneUse() && ST->isUnindexed() &&
4330 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
4331 ST->getStoredVT())) {
4332 return DAG.getTruncStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
4333 ST->getSrcValueOffset(), ST->getStoredVT(),
4334 ST->isVolatile(), ST->getAlignment());
4335 }
4336
Chris Lattner87514ca2005-10-10 22:31:19 +00004337 return SDOperand();
4338}
4339
Chris Lattnerca242442006-03-19 01:27:56 +00004340SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4341 SDOperand InVec = N->getOperand(0);
4342 SDOperand InVal = N->getOperand(1);
4343 SDOperand EltNo = N->getOperand(2);
4344
4345 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4346 // vector with the inserted element.
4347 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4348 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004349 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
Chris Lattnerca242442006-03-19 01:27:56 +00004350 if (Elt < Ops.size())
4351 Ops[Elt] = InVal;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004352 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4353 &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00004354 }
4355
4356 return SDOperand();
4357}
4358
Evan Cheng513da432007-10-06 08:19:55 +00004359SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
4360 SDOperand InVec = N->getOperand(0);
4361 SDOperand EltNo = N->getOperand(1);
4362
4363 // (vextract (v4f32 s2v (f32 load $addr)), 0) -> (f32 load $addr)
4364 // (vextract (v4i32 bc (v4f32 s2v (f32 load $addr))), 0) -> (i32 load $addr)
4365 if (isa<ConstantSDNode>(EltNo)) {
4366 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4367 bool NewLoad = false;
4368 if (Elt == 0) {
4369 MVT::ValueType VT = InVec.getValueType();
4370 MVT::ValueType EVT = MVT::getVectorElementType(VT);
4371 MVT::ValueType LVT = EVT;
4372 unsigned NumElts = MVT::getVectorNumElements(VT);
4373 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
4374 MVT::ValueType BCVT = InVec.getOperand(0).getValueType();
Dan Gohman090b38a2007-10-29 20:44:42 +00004375 if (!MVT::isVector(BCVT) ||
4376 NumElts != MVT::getVectorNumElements(BCVT))
Evan Cheng513da432007-10-06 08:19:55 +00004377 return SDOperand();
4378 InVec = InVec.getOperand(0);
4379 EVT = MVT::getVectorElementType(BCVT);
4380 NewLoad = true;
4381 }
4382 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4383 InVec.getOperand(0).getValueType() == EVT &&
4384 ISD::isNormalLoad(InVec.getOperand(0).Val) &&
4385 InVec.getOperand(0).hasOneUse()) {
4386 LoadSDNode *LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4387 unsigned Align = LN0->getAlignment();
4388 if (NewLoad) {
4389 // Check the resultant load doesn't need a higher alignment than the
4390 // original load.
4391 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
4392 getABITypeAlignment(MVT::getTypeForValueType(LVT));
4393 if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4394 return SDOperand();
4395 Align = NewAlign;
4396 }
4397
4398 return DAG.getLoad(LVT, LN0->getChain(), LN0->getBasePtr(),
4399 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4400 LN0->isVolatile(), Align);
4401 }
4402 }
4403 }
4404 return SDOperand();
4405}
4406
4407
Dan Gohman7f321562007-06-25 16:23:39 +00004408SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4409 unsigned NumInScalars = N->getNumOperands();
4410 MVT::ValueType VT = N->getValueType(0);
4411 unsigned NumElts = MVT::getVectorNumElements(VT);
4412 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattnerca242442006-03-19 01:27:56 +00004413
Dan Gohman7f321562007-06-25 16:23:39 +00004414 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4415 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4416 // at most two distinct vectors, turn this into a shuffle node.
Chris Lattnerd7648c82006-03-28 20:28:38 +00004417 SDOperand VecIn1, VecIn2;
4418 for (unsigned i = 0; i != NumInScalars; ++i) {
4419 // Ignore undef inputs.
4420 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4421
Dan Gohman7f321562007-06-25 16:23:39 +00004422 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00004423 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00004424 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00004425 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4426 VecIn1 = VecIn2 = SDOperand(0, 0);
4427 break;
4428 }
4429
Dan Gohman7f321562007-06-25 16:23:39 +00004430 // If the input vector type disagrees with the result of the build_vector,
Chris Lattnerd7648c82006-03-28 20:28:38 +00004431 // we can't make a shuffle.
4432 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004433 if (ExtractedFromVec.getValueType() != VT) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00004434 VecIn1 = VecIn2 = SDOperand(0, 0);
4435 break;
4436 }
4437
4438 // Otherwise, remember this. We allow up to two distinct input vectors.
4439 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4440 continue;
4441
4442 if (VecIn1.Val == 0) {
4443 VecIn1 = ExtractedFromVec;
4444 } else if (VecIn2.Val == 0) {
4445 VecIn2 = ExtractedFromVec;
4446 } else {
4447 // Too many inputs.
4448 VecIn1 = VecIn2 = SDOperand(0, 0);
4449 break;
4450 }
4451 }
4452
4453 // If everything is good, we can make a shuffle operation.
4454 if (VecIn1.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004455 SmallVector<SDOperand, 8> BuildVecIndices;
Chris Lattnerd7648c82006-03-28 20:28:38 +00004456 for (unsigned i = 0; i != NumInScalars; ++i) {
4457 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Evan Cheng597a3bd2007-01-20 10:10:26 +00004458 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004459 continue;
4460 }
4461
4462 SDOperand Extract = N->getOperand(i);
4463
4464 // If extracting from the first vector, just use the index directly.
4465 if (Extract.getOperand(0) == VecIn1) {
4466 BuildVecIndices.push_back(Extract.getOperand(1));
4467 continue;
4468 }
4469
4470 // Otherwise, use InIdx + VecSize
4471 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00004472 BuildVecIndices.push_back(DAG.getIntPtrConstant(Idx+NumInScalars));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004473 }
4474
4475 // Add count and size info.
Chris Lattner0bd48932008-01-17 07:00:52 +00004476 MVT::ValueType BuildVecVT = MVT::getVectorType(TLI.getPointerTy(), NumElts);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004477
Dan Gohman7f321562007-06-25 16:23:39 +00004478 // Return the new VECTOR_SHUFFLE node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004479 SDOperand Ops[5];
4480 Ops[0] = VecIn1;
Chris Lattnercef896e2006-03-28 22:19:47 +00004481 if (VecIn2.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004482 Ops[1] = VecIn2;
Chris Lattnercef896e2006-03-28 22:19:47 +00004483 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004484 // Use an undef build_vector as input for the second operand.
Chris Lattnercef896e2006-03-28 22:19:47 +00004485 std::vector<SDOperand> UnOps(NumInScalars,
4486 DAG.getNode(ISD::UNDEF,
Dan Gohman7f321562007-06-25 16:23:39 +00004487 EltType));
4488 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004489 &UnOps[0], UnOps.size());
4490 AddToWorkList(Ops[1].Val);
Chris Lattnercef896e2006-03-28 22:19:47 +00004491 }
Dan Gohman7f321562007-06-25 16:23:39 +00004492 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004493 &BuildVecIndices[0], BuildVecIndices.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004494 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004495 }
4496
4497 return SDOperand();
4498}
4499
Dan Gohman7f321562007-06-25 16:23:39 +00004500SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4501 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4502 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4503 // inputs come from at most two distinct vectors, turn this into a shuffle
4504 // node.
4505
4506 // If we only have one input vector, we don't need to do any concatenation.
4507 if (N->getNumOperands() == 1) {
4508 return N->getOperand(0);
4509 }
4510
4511 return SDOperand();
4512}
4513
Chris Lattner66445d32006-03-28 22:11:53 +00004514SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004515 SDOperand ShufMask = N->getOperand(2);
4516 unsigned NumElts = ShufMask.getNumOperands();
4517
4518 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4519 bool isIdentity = true;
4520 for (unsigned i = 0; i != NumElts; ++i) {
4521 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4522 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4523 isIdentity = false;
4524 break;
4525 }
4526 }
4527 if (isIdentity) return N->getOperand(0);
4528
4529 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4530 isIdentity = true;
4531 for (unsigned i = 0; i != NumElts; ++i) {
4532 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4533 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4534 isIdentity = false;
4535 break;
4536 }
4537 }
4538 if (isIdentity) return N->getOperand(1);
Evan Chenge7bec0d2006-07-20 22:44:41 +00004539
4540 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4541 // needed at all.
4542 bool isUnary = true;
Evan Cheng917ec982006-07-21 08:25:53 +00004543 bool isSplat = true;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004544 int VecNum = -1;
Reid Spencer9160a6a2006-07-25 20:44:41 +00004545 unsigned BaseIdx = 0;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004546 for (unsigned i = 0; i != NumElts; ++i)
4547 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4548 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4549 int V = (Idx < NumElts) ? 0 : 1;
Evan Cheng917ec982006-07-21 08:25:53 +00004550 if (VecNum == -1) {
Evan Chenge7bec0d2006-07-20 22:44:41 +00004551 VecNum = V;
Evan Cheng917ec982006-07-21 08:25:53 +00004552 BaseIdx = Idx;
4553 } else {
4554 if (BaseIdx != Idx)
4555 isSplat = false;
4556 if (VecNum != V) {
4557 isUnary = false;
4558 break;
4559 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00004560 }
4561 }
4562
4563 SDOperand N0 = N->getOperand(0);
4564 SDOperand N1 = N->getOperand(1);
4565 // Normalize unary shuffle so the RHS is undef.
4566 if (isUnary && VecNum == 1)
4567 std::swap(N0, N1);
4568
Evan Cheng917ec982006-07-21 08:25:53 +00004569 // If it is a splat, check if the argument vector is a build_vector with
4570 // all scalar elements the same.
4571 if (isSplat) {
4572 SDNode *V = N0.Val;
Evan Cheng917ec982006-07-21 08:25:53 +00004573
Dan Gohman7f321562007-06-25 16:23:39 +00004574 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00004575 // not the number of vector elements, look through it. Be careful not to
4576 // look though conversions that change things like v4f32 to v2f64.
Dan Gohman7f321562007-06-25 16:23:39 +00004577 if (V->getOpcode() == ISD::BIT_CONVERT) {
Evan Cheng59569222006-10-16 22:49:37 +00004578 SDOperand ConvInput = V->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004579 if (MVT::getVectorNumElements(ConvInput.getValueType()) == NumElts)
Evan Cheng59569222006-10-16 22:49:37 +00004580 V = ConvInput.Val;
4581 }
4582
Dan Gohman7f321562007-06-25 16:23:39 +00004583 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4584 unsigned NumElems = V->getNumOperands();
Evan Cheng917ec982006-07-21 08:25:53 +00004585 if (NumElems > BaseIdx) {
4586 SDOperand Base;
4587 bool AllSame = true;
4588 for (unsigned i = 0; i != NumElems; ++i) {
4589 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4590 Base = V->getOperand(i);
4591 break;
4592 }
4593 }
4594 // Splat of <u, u, u, u>, return <u, u, u, u>
4595 if (!Base.Val)
4596 return N0;
4597 for (unsigned i = 0; i != NumElems; ++i) {
Evan Chenge0480d22007-09-18 21:54:37 +00004598 if (V->getOperand(i) != Base) {
Evan Cheng917ec982006-07-21 08:25:53 +00004599 AllSame = false;
4600 break;
4601 }
4602 }
4603 // Splat of <x, x, x, x>, return <x, x, x, x>
4604 if (AllSame)
4605 return N0;
4606 }
4607 }
4608 }
4609
Evan Chenge7bec0d2006-07-20 22:44:41 +00004610 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4611 // into an undef.
4612 if (isUnary || N0 == N1) {
Chris Lattner17614ea2006-04-08 05:34:25 +00004613 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4614 // first operand.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004615 SmallVector<SDOperand, 8> MappedOps;
Chris Lattner17614ea2006-04-08 05:34:25 +00004616 for (unsigned i = 0; i != NumElts; ++i) {
4617 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4618 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4619 MappedOps.push_back(ShufMask.getOperand(i));
4620 } else {
4621 unsigned NewIdx =
4622 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4623 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4624 }
4625 }
Dan Gohman7f321562007-06-25 16:23:39 +00004626 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004627 &MappedOps[0], MappedOps.size());
Chris Lattner17614ea2006-04-08 05:34:25 +00004628 AddToWorkList(ShufMask.Val);
Dan Gohman7f321562007-06-25 16:23:39 +00004629 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4630 N0,
4631 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4632 ShufMask);
Chris Lattner17614ea2006-04-08 05:34:25 +00004633 }
Dan Gohman7f321562007-06-25 16:23:39 +00004634
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004635 return SDOperand();
4636}
4637
Evan Cheng44f1f092006-04-20 08:56:16 +00004638/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00004639/// an AND to a vector_shuffle with the destination vector and a zero vector.
4640/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00004641/// vector_shuffle V, Zero, <0, 4, 2, 4>
4642SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4643 SDOperand LHS = N->getOperand(0);
4644 SDOperand RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00004645 if (N->getOpcode() == ISD::AND) {
4646 if (RHS.getOpcode() == ISD::BIT_CONVERT)
Evan Cheng44f1f092006-04-20 08:56:16 +00004647 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004648 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Evan Cheng44f1f092006-04-20 08:56:16 +00004649 std::vector<SDOperand> IdxOps;
4650 unsigned NumOps = RHS.getNumOperands();
Dan Gohman7f321562007-06-25 16:23:39 +00004651 unsigned NumElts = NumOps;
4652 MVT::ValueType EVT = MVT::getVectorElementType(RHS.getValueType());
Evan Cheng44f1f092006-04-20 08:56:16 +00004653 for (unsigned i = 0; i != NumElts; ++i) {
4654 SDOperand Elt = RHS.getOperand(i);
4655 if (!isa<ConstantSDNode>(Elt))
4656 return SDOperand();
4657 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
4658 IdxOps.push_back(DAG.getConstant(i, EVT));
4659 else if (cast<ConstantSDNode>(Elt)->isNullValue())
4660 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
4661 else
4662 return SDOperand();
4663 }
4664
4665 // Let's see if the target supports this vector_shuffle.
4666 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
4667 return SDOperand();
4668
Dan Gohman7f321562007-06-25 16:23:39 +00004669 // Return the new VECTOR_SHUFFLE node.
4670 MVT::ValueType VT = MVT::getVectorType(EVT, NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00004671 std::vector<SDOperand> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004672 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
Evan Cheng44f1f092006-04-20 08:56:16 +00004673 Ops.push_back(LHS);
4674 AddToWorkList(LHS.Val);
4675 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
Dan Gohman7f321562007-06-25 16:23:39 +00004676 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004677 &ZeroOps[0], ZeroOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004678 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004679 &IdxOps[0], IdxOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004680 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004681 &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004682 if (VT != LHS.getValueType()) {
4683 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
Evan Cheng44f1f092006-04-20 08:56:16 +00004684 }
4685 return Result;
4686 }
4687 }
4688 return SDOperand();
4689}
4690
Dan Gohman7f321562007-06-25 16:23:39 +00004691/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
4692SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
4693 // After legalize, the target may be depending on adds and other
4694 // binary ops to provide legal ways to construct constants or other
4695 // things. Simplifying them may result in a loss of legality.
4696 if (AfterLegalize) return SDOperand();
4697
4698 MVT::ValueType VT = N->getValueType(0);
Dan Gohman05d92fe2007-07-13 20:03:40 +00004699 assert(MVT::isVector(VT) && "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00004700
4701 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattneredab1b92006-04-02 03:25:57 +00004702 SDOperand LHS = N->getOperand(0);
4703 SDOperand RHS = N->getOperand(1);
Evan Cheng44f1f092006-04-20 08:56:16 +00004704 SDOperand Shuffle = XformToShuffleWithZero(N);
4705 if (Shuffle.Val) return Shuffle;
4706
Dan Gohman7f321562007-06-25 16:23:39 +00004707 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00004708 // this operation.
Dan Gohman7f321562007-06-25 16:23:39 +00004709 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
4710 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004711 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004712 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Chris Lattneredab1b92006-04-02 03:25:57 +00004713 SDOperand LHSOp = LHS.getOperand(i);
4714 SDOperand RHSOp = RHS.getOperand(i);
4715 // If these two elements can't be folded, bail out.
4716 if ((LHSOp.getOpcode() != ISD::UNDEF &&
4717 LHSOp.getOpcode() != ISD::Constant &&
4718 LHSOp.getOpcode() != ISD::ConstantFP) ||
4719 (RHSOp.getOpcode() != ISD::UNDEF &&
4720 RHSOp.getOpcode() != ISD::Constant &&
4721 RHSOp.getOpcode() != ISD::ConstantFP))
4722 break;
Evan Cheng7b336a82006-05-31 06:08:35 +00004723 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00004724 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
4725 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00004726 if ((RHSOp.getOpcode() == ISD::Constant &&
4727 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
4728 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00004729 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00004730 break;
4731 }
Dan Gohman7f321562007-06-25 16:23:39 +00004732 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
Chris Lattner3e104b12006-04-08 04:15:24 +00004733 AddToWorkList(Ops.back().Val);
Chris Lattneredab1b92006-04-02 03:25:57 +00004734 assert((Ops.back().getOpcode() == ISD::UNDEF ||
4735 Ops.back().getOpcode() == ISD::Constant ||
4736 Ops.back().getOpcode() == ISD::ConstantFP) &&
4737 "Scalar binop didn't fold!");
4738 }
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004739
Dan Gohman7f321562007-06-25 16:23:39 +00004740 if (Ops.size() == LHS.getNumOperands()) {
4741 MVT::ValueType VT = LHS.getValueType();
4742 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004743 }
Chris Lattneredab1b92006-04-02 03:25:57 +00004744 }
4745
4746 return SDOperand();
4747}
4748
Nate Begeman44728a72005-09-19 22:34:01 +00004749SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00004750 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
4751
4752 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
4753 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4754 // If we got a simplified select_cc node back from SimplifySelectCC, then
4755 // break it down into a new SETCC node, and a new SELECT node, and then return
4756 // the SELECT node, since we were called with a SELECT node.
4757 if (SCC.Val) {
4758 // Check to see if we got a select_cc back (to turn into setcc/select).
4759 // Otherwise, just return whatever node we got back, like fabs.
4760 if (SCC.getOpcode() == ISD::SELECT_CC) {
4761 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
4762 SCC.getOperand(0), SCC.getOperand(1),
4763 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00004764 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004765 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
4766 SCC.getOperand(3), SETCC);
4767 }
4768 return SCC;
4769 }
Nate Begeman44728a72005-09-19 22:34:01 +00004770 return SDOperand();
4771}
4772
Chris Lattner40c62d52005-10-18 06:04:22 +00004773/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
4774/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00004775/// select. Callers of this should assume that TheSelect is deleted if this
4776/// returns true. As such, they should return the appropriate thing (e.g. the
4777/// node) back to the top-level of the DAG combiner loop to avoid it being
4778/// looked at.
Chris Lattner40c62d52005-10-18 06:04:22 +00004779///
4780bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
4781 SDOperand RHS) {
4782
4783 // If this is a select from two identical things, try to pull the operation
4784 // through the select.
4785 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
Chris Lattner40c62d52005-10-18 06:04:22 +00004786 // If this is a load and the token chain is identical, replace the select
4787 // of two loads with a load through a select of the address to load from.
4788 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
4789 // constants have been dropped into the constant pool.
Evan Cheng466685d2006-10-09 20:57:25 +00004790 if (LHS.getOpcode() == ISD::LOAD &&
Chris Lattner40c62d52005-10-18 06:04:22 +00004791 // Token chains must be identical.
Evan Cheng466685d2006-10-09 20:57:25 +00004792 LHS.getOperand(0) == RHS.getOperand(0)) {
4793 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
4794 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
4795
4796 // If this is an EXTLOAD, the VT's must match.
Evan Cheng2e49f092006-10-11 07:10:22 +00004797 if (LLD->getLoadedVT() == RLD->getLoadedVT()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004798 // FIXME: this conflates two src values, discarding one. This is not
4799 // the right thing to do, but nothing uses srcvalues now. When they do,
4800 // turn SrcValue into a list of locations.
4801 SDOperand Addr;
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004802 if (TheSelect->getOpcode() == ISD::SELECT) {
4803 // Check that the condition doesn't reach either load. If so, folding
4804 // this will induce a cycle into the DAG.
4805 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4806 !RLD->isPredecessor(TheSelect->getOperand(0).Val)) {
4807 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
4808 TheSelect->getOperand(0), LLD->getBasePtr(),
4809 RLD->getBasePtr());
4810 }
4811 } else {
4812 // Check that the condition doesn't reach either load. If so, folding
4813 // this will induce a cycle into the DAG.
4814 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4815 !RLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4816 !LLD->isPredecessor(TheSelect->getOperand(1).Val) &&
4817 !RLD->isPredecessor(TheSelect->getOperand(1).Val)) {
4818 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
Evan Cheng466685d2006-10-09 20:57:25 +00004819 TheSelect->getOperand(0),
4820 TheSelect->getOperand(1),
4821 LLD->getBasePtr(), RLD->getBasePtr(),
4822 TheSelect->getOperand(4));
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004823 }
Evan Cheng466685d2006-10-09 20:57:25 +00004824 }
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004825
4826 if (Addr.Val) {
4827 SDOperand Load;
4828 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
4829 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
4830 Addr,LLD->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004831 LLD->getSrcValueOffset(),
4832 LLD->isVolatile(),
4833 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004834 else {
4835 Load = DAG.getExtLoad(LLD->getExtensionType(),
4836 TheSelect->getValueType(0),
4837 LLD->getChain(), Addr, LLD->getSrcValue(),
4838 LLD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004839 LLD->getLoadedVT(),
4840 LLD->isVolatile(),
4841 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004842 }
4843 // Users of the select now use the result of the load.
4844 CombineTo(TheSelect, Load);
4845
4846 // Users of the old loads now use the new load's chain. We know the
4847 // old-load value is dead now.
4848 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
4849 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
4850 return true;
4851 }
Evan Chengc5484282006-10-04 00:56:09 +00004852 }
Chris Lattner40c62d52005-10-18 06:04:22 +00004853 }
4854 }
4855
4856 return false;
4857}
4858
Nate Begeman44728a72005-09-19 22:34:01 +00004859SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
4860 SDOperand N2, SDOperand N3,
Chris Lattner1eba01e2007-04-11 06:50:51 +00004861 ISD::CondCode CC, bool NotExtCompare) {
Nate Begemanf845b452005-10-08 00:29:44 +00004862
4863 MVT::ValueType VT = N2.getValueType();
Nate Begemanf845b452005-10-08 00:29:44 +00004864 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
4865 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
4866 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
4867
4868 // Determine if the condition we're dealing with is constant
4869 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00004870 if (SCC.Val) AddToWorkList(SCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004871 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
4872
4873 // fold select_cc true, x, y -> x
4874 if (SCCC && SCCC->getValue())
4875 return N2;
4876 // fold select_cc false, x, y -> y
4877 if (SCCC && SCCC->getValue() == 0)
4878 return N3;
4879
4880 // Check to see if we can simplify the select into an fabs node
4881 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
4882 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00004883 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00004884 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
4885 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
4886 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
4887 N2 == N3.getOperand(0))
4888 return DAG.getNode(ISD::FABS, VT, N0);
4889
4890 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
4891 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
4892 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
4893 N2.getOperand(0) == N3)
4894 return DAG.getNode(ISD::FABS, VT, N3);
4895 }
4896 }
4897
4898 // Check to see if we can perform the "gzip trick", transforming
4899 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
Chris Lattnere3152e52006-09-20 06:41:35 +00004900 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Nate Begemanf845b452005-10-08 00:29:44 +00004901 MVT::isInteger(N0.getValueType()) &&
Chris Lattnere3152e52006-09-20 06:41:35 +00004902 MVT::isInteger(N2.getValueType()) &&
4903 (N1C->isNullValue() || // (a < 0) ? b : 0
4904 (N1C->getValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Nate Begemanf845b452005-10-08 00:29:44 +00004905 MVT::ValueType XType = N0.getValueType();
4906 MVT::ValueType AType = N2.getValueType();
4907 if (XType >= AType) {
4908 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00004909 // single-bit constant.
Nate Begemanf845b452005-10-08 00:29:44 +00004910 if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
4911 unsigned ShCtV = Log2_64(N2C->getValue());
4912 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
4913 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
4914 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00004915 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004916 if (XType > AType) {
4917 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004918 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004919 }
4920 return DAG.getNode(ISD::AND, AType, Shift, N2);
4921 }
4922 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4923 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4924 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00004925 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004926 if (XType > AType) {
4927 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004928 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004929 }
4930 return DAG.getNode(ISD::AND, AType, Shift, N2);
4931 }
4932 }
Nate Begeman07ed4172005-10-10 21:26:48 +00004933
4934 // fold select C, 16, 0 -> shl C, 4
4935 if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
4936 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
Chris Lattner1eba01e2007-04-11 06:50:51 +00004937
4938 // If the caller doesn't want us to simplify this into a zext of a compare,
4939 // don't do it.
4940 if (NotExtCompare && N2C->getValue() == 1)
4941 return SDOperand();
4942
Nate Begeman07ed4172005-10-10 21:26:48 +00004943 // Get a SetCC of the condition
4944 // FIXME: Should probably make sure that setcc is legal if we ever have a
4945 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00004946 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00004947 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00004948 if (AfterLegalize) {
4949 SCC = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
Chris Lattner555d8d62006-12-07 22:36:47 +00004950 if (N2.getValueType() < SCC.getValueType())
4951 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
4952 else
4953 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004954 } else {
4955 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00004956 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004957 }
Chris Lattner5750df92006-03-01 04:03:14 +00004958 AddToWorkList(SCC.Val);
4959 AddToWorkList(Temp.Val);
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004960
4961 if (N2C->getValue() == 1)
4962 return Temp;
Nate Begeman07ed4172005-10-10 21:26:48 +00004963 // shl setcc result by log2 n2c
4964 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
4965 DAG.getConstant(Log2_64(N2C->getValue()),
4966 TLI.getShiftAmountTy()));
4967 }
4968
Nate Begemanf845b452005-10-08 00:29:44 +00004969 // Check to see if this is the equivalent of setcc
4970 // FIXME: Turn all of these into setcc if setcc if setcc is legal
4971 // otherwise, go ahead with the folds.
4972 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
4973 MVT::ValueType XType = N0.getValueType();
4974 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
4975 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
4976 if (Res.getValueType() != VT)
4977 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
4978 return Res;
4979 }
4980
4981 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
4982 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
4983 TLI.isOperationLegal(ISD::CTLZ, XType)) {
4984 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
4985 return DAG.getNode(ISD::SRL, XType, Ctlz,
4986 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
4987 TLI.getShiftAmountTy()));
4988 }
4989 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
4990 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
4991 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
4992 N0);
4993 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
4994 DAG.getConstant(~0ULL, XType));
4995 return DAG.getNode(ISD::SRL, XType,
4996 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
4997 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4998 TLI.getShiftAmountTy()));
4999 }
5000 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
5001 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
5002 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
5003 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5004 TLI.getShiftAmountTy()));
5005 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
5006 }
5007 }
5008
5009 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
5010 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5011 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
Chris Lattner1982ef22007-04-11 05:11:38 +00005012 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
5013 N2.getOperand(0) == N1 && MVT::isInteger(N0.getValueType())) {
5014 MVT::ValueType XType = N0.getValueType();
5015 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5016 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5017 TLI.getShiftAmountTy()));
5018 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5019 AddToWorkList(Shift.Val);
5020 AddToWorkList(Add.Val);
5021 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5022 }
5023 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
5024 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5025 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
5026 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
5027 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Nate Begemanf845b452005-10-08 00:29:44 +00005028 MVT::ValueType XType = N0.getValueType();
5029 if (SubC->isNullValue() && MVT::isInteger(XType)) {
5030 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5031 DAG.getConstant(MVT::getSizeInBits(XType)-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00005032 TLI.getShiftAmountTy()));
Nate Begemanf845b452005-10-08 00:29:44 +00005033 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005034 AddToWorkList(Shift.Val);
5035 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005036 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5037 }
5038 }
5039 }
Chris Lattner1982ef22007-04-11 05:11:38 +00005040
Nate Begeman44728a72005-09-19 22:34:01 +00005041 return SDOperand();
5042}
5043
Evan Chengfa1eb272007-02-08 22:13:59 +00005044/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Nate Begeman452d7be2005-09-16 00:54:12 +00005045SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00005046 SDOperand N1, ISD::CondCode Cond,
5047 bool foldBooleans) {
Evan Chengfa1eb272007-02-08 22:13:59 +00005048 TargetLowering::DAGCombinerInfo
5049 DagCombineInfo(DAG, !AfterLegalize, false, this);
5050 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
Nate Begeman452d7be2005-09-16 00:54:12 +00005051}
5052
Nate Begeman69575232005-10-20 02:15:44 +00005053/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
5054/// return a DAG expression to select that will generate the same value by
5055/// multiplying by a magic number. See:
5056/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5057SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005058 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005059 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
5060
Andrew Lenharth232c9102006-06-12 16:07:18 +00005061 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005062 ii != ee; ++ii)
5063 AddToWorkList(*ii);
5064 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005065}
5066
5067/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
5068/// return a DAG expression to select that will generate the same value by
5069/// multiplying by a magic number. See:
5070/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5071SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005072 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005073 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00005074
Andrew Lenharth232c9102006-06-12 16:07:18 +00005075 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005076 ii != ee; ++ii)
5077 AddToWorkList(*ii);
5078 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005079}
5080
Jim Laskey71382342006-10-07 23:37:56 +00005081/// FindBaseOffset - Return true if base is known not to alias with anything
5082/// but itself. Provides base object and offset as results.
5083static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5084 // Assume it is a primitive operation.
5085 Base = Ptr; Offset = 0;
5086
5087 // If it's an adding a simple constant then integrate the offset.
5088 if (Base.getOpcode() == ISD::ADD) {
5089 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5090 Base = Base.getOperand(0);
5091 Offset += C->getValue();
5092 }
5093 }
5094
5095 // If it's any of the following then it can't alias with anything but itself.
5096 return isa<FrameIndexSDNode>(Base) ||
5097 isa<ConstantPoolSDNode>(Base) ||
5098 isa<GlobalAddressSDNode>(Base);
5099}
5100
5101/// isAlias - Return true if there is any possibility that the two addresses
5102/// overlap.
Jim Laskey096c22e2006-10-18 12:29:57 +00005103bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5104 const Value *SrcValue1, int SrcValueOffset1,
5105 SDOperand Ptr2, int64_t Size2,
5106 const Value *SrcValue2, int SrcValueOffset2)
5107{
Jim Laskey71382342006-10-07 23:37:56 +00005108 // If they are the same then they must be aliases.
5109 if (Ptr1 == Ptr2) return true;
5110
5111 // Gather base node and offset information.
5112 SDOperand Base1, Base2;
5113 int64_t Offset1, Offset2;
5114 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5115 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5116
5117 // If they have a same base address then...
5118 if (Base1 == Base2) {
5119 // Check to see if the addresses overlap.
5120 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5121 }
5122
Jim Laskey096c22e2006-10-18 12:29:57 +00005123 // If we know both bases then they can't alias.
5124 if (KnownBase1 && KnownBase2) return false;
5125
Jim Laskey07a27092006-10-18 19:08:31 +00005126 if (CombinerGlobalAA) {
5127 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00005128 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5129 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5130 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Jim Laskey07a27092006-10-18 19:08:31 +00005131 AliasAnalysis::AliasResult AAResult =
Jim Laskey096c22e2006-10-18 12:29:57 +00005132 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
Jim Laskey07a27092006-10-18 19:08:31 +00005133 if (AAResult == AliasAnalysis::NoAlias)
5134 return false;
5135 }
Jim Laskey096c22e2006-10-18 12:29:57 +00005136
5137 // Otherwise we have to assume they alias.
5138 return true;
Jim Laskey71382342006-10-07 23:37:56 +00005139}
5140
5141/// FindAliasInfo - Extracts the relevant alias information from the memory
5142/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00005143bool DAGCombiner::FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +00005144 SDOperand &Ptr, int64_t &Size,
5145 const Value *&SrcValue, int &SrcValueOffset) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005146 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5147 Ptr = LD->getBasePtr();
Jim Laskeyc2b19f32006-10-11 17:47:52 +00005148 Size = MVT::getSizeInBits(LD->getLoadedVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005149 SrcValue = LD->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005150 SrcValueOffset = LD->getSrcValueOffset();
Jim Laskey71382342006-10-07 23:37:56 +00005151 return true;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005152 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005153 Ptr = ST->getBasePtr();
Evan Cheng8b2794a2006-10-13 21:14:26 +00005154 Size = MVT::getSizeInBits(ST->getStoredVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005155 SrcValue = ST->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005156 SrcValueOffset = ST->getSrcValueOffset();
Jim Laskey7ca56af2006-10-11 13:47:09 +00005157 } else {
Jim Laskey71382342006-10-07 23:37:56 +00005158 assert(0 && "FindAliasInfo expected a memory operand");
Jim Laskey71382342006-10-07 23:37:56 +00005159 }
5160
5161 return false;
5162}
5163
Jim Laskey6ff23e52006-10-04 16:53:27 +00005164/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5165/// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +00005166void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +00005167 SmallVector<SDOperand, 8> &Aliases) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005168 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
Jim Laskey6ff23e52006-10-04 16:53:27 +00005169 std::set<SDNode *> Visited; // Visited node set.
5170
Jim Laskey279f0532006-09-25 16:29:54 +00005171 // Get alias information for node.
5172 SDOperand Ptr;
5173 int64_t Size;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005174 const Value *SrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005175 int SrcValueOffset;
5176 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
Jim Laskey279f0532006-09-25 16:29:54 +00005177
Jim Laskey6ff23e52006-10-04 16:53:27 +00005178 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00005179 Chains.push_back(OriginalChain);
Jim Laskey6ff23e52006-10-04 16:53:27 +00005180
Jim Laskeybc588b82006-10-05 15:07:25 +00005181 // Look at each chain and determine if it is an alias. If so, add it to the
5182 // aliases list. If not, then continue up the chain looking for the next
5183 // candidate.
5184 while (!Chains.empty()) {
5185 SDOperand Chain = Chains.back();
5186 Chains.pop_back();
Jim Laskey6ff23e52006-10-04 16:53:27 +00005187
Jim Laskeybc588b82006-10-05 15:07:25 +00005188 // Don't bother if we've been before.
5189 if (Visited.find(Chain.Val) != Visited.end()) continue;
5190 Visited.insert(Chain.Val);
5191
5192 switch (Chain.getOpcode()) {
5193 case ISD::EntryToken:
5194 // Entry token is ideal chain operand, but handled in FindBetterChain.
5195 break;
Jim Laskey6ff23e52006-10-04 16:53:27 +00005196
Jim Laskeybc588b82006-10-05 15:07:25 +00005197 case ISD::LOAD:
5198 case ISD::STORE: {
5199 // Get alias information for Chain.
5200 SDOperand OpPtr;
5201 int64_t OpSize;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005202 const Value *OpSrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005203 int OpSrcValueOffset;
5204 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5205 OpSrcValue, OpSrcValueOffset);
Jim Laskeybc588b82006-10-05 15:07:25 +00005206
5207 // If chain is alias then stop here.
5208 if (!(IsLoad && IsOpLoad) &&
Jim Laskey096c22e2006-10-18 12:29:57 +00005209 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5210 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005211 Aliases.push_back(Chain);
5212 } else {
5213 // Look further up the chain.
5214 Chains.push_back(Chain.getOperand(0));
5215 // Clean up old chain.
5216 AddToWorkList(Chain.Val);
Jim Laskey279f0532006-09-25 16:29:54 +00005217 }
Jim Laskeybc588b82006-10-05 15:07:25 +00005218 break;
5219 }
5220
5221 case ISD::TokenFactor:
5222 // We have to check each of the operands of the token factor, so we queue
5223 // then up. Adding the operands to the queue (stack) in reverse order
5224 // maintains the original order and increases the likelihood that getNode
5225 // will find a matching token factor (CSE.)
5226 for (unsigned n = Chain.getNumOperands(); n;)
5227 Chains.push_back(Chain.getOperand(--n));
5228 // Eliminate the token factor if we can.
5229 AddToWorkList(Chain.Val);
5230 break;
5231
5232 default:
5233 // For all other instructions we will just have to take what we can get.
5234 Aliases.push_back(Chain);
5235 break;
Jim Laskey279f0532006-09-25 16:29:54 +00005236 }
5237 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00005238}
5239
5240/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5241/// for a better chain (aliasing node.)
5242SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5243 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00005244
Jim Laskey6ff23e52006-10-04 16:53:27 +00005245 // Accumulate all the aliases to this node.
5246 GatherAllAliases(N, OldChain, Aliases);
5247
5248 if (Aliases.size() == 0) {
5249 // If no operands then chain to entry token.
5250 return DAG.getEntryNode();
5251 } else if (Aliases.size() == 1) {
5252 // If a single operand then chain to it. We don't need to revisit it.
5253 return Aliases[0];
5254 }
5255
5256 // Construct a custom tailored token factor.
5257 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5258 &Aliases[0], Aliases.size());
5259
5260 // Make sure the old chain gets cleaned up.
5261 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5262
5263 return NewChain;
Jim Laskey279f0532006-09-25 16:29:54 +00005264}
5265
Nate Begeman1d4d4142005-09-01 00:19:25 +00005266// SelectionDAG::Combine - This is the entry point for the file.
5267//
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005268void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
Chris Lattner938ab022007-01-16 04:55:25 +00005269 if (!RunningAfterLegalize && ViewDAGCombine1)
5270 viewGraph();
5271 if (RunningAfterLegalize && ViewDAGCombine2)
5272 viewGraph();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005273 /// run - This is the main entry point to this class.
5274 ///
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005275 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005276}