blob: 4d813a0cb4d5780fefee4fd7d8ef2bec8b6c6a7a [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//
5// This file was developed by Nate Begeman and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
12//
13// FIXME: Missing folds
14// sdiv, udiv, srem, urem (X, const) where X is an integer can be expanded into
15// a sequence of multiplies, shifts, and adds. This should be controlled by
16// some kind of hint from the target that int div is expensive.
17// various folds of mulh[s,u] by constants such as -1, powers of 2, etc.
18//
Nate Begeman44728a72005-09-19 22:34:01 +000019// FIXME: select C, pow2, pow2 -> something smart
20// FIXME: trunc(select X, Y, Z) -> select X, trunc(Y), trunc(Z)
Nate Begeman44728a72005-09-19 22:34:01 +000021// FIXME: Dead stores -> nuke
Chris Lattner40c62d52005-10-18 06:04:22 +000022// FIXME: shr X, (and Y,31) -> shr X, Y (TRICKY!)
Nate Begeman1d4d4142005-09-01 00:19:25 +000023// FIXME: mul (x, const) -> shifts + adds
Nate Begeman1d4d4142005-09-01 00:19:25 +000024// FIXME: undef values
Nate Begeman646d7e22005-09-02 21:18:40 +000025// FIXME: divide by zero is currently left unfolded. do we want to turn this
26// into an undef?
Nate Begemanf845b452005-10-08 00:29:44 +000027// FIXME: select ne (select cc, 1, 0), 0, true, false -> select cc, true, false
Nate Begeman1d4d4142005-09-01 00:19:25 +000028//
29//===----------------------------------------------------------------------===//
30
31#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000032#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000034#include "llvm/Target/TargetData.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000035#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000036#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000037#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000038#include "llvm/ADT/SmallPtrSet.h"
39#include "llvm/ADT/Statistic.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000040#include "llvm/Support/Compiler.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000041#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000042#include "llvm/Support/Debug.h"
43#include "llvm/Support/MathExtras.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000044#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000045using namespace llvm;
46
Chris Lattnercd3245a2006-12-19 22:41:21 +000047STATISTIC(NodesCombined , "Number of dag nodes combined");
48STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
49STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
50
Nate Begeman1d4d4142005-09-01 00:19:25 +000051namespace {
Chris Lattner938ab022007-01-16 04:55:25 +000052#ifndef NDEBUG
53 static cl::opt<bool>
54 ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
55 cl::desc("Pop up a window to show dags before the first "
56 "dag combine pass"));
57 static cl::opt<bool>
58 ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
59 cl::desc("Pop up a window to show dags before the second "
60 "dag combine pass"));
61#else
62 static const bool ViewDAGCombine1 = false;
63 static const bool ViewDAGCombine2 = false;
64#endif
65
Jim Laskey71382342006-10-07 23:37:56 +000066 static cl::opt<bool>
67 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000068 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000069
Jim Laskey07a27092006-10-18 19:08:31 +000070 static cl::opt<bool>
71 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
72 cl::desc("Include global information in alias analysis"));
73
Jim Laskeybc588b82006-10-05 15:07:25 +000074//------------------------------ DAGCombiner ---------------------------------//
75
Jim Laskey71382342006-10-07 23:37:56 +000076 class VISIBILITY_HIDDEN DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000077 SelectionDAG &DAG;
78 TargetLowering &TLI;
Nate Begeman4ebd8052005-09-01 23:24:04 +000079 bool AfterLegalize;
Nate Begeman1d4d4142005-09-01 00:19:25 +000080
81 // Worklist of all of the nodes that need to be simplified.
82 std::vector<SDNode*> WorkList;
83
Jim Laskeyc7c3f112006-10-16 20:52:31 +000084 // AA - Used for DAG load/store alias analysis.
85 AliasAnalysis &AA;
86
Nate Begeman1d4d4142005-09-01 00:19:25 +000087 /// AddUsersToWorkList - When an instruction is simplified, add all users of
88 /// the instruction to the work lists because they might get more simplified
89 /// now.
90 ///
91 void AddUsersToWorkList(SDNode *N) {
92 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000093 UI != UE; ++UI)
Jim Laskey6ff23e52006-10-04 16:53:27 +000094 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000095 }
96
97 /// removeFromWorkList - remove all instances of N from the worklist.
Chris Lattner5750df92006-03-01 04:03:14 +000098 ///
Nate Begeman1d4d4142005-09-01 00:19:25 +000099 void removeFromWorkList(SDNode *N) {
100 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
101 WorkList.end());
102 }
103
Dan Gohman389079b2007-10-08 17:57:15 +0000104 /// visit - call the node-specific routine that knows how to fold each
105 /// particular type of node.
106 SDOperand visit(SDNode *N);
107
Chris Lattner24664722006-03-01 04:53:38 +0000108 public:
Jim Laskey6ff23e52006-10-04 16:53:27 +0000109 /// AddToWorkList - Add to the work list making sure it's instance is at the
110 /// the back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000111 void AddToWorkList(SDNode *N) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000112 removeFromWorkList(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000113 WorkList.push_back(N);
114 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000115
Jim Laskey274062c2006-10-13 23:32:28 +0000116 SDOperand CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
117 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000118 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
Chris Lattner87514ca2005-10-10 22:31:19 +0000119 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000120 DOUT << "\nReplacing.1 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000121 DOUT << "\nWith: "; DEBUG(To[0].Val->dump(&DAG));
122 DOUT << " and " << NumTo-1 << " other values\n";
Chris Lattner01a22022005-10-10 22:04:48 +0000123 std::vector<SDNode*> NowDead;
Chris Lattner3577e382006-08-11 17:56:38 +0000124 DAG.ReplaceAllUsesWith(N, To, &NowDead);
Chris Lattner01a22022005-10-10 22:04:48 +0000125
Jim Laskey274062c2006-10-13 23:32:28 +0000126 if (AddTo) {
127 // Push the new nodes and any users onto the worklist
128 for (unsigned i = 0, e = NumTo; i != e; ++i) {
129 AddToWorkList(To[i].Val);
130 AddUsersToWorkList(To[i].Val);
131 }
Chris Lattner01a22022005-10-10 22:04:48 +0000132 }
133
Jim Laskey6ff23e52006-10-04 16:53:27 +0000134 // Nodes can be reintroduced into the worklist. Make sure we do not
135 // process a node that has been replaced.
Chris Lattner01a22022005-10-10 22:04:48 +0000136 removeFromWorkList(N);
137 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
138 removeFromWorkList(NowDead[i]);
139
140 // Finally, since the node is now dead, remove it from the graph.
141 DAG.DeleteNode(N);
142 return SDOperand(N, 0);
143 }
Nate Begeman368e18d2006-02-16 21:11:51 +0000144
Jim Laskey274062c2006-10-13 23:32:28 +0000145 SDOperand CombineTo(SDNode *N, SDOperand Res, bool AddTo = true) {
146 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000147 }
148
Jim Laskey274062c2006-10-13 23:32:28 +0000149 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1,
150 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000151 SDOperand To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000152 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000153 }
154 private:
155
Chris Lattner012f2412006-02-17 21:58:01 +0000156 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000157 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000158 /// propagation. If so, return true.
Chris Lattnere33544c2007-10-13 06:58:48 +0000159 bool SimplifyDemandedBits(SDOperand Op, uint64_t Demanded = ~0ULL) {
Nate Begeman368e18d2006-02-16 21:11:51 +0000160 TargetLowering::TargetLoweringOpt TLO(DAG);
161 uint64_t KnownZero, KnownOne;
Chris Lattnere33544c2007-10-13 06:58:48 +0000162 Demanded &= MVT::getIntVTBitMask(Op.getValueType());
Chris Lattner012f2412006-02-17 21:58:01 +0000163 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
164 return false;
165
166 // Revisit the node.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000167 AddToWorkList(Op.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000168
169 // Replace the old value with the new one.
170 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000171 DOUT << "\nReplacing.2 "; DEBUG(TLO.Old.Val->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000172 DOUT << "\nWith: "; DEBUG(TLO.New.Val->dump(&DAG));
173 DOUT << '\n';
Chris Lattner012f2412006-02-17 21:58:01 +0000174
175 std::vector<SDNode*> NowDead;
176 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, NowDead);
177
Chris Lattner7d20d392006-02-20 06:51:04 +0000178 // Push the new node and any (possibly new) users onto the worklist.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000179 AddToWorkList(TLO.New.Val);
Chris Lattner012f2412006-02-17 21:58:01 +0000180 AddUsersToWorkList(TLO.New.Val);
181
182 // Nodes can end up on the worklist more than once. Make sure we do
183 // not process a node that has been replaced.
Chris Lattner012f2412006-02-17 21:58:01 +0000184 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
185 removeFromWorkList(NowDead[i]);
186
Chris Lattner7d20d392006-02-20 06:51:04 +0000187 // Finally, if the node is now dead, remove it from the graph. The node
188 // may not be dead if the replacement process recursively simplified to
189 // something else needing this node.
190 if (TLO.Old.Val->use_empty()) {
191 removeFromWorkList(TLO.Old.Val);
Chris Lattnerec06e9a2007-04-18 03:05:22 +0000192
193 // If the operands of this node are only used by the node, they will now
194 // be dead. Make sure to visit them first to delete dead nodes early.
195 for (unsigned i = 0, e = TLO.Old.Val->getNumOperands(); i != e; ++i)
196 if (TLO.Old.Val->getOperand(i).Val->hasOneUse())
197 AddToWorkList(TLO.Old.Val->getOperand(i).Val);
198
Chris Lattner7d20d392006-02-20 06:51:04 +0000199 DAG.DeleteNode(TLO.Old.Val);
200 }
Chris Lattner012f2412006-02-17 21:58:01 +0000201 return true;
Nate Begeman368e18d2006-02-16 21:11:51 +0000202 }
Chris Lattner87514ca2005-10-10 22:31:19 +0000203
Chris Lattner448f2192006-11-11 00:39:41 +0000204 bool CombineToPreIndexedLoadStore(SDNode *N);
205 bool CombineToPostIndexedLoadStore(SDNode *N);
206
207
Dan Gohman389079b2007-10-08 17:57:15 +0000208 /// combine - call the node-specific routine that knows how to fold each
209 /// particular type of node. If that doesn't do anything, try the
210 /// target-specific DAG combines.
211 SDOperand combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000212
213 // Visitation implementation - Implement dag node combining for different
214 // node types. The semantics are as follows:
215 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000216 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000217 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000218 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000219 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000220 SDOperand visitTokenFactor(SDNode *N);
221 SDOperand visitADD(SDNode *N);
222 SDOperand visitSUB(SDNode *N);
Chris Lattner91153682007-03-04 20:03:15 +0000223 SDOperand visitADDC(SDNode *N);
224 SDOperand visitADDE(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000225 SDOperand visitMUL(SDNode *N);
226 SDOperand visitSDIV(SDNode *N);
227 SDOperand visitUDIV(SDNode *N);
228 SDOperand visitSREM(SDNode *N);
229 SDOperand visitUREM(SDNode *N);
230 SDOperand visitMULHU(SDNode *N);
231 SDOperand visitMULHS(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000232 SDOperand visitSMUL_LOHI(SDNode *N);
233 SDOperand visitUMUL_LOHI(SDNode *N);
234 SDOperand visitSDIVREM(SDNode *N);
235 SDOperand visitUDIVREM(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000236 SDOperand visitAND(SDNode *N);
237 SDOperand visitOR(SDNode *N);
238 SDOperand visitXOR(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000239 SDOperand SimplifyVBinOp(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000240 SDOperand visitSHL(SDNode *N);
241 SDOperand visitSRA(SDNode *N);
242 SDOperand visitSRL(SDNode *N);
243 SDOperand visitCTLZ(SDNode *N);
244 SDOperand visitCTTZ(SDNode *N);
245 SDOperand visitCTPOP(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000246 SDOperand visitSELECT(SDNode *N);
247 SDOperand visitSELECT_CC(SDNode *N);
248 SDOperand visitSETCC(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000249 SDOperand visitSIGN_EXTEND(SDNode *N);
250 SDOperand visitZERO_EXTEND(SDNode *N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000251 SDOperand visitANY_EXTEND(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000252 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
253 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000254 SDOperand visitBIT_CONVERT(SDNode *N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000255 SDOperand visitFADD(SDNode *N);
256 SDOperand visitFSUB(SDNode *N);
257 SDOperand visitFMUL(SDNode *N);
258 SDOperand visitFDIV(SDNode *N);
259 SDOperand visitFREM(SDNode *N);
Chris Lattner12d83032006-03-05 05:30:57 +0000260 SDOperand visitFCOPYSIGN(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000261 SDOperand visitSINT_TO_FP(SDNode *N);
262 SDOperand visitUINT_TO_FP(SDNode *N);
263 SDOperand visitFP_TO_SINT(SDNode *N);
264 SDOperand visitFP_TO_UINT(SDNode *N);
265 SDOperand visitFP_ROUND(SDNode *N);
266 SDOperand visitFP_ROUND_INREG(SDNode *N);
267 SDOperand visitFP_EXTEND(SDNode *N);
268 SDOperand visitFNEG(SDNode *N);
269 SDOperand visitFABS(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000270 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000271 SDOperand visitBR_CC(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000272 SDOperand visitLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000273 SDOperand visitSTORE(SDNode *N);
Chris Lattnerca242442006-03-19 01:27:56 +0000274 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
Evan Cheng513da432007-10-06 08:19:55 +0000275 SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000276 SDOperand visitBUILD_VECTOR(SDNode *N);
277 SDOperand visitCONCAT_VECTORS(SDNode *N);
Chris Lattner66445d32006-03-28 22:11:53 +0000278 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000279
Evan Cheng44f1f092006-04-20 08:56:16 +0000280 SDOperand XformToShuffleWithZero(SDNode *N);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000281 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
282
Chris Lattner40c62d52005-10-18 06:04:22 +0000283 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Chris Lattner35e5c142006-05-05 05:51:50 +0000284 SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000285 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
286 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
Chris Lattner1eba01e2007-04-11 06:50:51 +0000287 SDOperand N3, ISD::CondCode CC,
288 bool NotExtCompare = false);
Nate Begeman452d7be2005-09-16 00:54:12 +0000289 SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000290 ISD::CondCode Cond, bool foldBooleans = true);
Dan Gohman389079b2007-10-08 17:57:15 +0000291 bool SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, unsigned HiOp);
Dan Gohman7f321562007-06-25 16:23:39 +0000292 SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT::ValueType);
Nate Begeman69575232005-10-20 02:15:44 +0000293 SDOperand BuildSDIV(SDNode *N);
Chris Lattner516b9622006-09-14 20:50:57 +0000294 SDOperand BuildUDIV(SDNode *N);
295 SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
Evan Chengc88138f2007-03-22 01:54:19 +0000296 SDOperand ReduceLoadWidth(SDNode *N);
Jim Laskey279f0532006-09-25 16:29:54 +0000297
Chris Lattner2b4c2792007-10-13 06:35:54 +0000298 SDOperand GetDemandedBits(SDOperand V, uint64_t Mask);
299
Jim Laskey6ff23e52006-10-04 16:53:27 +0000300 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
301 /// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +0000302 void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000303 SmallVector<SDOperand, 8> &Aliases);
304
Jim Laskey096c22e2006-10-18 12:29:57 +0000305 /// isAlias - Return true if there is any possibility that the two addresses
306 /// overlap.
307 bool isAlias(SDOperand Ptr1, int64_t Size1,
308 const Value *SrcValue1, int SrcValueOffset1,
309 SDOperand Ptr2, int64_t Size2,
Jeff Cohend41b30d2006-11-05 19:31:28 +0000310 const Value *SrcValue2, int SrcValueOffset2);
Jim Laskey096c22e2006-10-18 12:29:57 +0000311
Jim Laskey7ca56af2006-10-11 13:47:09 +0000312 /// FindAliasInfo - Extracts the relevant alias information from the memory
313 /// node. Returns true if the operand was a load.
314 bool FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +0000315 SDOperand &Ptr, int64_t &Size,
316 const Value *&SrcValue, int &SrcValueOffset);
Jim Laskey7ca56af2006-10-11 13:47:09 +0000317
Jim Laskey279f0532006-09-25 16:29:54 +0000318 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000319 /// looking for a better chain (aliasing node.)
Jim Laskey279f0532006-09-25 16:29:54 +0000320 SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
321
Nate Begeman1d4d4142005-09-01 00:19:25 +0000322public:
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000323 DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
324 : DAG(D),
325 TLI(D.getTargetLoweringInfo()),
326 AfterLegalize(false),
327 AA(A) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000328
329 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000330 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000331 };
332}
333
Chris Lattner24664722006-03-01 04:53:38 +0000334//===----------------------------------------------------------------------===//
335// TargetLowering::DAGCombinerInfo implementation
336//===----------------------------------------------------------------------===//
337
338void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
339 ((DAGCombiner*)DC)->AddToWorkList(N);
340}
341
342SDOperand TargetLowering::DAGCombinerInfo::
343CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
Chris Lattner3577e382006-08-11 17:56:38 +0000344 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
Chris Lattner24664722006-03-01 04:53:38 +0000345}
346
347SDOperand TargetLowering::DAGCombinerInfo::
348CombineTo(SDNode *N, SDOperand Res) {
349 return ((DAGCombiner*)DC)->CombineTo(N, Res);
350}
351
352
353SDOperand TargetLowering::DAGCombinerInfo::
354CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
355 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
356}
357
358
Chris Lattner24664722006-03-01 04:53:38 +0000359//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000360// Helper Functions
361//===----------------------------------------------------------------------===//
362
363/// isNegatibleForFree - Return 1 if we can compute the negated form of the
364/// specified expression for the same cost as the expression itself, or 2 if we
365/// can compute the negated form more cheaply than the expression itself.
Chris Lattner501fee72007-05-23 07:35:22 +0000366static char isNegatibleForFree(SDOperand Op, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000367 // fneg is removable even if it has multiple uses.
368 if (Op.getOpcode() == ISD::FNEG) return 2;
369
370 // Don't allow anything with multiple uses.
371 if (!Op.hasOneUse()) return 0;
372
Chris Lattner3adf9512007-05-25 02:19:06 +0000373 // Don't recurse exponentially.
374 if (Depth > 6) return 0;
375
Chris Lattner29446522007-05-14 22:04:50 +0000376 switch (Op.getOpcode()) {
377 default: return false;
378 case ISD::ConstantFP:
379 return 1;
380 case ISD::FADD:
381 // FIXME: determine better conditions for this xform.
382 if (!UnsafeFPMath) return 0;
383
384 // -(A+B) -> -A - B
Chris Lattner501fee72007-05-23 07:35:22 +0000385 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000386 return V;
387 // -(A+B) -> -B - A
Chris Lattner501fee72007-05-23 07:35:22 +0000388 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000389 case ISD::FSUB:
390 // We can't turn -(A-B) into B-A when we honor signed zeros.
391 if (!UnsafeFPMath) return 0;
392
393 // -(A-B) -> B-A
394 return 1;
395
396 case ISD::FMUL:
397 case ISD::FDIV:
398 if (HonorSignDependentRoundingFPMath()) return 0;
399
400 // -(X*Y) -> (-X * Y) or (X*-Y)
Chris Lattner501fee72007-05-23 07:35:22 +0000401 if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000402 return V;
403
Chris Lattner501fee72007-05-23 07:35:22 +0000404 return isNegatibleForFree(Op.getOperand(1), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000405
406 case ISD::FP_EXTEND:
407 case ISD::FP_ROUND:
408 case ISD::FSIN:
Chris Lattner501fee72007-05-23 07:35:22 +0000409 return isNegatibleForFree(Op.getOperand(0), Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000410 }
411}
412
413/// GetNegatedExpression - If isNegatibleForFree returns true, this function
414/// returns the newly negated expression.
Chris Lattner3adf9512007-05-25 02:19:06 +0000415static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
416 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000417 // fneg is removable even if it has multiple uses.
418 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
419
420 // Don't allow anything with multiple uses.
421 assert(Op.hasOneUse() && "Unknown reuse!");
422
Chris Lattner3adf9512007-05-25 02:19:06 +0000423 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000424 switch (Op.getOpcode()) {
425 default: assert(0 && "Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000426 case ISD::ConstantFP: {
427 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
428 V.changeSign();
429 return DAG.getConstantFP(V, Op.getValueType());
430 }
Chris Lattner29446522007-05-14 22:04:50 +0000431 case ISD::FADD:
432 // FIXME: determine better conditions for this xform.
433 assert(UnsafeFPMath);
434
435 // -(A+B) -> -A - B
Chris Lattner3adf9512007-05-25 02:19:06 +0000436 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000437 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000438 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000439 Op.getOperand(1));
440 // -(A+B) -> -B - A
441 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000442 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000443 Op.getOperand(0));
444 case ISD::FSUB:
445 // We can't turn -(A-B) into B-A when we honor signed zeros.
446 assert(UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000447
448 // -(0-B) -> B
449 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000450 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000451 return Op.getOperand(1);
Chris Lattner29446522007-05-14 22:04:50 +0000452
453 // -(A-B) -> B-A
454 return DAG.getNode(ISD::FSUB, Op.getValueType(), Op.getOperand(1),
455 Op.getOperand(0));
456
457 case ISD::FMUL:
458 case ISD::FDIV:
459 assert(!HonorSignDependentRoundingFPMath());
460
461 // -(X*Y) -> -X * Y
Chris Lattner3adf9512007-05-25 02:19:06 +0000462 if (isNegatibleForFree(Op.getOperand(0), Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000463 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000464 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000465 Op.getOperand(1));
466
467 // -(X*Y) -> X * -Y
468 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
469 Op.getOperand(0),
Chris Lattner3adf9512007-05-25 02:19:06 +0000470 GetNegatedExpression(Op.getOperand(1), DAG, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000471
472 case ISD::FP_EXTEND:
473 case ISD::FP_ROUND:
474 case ISD::FSIN:
475 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner3adf9512007-05-25 02:19:06 +0000476 GetNegatedExpression(Op.getOperand(0), DAG, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000477 }
478}
Chris Lattner24664722006-03-01 04:53:38 +0000479
480
Nate Begeman4ebd8052005-09-01 23:24:04 +0000481// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
482// that selects between the values 1 and 0, making it equivalent to a setcc.
Nate Begeman646d7e22005-09-02 21:18:40 +0000483// Also, set the incoming LHS, RHS, and CC references to the appropriate
484// nodes based on the type of node we are checking. This simplifies life a
485// bit for the callers.
486static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
487 SDOperand &CC) {
488 if (N.getOpcode() == ISD::SETCC) {
489 LHS = N.getOperand(0);
490 RHS = N.getOperand(1);
491 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000492 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000493 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000494 if (N.getOpcode() == ISD::SELECT_CC &&
495 N.getOperand(2).getOpcode() == ISD::Constant &&
496 N.getOperand(3).getOpcode() == ISD::Constant &&
497 cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000498 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
499 LHS = N.getOperand(0);
500 RHS = N.getOperand(1);
501 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000502 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000503 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000504 return false;
505}
506
Nate Begeman99801192005-09-07 23:25:52 +0000507// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
508// one use. If this is true, it allows the users to invert the operation for
509// free when it is profitable to do so.
510static bool isOneUseSetCC(SDOperand N) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000511 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000512 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000513 return true;
514 return false;
515}
516
Nate Begemancd4d58c2006-02-03 06:46:56 +0000517SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
518 MVT::ValueType VT = N0.getValueType();
519 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
520 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
521 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
522 if (isa<ConstantSDNode>(N1)) {
523 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000524 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000525 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(0));
526 } else if (N0.hasOneUse()) {
527 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000528 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000529 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
530 }
531 }
532 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
533 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
534 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
535 if (isa<ConstantSDNode>(N0)) {
536 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000537 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000538 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(0));
539 } else if (N1.hasOneUse()) {
540 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000541 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000542 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
543 }
544 }
545 return SDOperand();
546}
547
Chris Lattner29446522007-05-14 22:04:50 +0000548//===----------------------------------------------------------------------===//
549// Main DAG Combiner implementation
550//===----------------------------------------------------------------------===//
551
Nate Begeman4ebd8052005-09-01 23:24:04 +0000552void DAGCombiner::Run(bool RunningAfterLegalize) {
553 // set the instance variable, so that the various visit routines may use it.
554 AfterLegalize = RunningAfterLegalize;
555
Nate Begeman646d7e22005-09-02 21:18:40 +0000556 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000557 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
558 E = DAG.allnodes_end(); I != E; ++I)
559 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000560
Chris Lattner95038592005-10-05 06:35:28 +0000561 // Create a dummy node (which is not added to allnodes), that adds a reference
562 // to the root node, preventing it from being deleted, and tracking any
563 // changes of the root.
564 HandleSDNode Dummy(DAG.getRoot());
565
Jim Laskey26f7fa72006-10-17 19:33:52 +0000566 // The root of the dag may dangle to deleted nodes until the dag combiner is
567 // done. Set it to null to avoid confusion.
568 DAG.setRoot(SDOperand());
Chris Lattner24664722006-03-01 04:53:38 +0000569
Nate Begeman1d4d4142005-09-01 00:19:25 +0000570 // while the worklist isn't empty, inspect the node on the end of it and
571 // try and combine it.
572 while (!WorkList.empty()) {
573 SDNode *N = WorkList.back();
574 WorkList.pop_back();
575
576 // If N has no uses, it is dead. Make sure to revisit all N's operands once
Chris Lattner95038592005-10-05 06:35:28 +0000577 // N is deleted from the DAG, since they too may now be dead or may have a
578 // reduced number of uses, allowing other xforms.
579 if (N->use_empty() && N != &Dummy) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000580 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jim Laskey6ff23e52006-10-04 16:53:27 +0000581 AddToWorkList(N->getOperand(i).Val);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000582
Chris Lattner95038592005-10-05 06:35:28 +0000583 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000584 continue;
585 }
586
Dan Gohman389079b2007-10-08 17:57:15 +0000587 SDOperand RV = combine(N);
Chris Lattner24664722006-03-01 04:53:38 +0000588
Nate Begeman83e75ec2005-09-06 04:43:02 +0000589 if (RV.Val) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000590 ++NodesCombined;
Nate Begeman646d7e22005-09-02 21:18:40 +0000591 // If we get back the same node we passed in, rather than a new node or
592 // zero, we know that the node must have defined multiple values and
593 // CombineTo was used. Since CombineTo takes care of the worklist
594 // mechanics for us, we have no work to do in this case.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000595 if (RV.Val != N) {
Chris Lattner729c6d12006-05-27 00:43:02 +0000596 assert(N->getOpcode() != ISD::DELETED_NODE &&
597 RV.Val->getOpcode() != ISD::DELETED_NODE &&
598 "Node was deleted but visit returned new node!");
599
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000600 DOUT << "\nReplacing.3 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +0000601 DOUT << "\nWith: "; DEBUG(RV.Val->dump(&DAG));
602 DOUT << '\n';
Chris Lattner01a22022005-10-10 22:04:48 +0000603 std::vector<SDNode*> NowDead;
Evan Cheng2adffa12006-09-21 19:04:05 +0000604 if (N->getNumValues() == RV.Val->getNumValues())
605 DAG.ReplaceAllUsesWith(N, RV.Val, &NowDead);
606 else {
607 assert(N->getValueType(0) == RV.getValueType() && "Type mismatch");
608 SDOperand OpV = RV;
609 DAG.ReplaceAllUsesWith(N, &OpV, &NowDead);
610 }
Nate Begeman646d7e22005-09-02 21:18:40 +0000611
612 // Push the new node and any users onto the worklist
Jim Laskey6ff23e52006-10-04 16:53:27 +0000613 AddToWorkList(RV.Val);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000614 AddUsersToWorkList(RV.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);
855 bool isInt = MVT::isInteger(isSlctCC ? Slct.getOperand(0).getValueType()
856 : Slct.getOperand(0).getOperand(0).getValueType());
857 CC = ISD::getSetCCInverse(CC, isInt);
858 DoXform = true;
859 InvCC = true;
860 }
861
862 if (DoXform) {
863 SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
864 if (isSlctCC)
865 return DAG.getSelectCC(OtherOp, Result,
866 Slct.getOperand(0), Slct.getOperand(1), CC);
867 SDOperand CCOp = Slct.getOperand(0);
868 if (InvCC)
869 CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
870 CCOp.getOperand(1), CC);
871 return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
872 }
873 return SDOperand();
874}
875
Nate Begeman83e75ec2005-09-06 04:43:02 +0000876SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000877 SDOperand N0 = N->getOperand(0);
878 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000879 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
880 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000881 MVT::ValueType VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000882
883 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +0000884 if (MVT::isVector(VT)) {
885 SDOperand FoldedVOp = SimplifyVBinOp(N);
886 if (FoldedVOp.Val) return FoldedVOp;
887 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000888
Dan Gohman613e0d82007-07-03 14:03:57 +0000889 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +0000890 if (N0.getOpcode() == ISD::UNDEF)
891 return N0;
892 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +0000893 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000894 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000895 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000896 return DAG.getNode(ISD::ADD, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000897 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000898 if (N0C && !N1C)
899 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000900 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000901 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000902 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000903 // fold ((c1-A)+c2) -> (c1+c2)-A
904 if (N1C && N0.getOpcode() == ISD::SUB)
905 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
906 return DAG.getNode(ISD::SUB, VT,
907 DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
908 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000909 // reassociate add
910 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
911 if (RADD.Val != 0)
912 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000913 // fold ((0-A) + B) -> B-A
914 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
915 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000916 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000917 // fold (A + (0-B)) -> A-B
918 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
919 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000920 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000921 // fold (A+(B-A)) -> B
922 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000923 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +0000924
Evan Cheng860771d2006-03-01 01:09:54 +0000925 if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +0000926 return SDOperand(N, 0);
Chris Lattner947c2892006-03-13 06:51:27 +0000927
928 // fold (a+b) -> (a|b) iff a and b share no bits.
929 if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
930 uint64_t LHSZero, LHSOne;
931 uint64_t RHSZero, RHSOne;
932 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000933 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000934 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000935 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +0000936
937 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
938 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
939 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
940 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
941 return DAG.getNode(ISD::OR, VT, N0, N1);
942 }
943 }
Evan Cheng3ef554d2006-11-06 08:14:30 +0000944
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000945 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
946 if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
947 SDOperand Result = combineShlAddConstant(N0, N1, DAG);
948 if (Result.Val) return Result;
949 }
950 if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
951 SDOperand Result = combineShlAddConstant(N1, N0, DAG);
952 if (Result.Val) return Result;
953 }
954
Evan Chengb13cdbd2007-06-21 07:39:16 +0000955 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
956 if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
957 SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
958 if (Result.Val) return Result;
959 }
960 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
961 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
962 if (Result.Val) return Result;
963 }
964
Nate Begeman83e75ec2005-09-06 04:43:02 +0000965 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000966}
967
Chris Lattner91153682007-03-04 20:03:15 +0000968SDOperand DAGCombiner::visitADDC(SDNode *N) {
969 SDOperand N0 = N->getOperand(0);
970 SDOperand N1 = N->getOperand(1);
971 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
972 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
973 MVT::ValueType VT = N0.getValueType();
974
975 // If the flag result is dead, turn this into an ADD.
976 if (N->hasNUsesOfValue(0, 1))
977 return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
Chris Lattnerb6541762007-03-04 20:40:38 +0000978 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
Chris Lattner91153682007-03-04 20:03:15 +0000979
980 // canonicalize constant to RHS.
Chris Lattnerbcf24842007-03-04 20:08:45 +0000981 if (N0C && !N1C) {
982 SDOperand Ops[] = { N1, N0 };
983 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
984 }
Chris Lattner91153682007-03-04 20:03:15 +0000985
Chris Lattnerb6541762007-03-04 20:40:38 +0000986 // fold (addc x, 0) -> x + no carry out
987 if (N1C && N1C->isNullValue())
988 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
989
990 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
991 uint64_t LHSZero, LHSOne;
992 uint64_t RHSZero, RHSOne;
993 uint64_t Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +0000994 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000995 if (LHSZero) {
Dan Gohmanea859be2007-06-22 14:59:07 +0000996 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +0000997
998 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
999 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1000 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1001 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1002 return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
1003 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1004 }
Chris Lattner91153682007-03-04 20:03:15 +00001005
1006 return SDOperand();
1007}
1008
1009SDOperand DAGCombiner::visitADDE(SDNode *N) {
1010 SDOperand N0 = N->getOperand(0);
1011 SDOperand N1 = N->getOperand(1);
Chris Lattnerb6541762007-03-04 20:40:38 +00001012 SDOperand CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001013 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1014 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Chris Lattnerbcf24842007-03-04 20:08:45 +00001015 //MVT::ValueType VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +00001016
1017 // canonicalize constant to RHS
Chris Lattnerbcf24842007-03-04 20:08:45 +00001018 if (N0C && !N1C) {
Chris Lattnerb6541762007-03-04 20:40:38 +00001019 SDOperand Ops[] = { N1, N0, CarryIn };
Chris Lattnerbcf24842007-03-04 20:08:45 +00001020 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1021 }
Chris Lattner91153682007-03-04 20:03:15 +00001022
Chris Lattnerb6541762007-03-04 20:40:38 +00001023 // fold (adde x, y, false) -> (addc x, y)
1024 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1025 SDOperand Ops[] = { N1, N0 };
1026 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1027 }
Chris Lattner91153682007-03-04 20:03:15 +00001028
1029 return SDOperand();
1030}
1031
1032
1033
Nate Begeman83e75ec2005-09-06 04:43:02 +00001034SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001035 SDOperand N0 = N->getOperand(0);
1036 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001037 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1038 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001039 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001040
Dan Gohman7f321562007-06-25 16:23:39 +00001041 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001042 if (MVT::isVector(VT)) {
1043 SDOperand FoldedVOp = SimplifyVBinOp(N);
1044 if (FoldedVOp.Val) return FoldedVOp;
1045 }
Dan Gohman7f321562007-06-25 16:23:39 +00001046
Chris Lattner854077d2005-10-17 01:07:11 +00001047 // fold (sub x, x) -> 0
1048 if (N0 == N1)
1049 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001050 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001051 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001052 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +00001053 // fold (sub x, c) -> (add x, -c)
1054 if (N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001055 return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001056 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001057 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001058 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001059 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001060 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001061 return N0.getOperand(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +00001062 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1063 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1064 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1065 if (Result.Val) return Result;
1066 }
Dan Gohman613e0d82007-07-03 14:03:57 +00001067 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001068 if (N0.getOpcode() == ISD::UNDEF)
1069 return N0;
1070 if (N1.getOpcode() == ISD::UNDEF)
1071 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001072
Nate Begeman83e75ec2005-09-06 04:43:02 +00001073 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001074}
1075
Nate Begeman83e75ec2005-09-06 04:43:02 +00001076SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001077 SDOperand N0 = N->getOperand(0);
1078 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001079 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1080 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +00001081 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001082
Dan Gohman7f321562007-06-25 16:23:39 +00001083 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001084 if (MVT::isVector(VT)) {
1085 SDOperand FoldedVOp = SimplifyVBinOp(N);
1086 if (FoldedVOp.Val) return FoldedVOp;
1087 }
Dan Gohman7f321562007-06-25 16:23:39 +00001088
Dan Gohman613e0d82007-07-03 14:03:57 +00001089 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001090 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001091 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001092 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001093 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001094 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001095 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001096 if (N0C && !N1C)
1097 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001098 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001099 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001100 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001101 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001102 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001103 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001104 // fold (mul x, (1 << c)) -> x << c
Nate Begeman646d7e22005-09-02 21:18:40 +00001105 if (N1C && isPowerOf2_64(N1C->getValue()))
Chris Lattner3e6099b2005-10-30 06:41:49 +00001106 return DAG.getNode(ISD::SHL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001107 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001108 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001109 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1110 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1111 // FIXME: If the input is something that is easily negated (e.g. a
1112 // single-use add), we should put the negate there.
1113 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1114 DAG.getNode(ISD::SHL, VT, N0,
1115 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1116 TLI.getShiftAmountTy())));
1117 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +00001118
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001119 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1120 if (N1C && N0.getOpcode() == ISD::SHL &&
1121 isa<ConstantSDNode>(N0.getOperand(1))) {
1122 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
Chris Lattner5750df92006-03-01 04:03:14 +00001123 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001124 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1125 }
1126
1127 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1128 // use.
1129 {
1130 SDOperand Sh(0,0), Y(0,0);
1131 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1132 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1133 N0.Val->hasOneUse()) {
1134 Sh = N0; Y = N1;
1135 } else if (N1.getOpcode() == ISD::SHL &&
1136 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1137 Sh = N1; Y = N0;
1138 }
1139 if (Sh.Val) {
1140 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1141 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1142 }
1143 }
Chris Lattnera1deca32006-03-04 23:33:26 +00001144 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1145 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1146 isa<ConstantSDNode>(N0.getOperand(1))) {
1147 return DAG.getNode(ISD::ADD, VT,
1148 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1149 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1150 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001151
Nate Begemancd4d58c2006-02-03 06:46:56 +00001152 // reassociate mul
1153 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1154 if (RMUL.Val != 0)
1155 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001156
Nate Begeman83e75ec2005-09-06 04:43:02 +00001157 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001158}
1159
Nate Begeman83e75ec2005-09-06 04:43:02 +00001160SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001161 SDOperand N0 = N->getOperand(0);
1162 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001163 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1164 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001165 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001166
Dan Gohman7f321562007-06-25 16:23:39 +00001167 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001168 if (MVT::isVector(VT)) {
1169 SDOperand FoldedVOp = SimplifyVBinOp(N);
1170 if (FoldedVOp.Val) return FoldedVOp;
1171 }
Dan Gohman7f321562007-06-25 16:23:39 +00001172
Nate Begeman1d4d4142005-09-01 00:19:25 +00001173 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001174 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001175 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001176 // fold (sdiv X, 1) -> X
1177 if (N1C && N1C->getSignExtended() == 1LL)
1178 return N0;
1179 // fold (sdiv X, -1) -> 0-X
1180 if (N1C && N1C->isAllOnesValue())
1181 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001182 // If we know the sign bits of both operands are zero, strength reduce to a
1183 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
1184 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001185 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1186 DAG.MaskedValueIsZero(N0, SignBit))
Chris Lattner094c8fc2005-10-07 06:10:46 +00001187 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001188 // fold (sdiv X, pow2) -> simple ops after legalize
Nate Begemanfb7217b2006-02-17 19:54:08 +00001189 if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +00001190 (isPowerOf2_64(N1C->getSignExtended()) ||
1191 isPowerOf2_64(-N1C->getSignExtended()))) {
1192 // If dividing by powers of two is cheap, then don't perform the following
1193 // fold.
1194 if (TLI.isPow2DivCheap())
1195 return SDOperand();
1196 int64_t pow2 = N1C->getSignExtended();
1197 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
Chris Lattner8f4880b2006-02-16 08:02:36 +00001198 unsigned lg2 = Log2_64(abs2);
1199 // Splat the sign bit into the register
1200 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001201 DAG.getConstant(MVT::getSizeInBits(VT)-1,
1202 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00001203 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +00001204 // Add (N0 < 0) ? abs2 - 1 : 0;
1205 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
1206 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001207 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +00001208 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +00001209 AddToWorkList(SRL.Val);
1210 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +00001211 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1212 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +00001213 // If we're dividing by a positive value, we're done. Otherwise, we must
1214 // negate the result.
1215 if (pow2 > 0)
1216 return SRA;
Chris Lattner5750df92006-03-01 04:03:14 +00001217 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001218 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1219 }
Nate Begeman69575232005-10-20 02:15:44 +00001220 // if integer divide is expensive and we satisfy the requirements, emit an
1221 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +00001222 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +00001223 !TLI.isIntDivCheap()) {
1224 SDOperand Op = BuildSDIV(N);
1225 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001226 }
Dan Gohman7f321562007-06-25 16:23:39 +00001227
Dan Gohman613e0d82007-07-03 14:03:57 +00001228 // undef / X -> 0
1229 if (N0.getOpcode() == ISD::UNDEF)
1230 return DAG.getConstant(0, VT);
1231 // X / undef -> undef
1232 if (N1.getOpcode() == ISD::UNDEF)
1233 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001234
Nate Begeman83e75ec2005-09-06 04:43:02 +00001235 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001236}
1237
Nate Begeman83e75ec2005-09-06 04:43:02 +00001238SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001239 SDOperand N0 = N->getOperand(0);
1240 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001241 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1242 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001243 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001244
Dan Gohman7f321562007-06-25 16:23:39 +00001245 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001246 if (MVT::isVector(VT)) {
1247 SDOperand FoldedVOp = SimplifyVBinOp(N);
1248 if (FoldedVOp.Val) return FoldedVOp;
1249 }
Dan Gohman7f321562007-06-25 16:23:39 +00001250
Nate Begeman1d4d4142005-09-01 00:19:25 +00001251 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001252 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001253 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001254 // fold (udiv x, (1 << c)) -> x >>u c
Nate Begeman646d7e22005-09-02 21:18:40 +00001255 if (N1C && isPowerOf2_64(N1C->getValue()))
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001256 return DAG.getNode(ISD::SRL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +00001257 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001258 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001259 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1260 if (N1.getOpcode() == ISD::SHL) {
1261 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1262 if (isPowerOf2_64(SHC->getValue())) {
1263 MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +00001264 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
1265 DAG.getConstant(Log2_64(SHC->getValue()),
1266 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +00001267 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001268 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001269 }
1270 }
1271 }
Nate Begeman69575232005-10-20 02:15:44 +00001272 // fold (udiv x, c) -> alternate
Chris Lattnere9936d12005-10-22 18:50:15 +00001273 if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
1274 SDOperand Op = BuildUDIV(N);
1275 if (Op.Val) return Op;
1276 }
Dan Gohman7f321562007-06-25 16:23:39 +00001277
Dan Gohman613e0d82007-07-03 14:03:57 +00001278 // undef / X -> 0
1279 if (N0.getOpcode() == ISD::UNDEF)
1280 return DAG.getConstant(0, VT);
1281 // X / undef -> undef
1282 if (N1.getOpcode() == ISD::UNDEF)
1283 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001284
Nate Begeman83e75ec2005-09-06 04:43:02 +00001285 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001286}
1287
Nate Begeman83e75ec2005-09-06 04:43:02 +00001288SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001289 SDOperand N0 = N->getOperand(0);
1290 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001291 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1292 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001293 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001294
1295 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001296 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001297 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001298 // If we know the sign bits of both operands are zero, strength reduce to a
1299 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
1300 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001301 if (DAG.MaskedValueIsZero(N1, SignBit) &&
1302 DAG.MaskedValueIsZero(N0, SignBit))
Nate Begemana148d982006-01-18 22:35:16 +00001303 return DAG.getNode(ISD::UREM, VT, N0, N1);
Chris Lattner26d29902006-10-12 20:58:32 +00001304
1305 // Unconditionally lower X%C -> X-X/C*C. This allows the X/C logic to hack on
1306 // the remainder operation.
1307 if (N1C && !N1C->isNullValue()) {
1308 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
1309 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Div, N1);
1310 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1311 AddToWorkList(Div.Val);
1312 AddToWorkList(Mul.Val);
1313 return Sub;
1314 }
1315
Dan Gohman613e0d82007-07-03 14:03:57 +00001316 // undef % X -> 0
1317 if (N0.getOpcode() == ISD::UNDEF)
1318 return DAG.getConstant(0, VT);
1319 // X % undef -> undef
1320 if (N1.getOpcode() == ISD::UNDEF)
1321 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001322
Nate Begeman83e75ec2005-09-06 04:43:02 +00001323 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001324}
1325
Nate Begeman83e75ec2005-09-06 04:43:02 +00001326SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001327 SDOperand N0 = N->getOperand(0);
1328 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001329 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1330 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001331 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001332
1333 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001334 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001335 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001336 // fold (urem x, pow2) -> (and x, pow2-1)
1337 if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
Nate Begemana148d982006-01-18 22:35:16 +00001338 return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00001339 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1340 if (N1.getOpcode() == ISD::SHL) {
1341 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1342 if (isPowerOf2_64(SHC->getValue())) {
Nate Begemanbab92392006-02-05 08:07:24 +00001343 SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001344 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001345 return DAG.getNode(ISD::AND, VT, N0, Add);
1346 }
1347 }
1348 }
Chris Lattner26d29902006-10-12 20:58:32 +00001349
1350 // Unconditionally lower X%C -> X-X/C*C. This allows the X/C logic to hack on
1351 // the remainder operation.
1352 if (N1C && !N1C->isNullValue()) {
1353 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
1354 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Div, N1);
1355 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1356 AddToWorkList(Div.Val);
1357 AddToWorkList(Mul.Val);
1358 return Sub;
1359 }
1360
Dan Gohman613e0d82007-07-03 14:03:57 +00001361 // undef % X -> 0
1362 if (N0.getOpcode() == ISD::UNDEF)
1363 return DAG.getConstant(0, VT);
1364 // X % undef -> undef
1365 if (N1.getOpcode() == ISD::UNDEF)
1366 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001367
Nate Begeman83e75ec2005-09-06 04:43:02 +00001368 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001369}
1370
Nate Begeman83e75ec2005-09-06 04:43:02 +00001371SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001372 SDOperand N0 = N->getOperand(0);
1373 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001374 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001375 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001376
1377 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001378 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001379 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001380 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001381 if (N1C && N1C->getValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001382 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
1383 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001384 TLI.getShiftAmountTy()));
Dan Gohman613e0d82007-07-03 14:03:57 +00001385 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001386 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001387 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001388
Nate Begeman83e75ec2005-09-06 04:43:02 +00001389 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001390}
1391
Nate Begeman83e75ec2005-09-06 04:43:02 +00001392SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001393 SDOperand N0 = N->getOperand(0);
1394 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001395 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001396 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001397
1398 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001399 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001400 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001401 // fold (mulhu x, 1) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001402 if (N1C && N1C->getValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001403 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00001404 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001405 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001406 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001407
Nate Begeman83e75ec2005-09-06 04:43:02 +00001408 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001409}
1410
Dan Gohman389079b2007-10-08 17:57:15 +00001411/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1412/// compute two values. LoOp and HiOp give the opcodes for the two computations
1413/// that are being performed. Return true if a simplification was made.
1414///
1415bool DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N,
1416 unsigned LoOp, unsigned HiOp) {
1417 std::vector<SDNode*> NowDead;
1418
1419 // If the high half is not needed, just compute the low half.
1420 if (!N->hasAnyUseOfValue(1) &&
1421 (!AfterLegalize ||
1422 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
1423 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0),
1424 DAG.getNode(LoOp, N->getValueType(0),
1425 N->op_begin(),
1426 N->getNumOperands()),
1427 NowDead);
1428 return true;
1429 }
1430
1431 // If the low half is not needed, just compute the high half.
1432 if (!N->hasAnyUseOfValue(0) &&
1433 (!AfterLegalize ||
1434 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
1435 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
1436 DAG.getNode(HiOp, N->getValueType(1),
1437 N->op_begin(),
1438 N->getNumOperands()),
1439 NowDead);
1440 return true;
1441 }
1442
1443 // If the two computed results can be siplified separately, separate them.
1444 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1445 N->op_begin(), N->getNumOperands());
1446 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1447 N->op_begin(), N->getNumOperands());
1448 unsigned LoExists = !Lo.use_empty();
1449 unsigned HiExists = !Hi.use_empty();
1450 SDOperand LoOpt = Lo;
1451 SDOperand HiOpt = Hi;
1452 if (!LoExists || !HiExists) {
1453 SDOperand Pair = DAG.getNode(ISD::BUILD_PAIR, MVT::Other, Lo, Hi);
1454 assert(Pair.use_empty() && "Pair with type MVT::Other already exists!");
1455 LoOpt = combine(Lo.Val);
1456 HiOpt = combine(Hi.Val);
1457 if (!LoOpt.Val)
1458 LoOpt = Pair.getOperand(0);
1459 if (!HiOpt.Val)
1460 HiOpt = Pair.getOperand(1);
1461 DAG.DeleteNode(Pair.Val);
1462 }
1463 if ((LoExists || LoOpt != Lo) &&
1464 (HiExists || HiOpt != Hi) &&
1465 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()) &&
1466 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())) {
1467 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), LoOpt, NowDead);
1468 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), HiOpt, NowDead);
1469 return true;
1470 }
1471
1472 return false;
1473}
1474
1475SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
1476
1477 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS))
1478 return SDOperand();
1479
1480 return SDOperand();
1481}
1482
1483SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
1484
1485 if (SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU))
1486 return SDOperand();
1487
1488 return SDOperand();
1489}
1490
1491SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
1492
1493 if (SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM))
1494 return SDOperand();
1495
1496 return SDOperand();
1497}
1498
1499SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
1500
1501 if (SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM))
1502 return SDOperand();
1503
1504 return SDOperand();
1505}
1506
Chris Lattner35e5c142006-05-05 05:51:50 +00001507/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1508/// two operands of the same opcode, try to simplify it.
1509SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1510 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
1511 MVT::ValueType VT = N0.getValueType();
1512 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1513
Chris Lattner540121f2006-05-05 06:31:05 +00001514 // For each of OP in AND/OR/XOR:
1515 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1516 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1517 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Chris Lattner0d8dae72006-05-05 06:32:04 +00001518 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
Chris Lattner540121f2006-05-05 06:31:05 +00001519 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
Chris Lattner0d8dae72006-05-05 06:32:04 +00001520 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001521 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1522 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1523 N0.getOperand(0).getValueType(),
1524 N0.getOperand(0), N1.getOperand(0));
1525 AddToWorkList(ORNode.Val);
Chris Lattner540121f2006-05-05 06:31:05 +00001526 return DAG.getNode(N0.getOpcode(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00001527 }
1528
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001529 // For each of OP in SHL/SRL/SRA/AND...
1530 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1531 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1532 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00001533 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001534 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001535 N0.getOperand(1) == N1.getOperand(1)) {
1536 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1537 N0.getOperand(0).getValueType(),
1538 N0.getOperand(0), N1.getOperand(0));
1539 AddToWorkList(ORNode.Val);
1540 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1541 }
1542
1543 return SDOperand();
1544}
1545
Nate Begeman83e75ec2005-09-06 04:43:02 +00001546SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001547 SDOperand N0 = N->getOperand(0);
1548 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001549 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001550 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1551 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001552 MVT::ValueType VT = N1.getValueType();
1553
Dan Gohman7f321562007-06-25 16:23:39 +00001554 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001555 if (MVT::isVector(VT)) {
1556 SDOperand FoldedVOp = SimplifyVBinOp(N);
1557 if (FoldedVOp.Val) return FoldedVOp;
1558 }
Dan Gohman7f321562007-06-25 16:23:39 +00001559
Dan Gohman613e0d82007-07-03 14:03:57 +00001560 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001561 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001562 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001563 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001564 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001565 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001566 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001567 if (N0C && !N1C)
1568 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001569 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001570 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001571 return N0;
1572 // if (and x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001573 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001574 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001575 // reassociate and
1576 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1577 if (RAND.Val != 0)
1578 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001579 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001580 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001581 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Nate Begeman646d7e22005-09-02 21:18:40 +00001582 if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001583 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001584 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1585 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001586 unsigned InMask = MVT::getIntVTBitMask(N0.getOperand(0).getValueType());
Dan Gohmanea859be2007-06-22 14:59:07 +00001587 if (DAG.MaskedValueIsZero(N0.getOperand(0),
Chris Lattner1ec05d12006-03-01 21:47:21 +00001588 ~N1C->getValue() & InMask)) {
1589 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
1590 N0.getOperand(0));
1591
1592 // Replace uses of the AND with uses of the Zero extend node.
1593 CombineTo(N, Zext);
1594
Chris Lattner3603cd62006-02-02 07:17:31 +00001595 // We actually want to replace all uses of the any_extend with the
1596 // zero_extend, to avoid duplicating things. This will later cause this
1597 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001598 CombineTo(N0.Val, Zext);
Chris Lattnerfedced72006-04-20 23:55:59 +00001599 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00001600 }
1601 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001602 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1603 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1604 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1605 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1606
1607 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1608 MVT::isInteger(LL.getValueType())) {
1609 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
1610 if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
1611 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001612 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001613 return DAG.getSetCC(VT, ORNode, LR, Op1);
1614 }
1615 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1616 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1617 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001618 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001619 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1620 }
1621 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1622 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1623 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001624 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001625 return DAG.getSetCC(VT, ORNode, LR, Op1);
1626 }
1627 }
1628 // canonicalize equivalent to ll == rl
1629 if (LL == RR && LR == RL) {
1630 Op1 = ISD::getSetCCSwappedOperands(Op1);
1631 std::swap(RL, RR);
1632 }
1633 if (LL == RL && LR == RR) {
1634 bool isInteger = MVT::isInteger(LL.getValueType());
1635 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1636 if (Result != ISD::SETCC_INVALID)
1637 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1638 }
1639 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001640
1641 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1642 if (N0.getOpcode() == N1.getOpcode()) {
1643 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1644 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001645 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001646
Nate Begemande996292006-02-03 22:24:05 +00001647 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1648 // fold (and (sra)) -> (and (srl)) when possible.
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001649 if (!MVT::isVector(VT) &&
1650 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001651 return SDOperand(N, 0);
Nate Begemanded49632005-10-13 03:11:28 +00001652 // fold (zext_inreg (extload x)) -> (zextload x)
Evan Cheng83060c52007-03-07 08:07:03 +00001653 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
Evan Cheng466685d2006-10-09 20:57:25 +00001654 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001655 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001656 // If we zero all the possible extended bits, then we can turn this into
1657 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001658 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001659 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001660 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1661 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001662 LN0->getSrcValueOffset(), EVT,
1663 LN0->isVolatile(),
1664 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001665 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001666 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001667 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001668 }
1669 }
1670 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00001671 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1672 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001673 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00001674 MVT::ValueType EVT = LN0->getLoadedVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001675 // If we zero all the possible extended bits, then we can turn this into
1676 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmanea859be2007-06-22 14:59:07 +00001677 if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Evan Chengc5484282006-10-04 00:56:09 +00001678 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001679 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1680 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001681 LN0->getSrcValueOffset(), EVT,
1682 LN0->isVolatile(),
1683 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001684 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001685 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001686 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001687 }
1688 }
Chris Lattner15045b62006-02-28 06:35:35 +00001689
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001690 // fold (and (load x), 255) -> (zextload x, i8)
1691 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng466685d2006-10-09 20:57:25 +00001692 if (N1C && N0.getOpcode() == ISD::LOAD) {
1693 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1694 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Evan Cheng83060c52007-03-07 08:07:03 +00001695 LN0->getAddressingMode() == ISD::UNINDEXED &&
Evan Cheng466685d2006-10-09 20:57:25 +00001696 N0.hasOneUse()) {
1697 MVT::ValueType EVT, LoadedVT;
1698 if (N1C->getValue() == 255)
1699 EVT = MVT::i8;
1700 else if (N1C->getValue() == 65535)
1701 EVT = MVT::i16;
1702 else if (N1C->getValue() == ~0U)
1703 EVT = MVT::i32;
1704 else
1705 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001706
Evan Cheng2e49f092006-10-11 07:10:22 +00001707 LoadedVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001708 if (EVT != MVT::Other && LoadedVT > EVT &&
1709 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1710 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1711 // For big endian targets, we need to add an offset to the pointer to
1712 // load the correct bytes. For little endian systems, we merely need to
1713 // read fewer bytes from the same pointer.
1714 unsigned PtrOff =
1715 (MVT::getSizeInBits(LoadedVT) - MVT::getSizeInBits(EVT)) / 8;
1716 SDOperand NewPtr = LN0->getBasePtr();
1717 if (!TLI.isLittleEndian())
1718 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1719 DAG.getConstant(PtrOff, PtrType));
1720 AddToWorkList(NewPtr.Val);
1721 SDOperand Load =
1722 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001723 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
1724 LN0->isVolatile(), LN0->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001725 AddToWorkList(N);
1726 CombineTo(N0.Val, Load, Load.getValue(1));
1727 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1728 }
Chris Lattner15045b62006-02-28 06:35:35 +00001729 }
1730 }
1731
Nate Begeman83e75ec2005-09-06 04:43:02 +00001732 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001733}
1734
Nate Begeman83e75ec2005-09-06 04:43:02 +00001735SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001736 SDOperand N0 = N->getOperand(0);
1737 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001738 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001739 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1740 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001741 MVT::ValueType VT = N1.getValueType();
1742 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001743
Dan Gohman7f321562007-06-25 16:23:39 +00001744 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001745 if (MVT::isVector(VT)) {
1746 SDOperand FoldedVOp = SimplifyVBinOp(N);
1747 if (FoldedVOp.Val) return FoldedVOp;
1748 }
Dan Gohman7f321562007-06-25 16:23:39 +00001749
Dan Gohman613e0d82007-07-03 14:03:57 +00001750 // fold (or x, undef) -> -1
Dan Gohmand595b5f2007-07-10 14:20:37 +00001751 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Chris Lattnere094f542007-07-09 16:16:34 +00001752 return DAG.getConstant(~0ULL, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001753 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001754 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001755 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001756 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001757 if (N0C && !N1C)
1758 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001759 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001760 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001761 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001762 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001763 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001764 return N1;
1765 // fold (or x, c) -> c iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001766 if (N1C &&
Dan Gohmanea859be2007-06-22 14:59:07 +00001767 DAG.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001768 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001769 // reassociate or
1770 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1771 if (ROR.Val != 0)
1772 return ROR;
1773 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1774 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001775 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001776 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1777 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1778 N1),
1779 DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001780 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001781 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1782 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1783 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1784 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1785
1786 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1787 MVT::isInteger(LL.getValueType())) {
1788 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1789 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
1790 if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1791 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1792 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001793 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001794 return DAG.getSetCC(VT, ORNode, LR, Op1);
1795 }
1796 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1797 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1798 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1799 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1800 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001801 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001802 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1803 }
1804 }
1805 // canonicalize equivalent to ll == rl
1806 if (LL == RR && LR == RL) {
1807 Op1 = ISD::getSetCCSwappedOperands(Op1);
1808 std::swap(RL, RR);
1809 }
1810 if (LL == RL && LR == RR) {
1811 bool isInteger = MVT::isInteger(LL.getValueType());
1812 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1813 if (Result != ISD::SETCC_INVALID)
1814 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1815 }
1816 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001817
1818 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1819 if (N0.getOpcode() == N1.getOpcode()) {
1820 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1821 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001822 }
Chris Lattner516b9622006-09-14 20:50:57 +00001823
Chris Lattner1ec72732006-09-14 21:11:37 +00001824 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1825 if (N0.getOpcode() == ISD::AND &&
1826 N1.getOpcode() == ISD::AND &&
1827 N0.getOperand(1).getOpcode() == ISD::Constant &&
1828 N1.getOperand(1).getOpcode() == ISD::Constant &&
1829 // Don't increase # computations.
1830 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1831 // We can only do this xform if we know that bits from X that are set in C2
1832 // but not in C1 are already zero. Likewise for Y.
1833 uint64_t LHSMask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1834 uint64_t RHSMask = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1835
Dan Gohmanea859be2007-06-22 14:59:07 +00001836 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1837 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Chris Lattner1ec72732006-09-14 21:11:37 +00001838 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1839 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1840 }
1841 }
1842
1843
Chris Lattner516b9622006-09-14 20:50:57 +00001844 // See if this is some rotate idiom.
1845 if (SDNode *Rot = MatchRotate(N0, N1))
1846 return SDOperand(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00001847
Nate Begeman83e75ec2005-09-06 04:43:02 +00001848 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001849}
1850
Chris Lattner516b9622006-09-14 20:50:57 +00001851
1852/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1853static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1854 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00001855 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001856 Mask = Op.getOperand(1);
1857 Op = Op.getOperand(0);
1858 } else {
1859 return false;
1860 }
1861 }
1862
1863 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1864 Shift = Op;
1865 return true;
1866 }
1867 return false;
1868}
1869
1870
1871// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1872// idioms for rotate, and if the target supports rotation instructions, generate
1873// a rot[lr].
1874SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1875 // Must be a legal type. Expanded an promoted things won't work with rotates.
1876 MVT::ValueType VT = LHS.getValueType();
1877 if (!TLI.isTypeLegal(VT)) return 0;
1878
1879 // The target must have at least one rotate flavor.
1880 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1881 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1882 if (!HasROTL && !HasROTR) return 0;
1883
1884 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1885 SDOperand LHSShift; // The shift.
1886 SDOperand LHSMask; // AND value if any.
1887 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1888 return 0; // Not part of a rotate.
1889
1890 SDOperand RHSShift; // The shift.
1891 SDOperand RHSMask; // AND value if any.
1892 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1893 return 0; // Not part of a rotate.
1894
1895 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1896 return 0; // Not shifting the same value.
1897
1898 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1899 return 0; // Shifts must disagree.
1900
1901 // Canonicalize shl to left side in a shl/srl pair.
1902 if (RHSShift.getOpcode() == ISD::SHL) {
1903 std::swap(LHS, RHS);
1904 std::swap(LHSShift, RHSShift);
1905 std::swap(LHSMask , RHSMask );
1906 }
1907
1908 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Scott Michelc9dc1142007-04-02 21:36:32 +00001909 SDOperand LHSShiftArg = LHSShift.getOperand(0);
1910 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1911 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00001912
1913 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1914 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00001915 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
1916 RHSShiftAmt.getOpcode() == ISD::Constant) {
1917 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
1918 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
Chris Lattner516b9622006-09-14 20:50:57 +00001919 if ((LShVal + RShVal) != OpSizeInBits)
1920 return 0;
1921
1922 SDOperand Rot;
1923 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001924 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001925 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001926 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00001927
1928 // If there is an AND of either shifted operand, apply it to the result.
1929 if (LHSMask.Val || RHSMask.Val) {
1930 uint64_t Mask = MVT::getIntVTBitMask(VT);
1931
1932 if (LHSMask.Val) {
1933 uint64_t RHSBits = (1ULL << LShVal)-1;
1934 Mask &= cast<ConstantSDNode>(LHSMask)->getValue() | RHSBits;
1935 }
1936 if (RHSMask.Val) {
1937 uint64_t LHSBits = ~((1ULL << (OpSizeInBits-RShVal))-1);
1938 Mask &= cast<ConstantSDNode>(RHSMask)->getValue() | LHSBits;
1939 }
1940
1941 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
1942 }
1943
1944 return Rot.Val;
1945 }
1946
1947 // If there is a mask here, and we have a variable shift, we can't be sure
1948 // that we're masking out the right stuff.
1949 if (LHSMask.Val || RHSMask.Val)
1950 return 0;
1951
1952 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1953 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001954 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
1955 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001956 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001957 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001958 if (SUBC->getValue() == OpSizeInBits)
1959 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001960 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001961 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001962 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001963 }
1964 }
1965
1966 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1967 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00001968 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
1969 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00001970 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00001971 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001972 if (SUBC->getValue() == OpSizeInBits)
1973 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00001974 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00001975 else
Scott Michelc9dc1142007-04-02 21:36:32 +00001976 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1977 }
1978 }
1979
1980 // Look for sign/zext/any-extended cases:
1981 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1982 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1983 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
1984 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1985 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1986 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
1987 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
1988 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
1989 if (RExtOp0.getOpcode() == ISD::SUB &&
1990 RExtOp0.getOperand(1) == LExtOp0) {
1991 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1992 // (rotr x, y)
1993 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1994 // (rotl x, (sub 32, y))
1995 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
1996 if (SUBC->getValue() == OpSizeInBits) {
1997 if (HasROTL)
1998 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
1999 else
2000 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2001 }
2002 }
2003 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2004 RExtOp0 == LExtOp0.getOperand(1)) {
2005 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2006 // (rotl x, y)
2007 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2008 // (rotr x, (sub 32, y))
2009 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
2010 if (SUBC->getValue() == OpSizeInBits) {
2011 if (HasROTL)
2012 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2013 else
2014 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2015 }
2016 }
Chris Lattner516b9622006-09-14 20:50:57 +00002017 }
2018 }
2019
2020 return 0;
2021}
2022
2023
Nate Begeman83e75ec2005-09-06 04:43:02 +00002024SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002025 SDOperand N0 = N->getOperand(0);
2026 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002027 SDOperand LHS, RHS, CC;
2028 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2029 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002030 MVT::ValueType VT = N0.getValueType();
2031
Dan Gohman7f321562007-06-25 16:23:39 +00002032 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00002033 if (MVT::isVector(VT)) {
2034 SDOperand FoldedVOp = SimplifyVBinOp(N);
2035 if (FoldedVOp.Val) return FoldedVOp;
2036 }
Dan Gohman7f321562007-06-25 16:23:39 +00002037
Dan Gohman613e0d82007-07-03 14:03:57 +00002038 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00002039 if (N0.getOpcode() == ISD::UNDEF)
2040 return N0;
2041 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002042 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002043 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002044 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002045 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00002046 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002047 if (N0C && !N1C)
2048 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002049 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002050 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002051 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00002052 // reassociate xor
2053 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2054 if (RXOR.Val != 0)
2055 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002056 // fold !(x cc y) -> (x !cc y)
Nate Begeman646d7e22005-09-02 21:18:40 +00002057 if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
2058 bool isInt = MVT::isInteger(LHS.getValueType());
2059 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2060 isInt);
2061 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002062 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002063 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002064 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002065 assert(0 && "Unhandled SetCC Equivalent!");
2066 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002067 }
Chris Lattner61c5ff42007-09-10 21:39:07 +00002068 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
2069 if (N1C && N1C->getValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
2070 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2071 SDOperand V = N0.getOperand(0);
2072 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00002073 DAG.getConstant(1, V.getValueType()));
Chris Lattner61c5ff42007-09-10 21:39:07 +00002074 AddToWorkList(V.Val);
2075 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2076 }
2077
Nate Begeman99801192005-09-07 23:25:52 +00002078 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Chris Lattner734c91d2006-11-10 21:37:15 +00002079 if (N1C && N1C->getValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00002080 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002081 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002082 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2083 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002084 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2085 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002086 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002087 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002088 }
2089 }
Nate Begeman99801192005-09-07 23:25:52 +00002090 // fold !(x or y) -> (!x and !y) iff x or y are constants
2091 if (N1C && N1C->isAllOnesValue() &&
2092 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002093 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002094 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2095 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002096 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2097 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002098 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002099 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002100 }
2101 }
Nate Begeman223df222005-09-08 20:18:10 +00002102 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2103 if (N1C && N0.getOpcode() == ISD::XOR) {
2104 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2105 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2106 if (N00C)
2107 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
2108 DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
2109 if (N01C)
2110 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
2111 DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
2112 }
2113 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00002114 if (N0 == N1) {
2115 if (!MVT::isVector(VT)) {
2116 return DAG.getConstant(0, VT);
2117 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2118 // Produce a vector of zeros.
Dan Gohman51eaa862007-06-14 22:58:02 +00002119 SDOperand El = DAG.getConstant(0, MVT::getVectorElementType(VT));
Chris Lattner4fbdd592006-03-28 19:11:05 +00002120 std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002121 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4fbdd592006-03-28 19:11:05 +00002122 }
2123 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002124
2125 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2126 if (N0.getOpcode() == N1.getOpcode()) {
2127 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2128 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002129 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002130
Chris Lattner3e104b12006-04-08 04:15:24 +00002131 // Simplify the expression using non-local knowledge.
2132 if (!MVT::isVector(VT) &&
2133 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002134 return SDOperand(N, 0);
Chris Lattner3e104b12006-04-08 04:15:24 +00002135
Nate Begeman83e75ec2005-09-06 04:43:02 +00002136 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002137}
2138
Nate Begeman83e75ec2005-09-06 04:43:02 +00002139SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002140 SDOperand N0 = N->getOperand(0);
2141 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002142 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2143 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002144 MVT::ValueType VT = N0.getValueType();
2145 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2146
2147 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002148 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002149 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002150 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002151 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002152 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002153 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002154 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002155 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002156 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002157 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002158 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002159 // if (shl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002160 if (DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002161 return DAG.getConstant(0, VT);
Chris Lattner61a4c072007-04-18 03:06:49 +00002162 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002163 return SDOperand(N, 0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002164 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002165 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002166 N0.getOperand(1).getOpcode() == ISD::Constant) {
2167 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002168 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002169 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002170 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002171 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002172 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002173 }
2174 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2175 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002176 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002177 N0.getOperand(1).getOpcode() == ISD::Constant) {
2178 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002179 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002180 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2181 DAG.getConstant(~0ULL << c1, VT));
2182 if (c2 > c1)
2183 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00002184 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002185 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00002186 return DAG.getNode(ISD::SRL, VT, Mask,
2187 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002188 }
2189 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002190 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00002191 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002192 DAG.getConstant(~0ULL << N1C->getValue(), VT));
2193 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002194}
2195
Nate Begeman83e75ec2005-09-06 04:43:02 +00002196SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002197 SDOperand N0 = N->getOperand(0);
2198 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002199 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2200 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002201 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002202
2203 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002204 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002205 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002206 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002207 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002208 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002209 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002210 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002211 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002212 // fold (sra x, c >= size(x)) -> undef
Nate Begemanfb7217b2006-02-17 19:54:08 +00002213 if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002214 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002215 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002216 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002217 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002218 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2219 // sext_inreg.
2220 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
2221 unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
2222 MVT::ValueType EVT;
2223 switch (LowBits) {
2224 default: EVT = MVT::Other; break;
2225 case 1: EVT = MVT::i1; break;
2226 case 8: EVT = MVT::i8; break;
2227 case 16: EVT = MVT::i16; break;
2228 case 32: EVT = MVT::i32; break;
2229 }
2230 if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
2231 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2232 DAG.getValueType(EVT));
2233 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002234
2235 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2236 if (N1C && N0.getOpcode() == ISD::SRA) {
2237 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2238 unsigned Sum = N1C->getValue() + C1->getValue();
2239 if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
2240 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2241 DAG.getConstant(Sum, N1C->getValueType(0)));
2242 }
2243 }
2244
Chris Lattnera8504462006-05-08 20:51:54 +00002245 // Simplify, based on bits shifted out of the LHS.
2246 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2247 return SDOperand(N, 0);
2248
2249
Nate Begeman1d4d4142005-09-01 00:19:25 +00002250 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohmanea859be2007-06-22 14:59:07 +00002251 if (DAG.MaskedValueIsZero(N0, MVT::getIntVTSignBit(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002252 return DAG.getNode(ISD::SRL, VT, N0, N1);
2253 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002254}
2255
Nate Begeman83e75ec2005-09-06 04:43:02 +00002256SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002257 SDOperand N0 = N->getOperand(0);
2258 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002259 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2260 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002261 MVT::ValueType VT = N0.getValueType();
2262 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2263
2264 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002265 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002266 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002267 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002268 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002269 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002270 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002271 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002272 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002273 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002274 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002275 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002276 // if (srl x, c) is known to be zero, return 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002277 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002278 return DAG.getConstant(0, VT);
Chris Lattnerec06e9a2007-04-18 03:05:22 +00002279
Nate Begeman1d4d4142005-09-01 00:19:25 +00002280 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002281 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002282 N0.getOperand(1).getOpcode() == ISD::Constant) {
2283 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002284 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002285 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002286 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002287 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002288 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002289 }
Chris Lattner350bec02006-04-02 06:11:11 +00002290
Chris Lattner06afe072006-05-05 22:53:17 +00002291 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2292 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2293 // Shifting in all undef bits?
2294 MVT::ValueType SmallVT = N0.getOperand(0).getValueType();
2295 if (N1C->getValue() >= MVT::getSizeInBits(SmallVT))
2296 return DAG.getNode(ISD::UNDEF, VT);
2297
2298 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2299 AddToWorkList(SmallShift.Val);
2300 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2301 }
2302
Chris Lattner3657ffe2006-10-12 20:23:19 +00002303 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2304 // bit, which is unmodified by sra.
2305 if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
2306 if (N0.getOpcode() == ISD::SRA)
2307 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2308 }
2309
Chris Lattner350bec02006-04-02 06:11:11 +00002310 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2311 if (N1C && N0.getOpcode() == ISD::CTLZ &&
2312 N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
2313 uint64_t KnownZero, KnownOne, Mask = MVT::getIntVTBitMask(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002314 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Chris Lattner350bec02006-04-02 06:11:11 +00002315
2316 // If any of the input bits are KnownOne, then the input couldn't be all
2317 // zeros, thus the result of the srl will always be zero.
2318 if (KnownOne) return DAG.getConstant(0, VT);
2319
2320 // If all of the bits input the to ctlz node are known to be zero, then
2321 // the result of the ctlz is "32" and the result of the shift is one.
2322 uint64_t UnknownBits = ~KnownZero & Mask;
2323 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2324
2325 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2326 if ((UnknownBits & (UnknownBits-1)) == 0) {
2327 // Okay, we know that only that the single bit specified by UnknownBits
2328 // could be set on input to the CTLZ node. If this bit is set, the SRL
2329 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2330 // to an SRL,XOR pair, which is likely to simplify more.
2331 unsigned ShAmt = CountTrailingZeros_64(UnknownBits);
2332 SDOperand Op = N0.getOperand(0);
2333 if (ShAmt) {
2334 Op = DAG.getNode(ISD::SRL, VT, Op,
2335 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2336 AddToWorkList(Op.Val);
2337 }
2338 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2339 }
2340 }
Chris Lattner61a4c072007-04-18 03:06:49 +00002341
2342 // fold operands of srl based on knowledge that the low bits are not
2343 // demanded.
2344 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2345 return SDOperand(N, 0);
2346
Nate Begeman83e75ec2005-09-06 04:43:02 +00002347 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002348}
2349
Nate Begeman83e75ec2005-09-06 04:43:02 +00002350SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002351 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002352 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002353
2354 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002355 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002356 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002357 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002358}
2359
Nate Begeman83e75ec2005-09-06 04:43:02 +00002360SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002361 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002362 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002363
2364 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002365 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002366 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002367 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002368}
2369
Nate Begeman83e75ec2005-09-06 04:43:02 +00002370SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002371 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002372 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002373
2374 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002375 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002376 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002377 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002378}
2379
Nate Begeman452d7be2005-09-16 00:54:12 +00002380SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2381 SDOperand N0 = N->getOperand(0);
2382 SDOperand N1 = N->getOperand(1);
2383 SDOperand N2 = N->getOperand(2);
2384 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2385 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2386 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2387 MVT::ValueType VT = N->getValueType(0);
Evan Cheng571c4782007-08-18 05:57:05 +00002388 MVT::ValueType VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00002389
Nate Begeman452d7be2005-09-16 00:54:12 +00002390 // fold select C, X, X -> X
2391 if (N1 == N2)
2392 return N1;
2393 // fold select true, X, Y -> X
2394 if (N0C && !N0C->isNullValue())
2395 return N1;
2396 // fold select false, X, Y -> Y
2397 if (N0C && N0C->isNullValue())
2398 return N2;
2399 // fold select C, 1, X -> C | X
Nate Begeman44728a72005-09-19 22:34:01 +00002400 if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
Nate Begeman452d7be2005-09-16 00:54:12 +00002401 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Cheng571c4782007-08-18 05:57:05 +00002402 // fold select C, 0, 1 -> ~C
2403 if (MVT::isInteger(VT) && MVT::isInteger(VT0) &&
2404 N1C && N2C && N1C->isNullValue() && N2C->getValue() == 1) {
2405 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2406 if (VT == VT0)
2407 return XORNode;
2408 AddToWorkList(XORNode.Val);
2409 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(VT0))
2410 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2411 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2412 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002413 // fold select C, 0, X -> ~C & X
Evan Cheng571c4782007-08-18 05:57:05 +00002414 if (VT == VT0 && N1C && N1C->isNullValue()) {
Nate Begeman452d7be2005-09-16 00:54:12 +00002415 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002416 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002417 return DAG.getNode(ISD::AND, VT, XORNode, N2);
2418 }
2419 // fold select C, X, 1 -> ~C | X
Evan Cheng571c4782007-08-18 05:57:05 +00002420 if (VT == VT0 && N2C && N2C->getValue() == 1) {
Nate Begeman452d7be2005-09-16 00:54:12 +00002421 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002422 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002423 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2424 }
2425 // fold select C, X, 0 -> C & X
2426 // FIXME: this should check for C type == X type, not i1?
2427 if (MVT::i1 == VT && N2C && N2C->isNullValue())
2428 return DAG.getNode(ISD::AND, VT, N0, N1);
2429 // fold X ? X : Y --> X ? 1 : Y --> X | Y
2430 if (MVT::i1 == VT && N0 == N1)
2431 return DAG.getNode(ISD::OR, VT, N0, N2);
2432 // fold X ? Y : X --> X ? Y : 0 --> X & Y
2433 if (MVT::i1 == VT && N0 == N2)
2434 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner729c6d12006-05-27 00:43:02 +00002435
Chris Lattner40c62d52005-10-18 06:04:22 +00002436 // If we can fold this based on the true/false value, do so.
2437 if (SimplifySelectOps(N, N1, N2))
Chris Lattner729c6d12006-05-27 00:43:02 +00002438 return SDOperand(N, 0); // Don't revisit N.
2439
Nate Begeman44728a72005-09-19 22:34:01 +00002440 // fold selects based on a setcc into other things, such as min/max/abs
2441 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman750ac1b2006-02-01 07:19:44 +00002442 // FIXME:
2443 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2444 // having to say they don't support SELECT_CC on every type the DAG knows
2445 // about, since there is no way to mark an opcode illegal at all value types
2446 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2447 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2448 N1, N2, N0.getOperand(2));
2449 else
2450 return SimplifySelect(N0, N1, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00002451 return SDOperand();
2452}
2453
2454SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00002455 SDOperand N0 = N->getOperand(0);
2456 SDOperand N1 = N->getOperand(1);
2457 SDOperand N2 = N->getOperand(2);
2458 SDOperand N3 = N->getOperand(3);
2459 SDOperand N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00002460 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2461
Nate Begeman44728a72005-09-19 22:34:01 +00002462 // fold select_cc lhs, rhs, x, x, cc -> x
2463 if (N2 == N3)
2464 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00002465
Chris Lattner5f42a242006-09-20 06:19:26 +00002466 // Determine if the condition we're dealing with is constant
2467 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00002468 if (SCC.Val) AddToWorkList(SCC.Val);
Chris Lattner5f42a242006-09-20 06:19:26 +00002469
2470 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
2471 if (SCCC->getValue())
2472 return N2; // cond always true -> true val
2473 else
2474 return N3; // cond always false -> false val
2475 }
2476
2477 // Fold to a simpler select_cc
2478 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2479 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2480 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2481 SCC.getOperand(2));
2482
Chris Lattner40c62d52005-10-18 06:04:22 +00002483 // If we can fold this based on the true/false value, do so.
2484 if (SimplifySelectOps(N, N2, N3))
Chris Lattner729c6d12006-05-27 00:43:02 +00002485 return SDOperand(N, 0); // Don't revisit N.
Chris Lattner40c62d52005-10-18 06:04:22 +00002486
Nate Begeman44728a72005-09-19 22:34:01 +00002487 // fold select_cc into other things, such as min/max/abs
2488 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00002489}
2490
2491SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2492 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2493 cast<CondCodeSDNode>(N->getOperand(2))->get());
2494}
2495
Nate Begeman83e75ec2005-09-06 04:43:02 +00002496SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002497 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002498 MVT::ValueType VT = N->getValueType(0);
2499
Nate Begeman1d4d4142005-09-01 00:19:25 +00002500 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002501 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002502 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Chris Lattner310b5782006-05-06 23:06:26 +00002503
Nate Begeman1d4d4142005-09-01 00:19:25 +00002504 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002505 // fold (sext (aext x)) -> (sext x)
2506 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002507 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattner310b5782006-05-06 23:06:26 +00002508
Evan Chengc88138f2007-03-22 01:54:19 +00002509 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2510 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Chris Lattner22558872007-02-26 03:13:59 +00002511 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002512 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002513 if (NarrowLoad.Val) {
2514 if (NarrowLoad.Val != N0.Val)
2515 CombineTo(N0.Val, NarrowLoad);
2516 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2517 }
Evan Chengc88138f2007-03-22 01:54:19 +00002518 }
2519
2520 // See if the value being truncated is already sign extended. If so, just
2521 // eliminate the trunc/sext pair.
2522 if (N0.getOpcode() == ISD::TRUNCATE) {
Chris Lattner6007b842006-09-21 06:00:20 +00002523 SDOperand Op = N0.getOperand(0);
Chris Lattner22558872007-02-26 03:13:59 +00002524 unsigned OpBits = MVT::getSizeInBits(Op.getValueType());
2525 unsigned MidBits = MVT::getSizeInBits(N0.getValueType());
2526 unsigned DestBits = MVT::getSizeInBits(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002527 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Chris Lattner22558872007-02-26 03:13:59 +00002528
2529 if (OpBits == DestBits) {
2530 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2531 // bits, it is already ready.
2532 if (NumSignBits > DestBits-MidBits)
2533 return Op;
2534 } else if (OpBits < DestBits) {
2535 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2536 // bits, just sext from i32.
2537 if (NumSignBits > OpBits-MidBits)
2538 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2539 } else {
2540 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2541 // bits, just truncate to i32.
2542 if (NumSignBits > OpBits-MidBits)
2543 return DAG.getNode(ISD::TRUNCATE, VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00002544 }
Chris Lattner22558872007-02-26 03:13:59 +00002545
2546 // fold (sext (truncate x)) -> (sextinreg x).
2547 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2548 N0.getValueType())) {
2549 if (Op.getValueType() < VT)
2550 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2551 else if (Op.getValueType() > VT)
2552 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2553 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2554 DAG.getValueType(N0.getValueType()));
2555 }
Chris Lattner6007b842006-09-21 06:00:20 +00002556 }
Chris Lattner310b5782006-05-06 23:06:26 +00002557
Evan Cheng110dec22005-12-14 02:19:23 +00002558 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00002559 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00002560 (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
Evan Cheng466685d2006-10-09 20:57:25 +00002561 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2562 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2563 LN0->getBasePtr(), LN0->getSrcValue(),
2564 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002565 N0.getValueType(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002566 LN0->isVolatile(),
2567 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002568 CombineTo(N, ExtLoad);
Chris Lattnerf9884052005-10-13 21:52:31 +00002569 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2570 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002571 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begeman3df4d522005-10-12 20:40:40 +00002572 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002573
2574 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2575 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002576 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2577 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002578 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002579 MVT::ValueType EVT = LN0->getLoadedVT();
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002580 if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2581 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2582 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002583 LN0->getSrcValueOffset(), EVT,
2584 LN0->isVolatile(),
2585 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002586 CombineTo(N, ExtLoad);
2587 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2588 ExtLoad.getValue(1));
2589 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2590 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002591 }
2592
Chris Lattner20a35c32007-04-11 05:32:27 +00002593 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2594 if (N0.getOpcode() == ISD::SETCC) {
2595 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002596 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2597 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2598 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2599 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002600 }
2601
Nate Begeman83e75ec2005-09-06 04:43:02 +00002602 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002603}
2604
Nate Begeman83e75ec2005-09-06 04:43:02 +00002605SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002606 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002607 MVT::ValueType VT = N->getValueType(0);
2608
Nate Begeman1d4d4142005-09-01 00:19:25 +00002609 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002610 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002611 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002612 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002613 // fold (zext (aext x)) -> (zext x)
2614 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002615 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00002616
Evan Chengc88138f2007-03-22 01:54:19 +00002617 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2618 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00002619 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002620 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002621 if (NarrowLoad.Val) {
2622 if (NarrowLoad.Val != N0.Val)
2623 CombineTo(N0.Val, NarrowLoad);
2624 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2625 }
Evan Chengc88138f2007-03-22 01:54:19 +00002626 }
2627
Chris Lattner6007b842006-09-21 06:00:20 +00002628 // fold (zext (truncate x)) -> (and x, mask)
2629 if (N0.getOpcode() == ISD::TRUNCATE &&
2630 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2631 SDOperand Op = N0.getOperand(0);
2632 if (Op.getValueType() < VT) {
2633 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2634 } else if (Op.getValueType() > VT) {
2635 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2636 }
2637 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2638 }
2639
Chris Lattner111c2282006-09-21 06:14:31 +00002640 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2641 if (N0.getOpcode() == ISD::AND &&
2642 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2643 N0.getOperand(1).getOpcode() == ISD::Constant) {
2644 SDOperand X = N0.getOperand(0).getOperand(0);
2645 if (X.getValueType() < VT) {
2646 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2647 } else if (X.getValueType() > VT) {
2648 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2649 }
2650 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2651 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2652 }
2653
Evan Cheng110dec22005-12-14 02:19:23 +00002654 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00002655 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00002656 (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002657 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2658 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2659 LN0->getBasePtr(), LN0->getSrcValue(),
2660 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002661 N0.getValueType(),
2662 LN0->isVolatile(),
2663 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002664 CombineTo(N, ExtLoad);
Evan Cheng110dec22005-12-14 02:19:23 +00002665 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2666 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002667 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng110dec22005-12-14 02:19:23 +00002668 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002669
2670 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2671 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002672 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2673 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002674 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002675 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002676 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2677 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002678 LN0->getSrcValueOffset(), EVT,
2679 LN0->isVolatile(),
2680 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002681 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002682 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2683 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002684 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002685 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002686
2687 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2688 if (N0.getOpcode() == ISD::SETCC) {
2689 SDOperand SCC =
2690 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2691 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00002692 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2693 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002694 }
2695
Nate Begeman83e75ec2005-09-06 04:43:02 +00002696 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002697}
2698
Chris Lattner5ffc0662006-05-05 05:58:59 +00002699SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
2700 SDOperand N0 = N->getOperand(0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00002701 MVT::ValueType VT = N->getValueType(0);
2702
2703 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00002704 if (isa<ConstantSDNode>(N0))
Chris Lattner5ffc0662006-05-05 05:58:59 +00002705 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
2706 // fold (aext (aext x)) -> (aext x)
2707 // fold (aext (zext x)) -> (zext x)
2708 // fold (aext (sext x)) -> (sext x)
2709 if (N0.getOpcode() == ISD::ANY_EXTEND ||
2710 N0.getOpcode() == ISD::ZERO_EXTEND ||
2711 N0.getOpcode() == ISD::SIGN_EXTEND)
2712 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
2713
Evan Chengc88138f2007-03-22 01:54:19 +00002714 // fold (aext (truncate (load x))) -> (aext (smaller load x))
2715 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
2716 if (N0.getOpcode() == ISD::TRUNCATE) {
2717 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002718 if (NarrowLoad.Val) {
2719 if (NarrowLoad.Val != N0.Val)
2720 CombineTo(N0.Val, NarrowLoad);
2721 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
2722 }
Evan Chengc88138f2007-03-22 01:54:19 +00002723 }
2724
Chris Lattner84750582006-09-20 06:29:17 +00002725 // fold (aext (truncate x))
2726 if (N0.getOpcode() == ISD::TRUNCATE) {
2727 SDOperand TruncOp = N0.getOperand(0);
2728 if (TruncOp.getValueType() == VT)
2729 return TruncOp; // x iff x size == zext size.
2730 if (TruncOp.getValueType() > VT)
2731 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
2732 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
2733 }
Chris Lattner0e4b9222006-09-21 06:40:43 +00002734
2735 // fold (aext (and (trunc x), cst)) -> (and x, cst).
2736 if (N0.getOpcode() == ISD::AND &&
2737 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2738 N0.getOperand(1).getOpcode() == ISD::Constant) {
2739 SDOperand X = N0.getOperand(0).getOperand(0);
2740 if (X.getValueType() < VT) {
2741 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2742 } else if (X.getValueType() > VT) {
2743 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2744 }
2745 uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2746 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2747 }
2748
Chris Lattner5ffc0662006-05-05 05:58:59 +00002749 // fold (aext (load x)) -> (aext (truncate (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00002750 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00002751 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002752 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2753 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
2754 LN0->getBasePtr(), LN0->getSrcValue(),
2755 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002756 N0.getValueType(),
2757 LN0->isVolatile(),
2758 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002759 CombineTo(N, ExtLoad);
2760 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2761 ExtLoad.getValue(1));
2762 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2763 }
2764
2765 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
2766 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
2767 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002768 if (N0.getOpcode() == ISD::LOAD &&
2769 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng466685d2006-10-09 20:57:25 +00002770 N0.hasOneUse()) {
2771 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng2e49f092006-10-11 07:10:22 +00002772 MVT::ValueType EVT = LN0->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002773 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
2774 LN0->getChain(), LN0->getBasePtr(),
2775 LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002776 LN0->getSrcValueOffset(), EVT,
2777 LN0->isVolatile(),
2778 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00002779 CombineTo(N, ExtLoad);
2780 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2781 ExtLoad.getValue(1));
2782 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2783 }
Chris Lattner20a35c32007-04-11 05:32:27 +00002784
2785 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2786 if (N0.getOpcode() == ISD::SETCC) {
2787 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002788 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2789 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00002790 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Chris Lattner1eba01e2007-04-11 06:50:51 +00002791 if (SCC.Val)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00002792 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002793 }
2794
Chris Lattner5ffc0662006-05-05 05:58:59 +00002795 return SDOperand();
2796}
2797
Chris Lattner2b4c2792007-10-13 06:35:54 +00002798/// GetDemandedBits - See if the specified operand can be simplified with the
2799/// knowledge that only the bits specified by Mask are used. If so, return the
2800/// simpler operand, otherwise return a null SDOperand.
2801SDOperand DAGCombiner::GetDemandedBits(SDOperand V, uint64_t Mask) {
2802 switch (V.getOpcode()) {
2803 default: break;
2804 case ISD::OR:
2805 case ISD::XOR:
2806 // If the LHS or RHS don't contribute bits to the or, drop them.
2807 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
2808 return V.getOperand(1);
2809 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
2810 return V.getOperand(0);
2811 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00002812 case ISD::SRL:
2813 // Only look at single-use SRLs.
2814 if (!V.Val->hasOneUse())
2815 break;
2816 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
2817 // See if we can recursively simplify the LHS.
2818 unsigned Amt = RHSC->getValue();
2819 Mask = (Mask << Amt) & MVT::getIntVTBitMask(V.getValueType());
2820 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), Mask);
2821 if (SimplifyLHS.Val) {
2822 return DAG.getNode(ISD::SRL, V.getValueType(),
2823 SimplifyLHS, V.getOperand(1));
2824 }
2825 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00002826 }
2827 return SDOperand();
2828}
2829
Evan Chengc88138f2007-03-22 01:54:19 +00002830/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
2831/// bits and then truncated to a narrower type and where N is a multiple
2832/// of number of bits of the narrower type, transform it to a narrower load
2833/// from address + N / num of bits of new type. If the result is to be
2834/// extended, also fold the extension to form a extending load.
2835SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
2836 unsigned Opc = N->getOpcode();
2837 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
2838 SDOperand N0 = N->getOperand(0);
2839 MVT::ValueType VT = N->getValueType(0);
2840 MVT::ValueType EVT = N->getValueType(0);
2841
Evan Chenge177e302007-03-23 22:13:36 +00002842 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
2843 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00002844 if (Opc == ISD::SIGN_EXTEND_INREG) {
2845 ExtType = ISD::SEXTLOAD;
2846 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Evan Chenge177e302007-03-23 22:13:36 +00002847 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
2848 return SDOperand();
Evan Chengc88138f2007-03-22 01:54:19 +00002849 }
2850
2851 unsigned EVTBits = MVT::getSizeInBits(EVT);
2852 unsigned ShAmt = 0;
Evan Chengb37b80c2007-03-23 20:55:21 +00002853 bool CombineSRL = false;
Evan Chengc88138f2007-03-22 01:54:19 +00002854 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
2855 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2856 ShAmt = N01->getValue();
2857 // Is the shift amount a multiple of size of VT?
2858 if ((ShAmt & (EVTBits-1)) == 0) {
2859 N0 = N0.getOperand(0);
2860 if (MVT::getSizeInBits(N0.getValueType()) <= EVTBits)
2861 return SDOperand();
Evan Chengb37b80c2007-03-23 20:55:21 +00002862 CombineSRL = true;
Evan Chengc88138f2007-03-22 01:54:19 +00002863 }
2864 }
2865 }
2866
2867 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
2868 // Do not allow folding to i1 here. i1 is implicitly stored in memory in
2869 // zero extended form: by shrinking the load, we lose track of the fact
2870 // that it is already zero extended.
2871 // FIXME: This should be reevaluated.
2872 VT != MVT::i1) {
2873 assert(MVT::getSizeInBits(N0.getValueType()) > EVTBits &&
2874 "Cannot truncate to larger type!");
2875 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2876 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Evan Chengdae54ce2007-03-24 00:02:43 +00002877 // For big endian targets, we need to adjust the offset to the pointer to
2878 // load the correct bytes.
2879 if (!TLI.isLittleEndian())
2880 ShAmt = MVT::getSizeInBits(N0.getValueType()) - ShAmt - EVTBits;
2881 uint64_t PtrOff = ShAmt / 8;
Evan Chengc88138f2007-03-22 01:54:19 +00002882 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
2883 DAG.getConstant(PtrOff, PtrType));
2884 AddToWorkList(NewPtr.Val);
2885 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
2886 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002887 LN0->getSrcValue(), LN0->getSrcValueOffset(),
2888 LN0->isVolatile(), LN0->getAlignment())
Evan Chengc88138f2007-03-22 01:54:19 +00002889 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002890 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
2891 LN0->isVolatile(), LN0->getAlignment());
Evan Chengc88138f2007-03-22 01:54:19 +00002892 AddToWorkList(N);
Evan Chengb37b80c2007-03-23 20:55:21 +00002893 if (CombineSRL) {
2894 std::vector<SDNode*> NowDead;
2895 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1), NowDead);
2896 CombineTo(N->getOperand(0).Val, Load);
2897 } else
2898 CombineTo(N0.Val, Load, Load.getValue(1));
Evan Cheng15213b72007-03-26 07:12:51 +00002899 if (ShAmt) {
2900 if (Opc == ISD::SIGN_EXTEND_INREG)
2901 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
2902 else
2903 return DAG.getNode(Opc, VT, Load);
2904 }
Evan Chengc88138f2007-03-22 01:54:19 +00002905 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2906 }
2907
2908 return SDOperand();
2909}
2910
Chris Lattner5ffc0662006-05-05 05:58:59 +00002911
Nate Begeman83e75ec2005-09-06 04:43:02 +00002912SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002913 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00002914 SDOperand N1 = N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002915 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00002916 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Nate Begeman07ed4172005-10-10 21:26:48 +00002917 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002918
Nate Begeman1d4d4142005-09-01 00:19:25 +00002919 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00002920 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Chris Lattner310b5782006-05-06 23:06:26 +00002921 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
Chris Lattneree4ea922006-05-06 09:30:03 +00002922
Chris Lattner541a24f2006-05-06 22:43:44 +00002923 // If the input is already sign extended, just drop the extension.
Dan Gohmanea859be2007-06-22 14:59:07 +00002924 if (DAG.ComputeNumSignBits(N0) >= MVT::getSizeInBits(VT)-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00002925 return N0;
2926
Nate Begeman646d7e22005-09-02 21:18:40 +00002927 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
2928 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
2929 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00002930 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002931 }
Chris Lattner4b37e872006-05-08 21:18:59 +00002932
Chris Lattner95a5e052007-04-17 19:03:21 +00002933 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohmanea859be2007-06-22 14:59:07 +00002934 if (DAG.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
Nate Begemande996292006-02-03 22:24:05 +00002935 return DAG.getZeroExtendInReg(N0, EVT);
Chris Lattner4b37e872006-05-08 21:18:59 +00002936
Chris Lattner95a5e052007-04-17 19:03:21 +00002937 // fold operands of sext_in_reg based on knowledge that the top bits are not
2938 // demanded.
2939 if (SimplifyDemandedBits(SDOperand(N, 0)))
2940 return SDOperand(N, 0);
2941
Evan Chengc88138f2007-03-22 01:54:19 +00002942 // fold (sext_in_reg (load x)) -> (smaller sextload x)
2943 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
2944 SDOperand NarrowLoad = ReduceLoadWidth(N);
2945 if (NarrowLoad.Val)
2946 return NarrowLoad;
2947
Chris Lattner4b37e872006-05-08 21:18:59 +00002948 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
2949 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
2950 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
2951 if (N0.getOpcode() == ISD::SRL) {
2952 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
2953 if (ShAmt->getValue()+EVTBits <= MVT::getSizeInBits(VT)) {
2954 // We can turn this into an SRA iff the input to the SRL is already sign
2955 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00002956 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Chris Lattner4b37e872006-05-08 21:18:59 +00002957 if (MVT::getSizeInBits(VT)-(ShAmt->getValue()+EVTBits) < InSignBits)
2958 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
2959 }
2960 }
Evan Chengc88138f2007-03-22 01:54:19 +00002961
Nate Begemanded49632005-10-13 03:11:28 +00002962 // fold (sext_inreg (extload x)) -> (sextload x)
Evan Chengc5484282006-10-04 00:56:09 +00002963 if (ISD::isEXTLoad(N0.Val) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002964 ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng2e49f092006-10-11 07:10:22 +00002965 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00002966 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002967 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2968 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2969 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002970 LN0->getSrcValueOffset(), EVT,
2971 LN0->isVolatile(),
2972 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002973 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00002974 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002975 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002976 }
2977 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00002978 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
2979 N0.hasOneUse() &&
Evan Cheng2e49f092006-10-11 07:10:22 +00002980 EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00002981 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00002982 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2983 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2984 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002985 LN0->getSrcValueOffset(), EVT,
2986 LN0->isVolatile(),
2987 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002988 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00002989 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002990 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002991 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00002992 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002993}
2994
Nate Begeman83e75ec2005-09-06 04:43:02 +00002995SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002996 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002997 MVT::ValueType VT = N->getValueType(0);
2998
2999 // noop truncate
3000 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003001 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003002 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003003 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00003004 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003005 // fold (truncate (truncate x)) -> (truncate x)
3006 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003007 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003008 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattnerb72773b2006-05-05 22:56:26 +00003009 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3010 N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003011 if (N0.getOperand(0).getValueType() < VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003012 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00003013 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003014 else if (N0.getOperand(0).getValueType() > VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003015 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003016 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003017 else
3018 // if the source and dest are the same type, we can drop both the extend
3019 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003020 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003021 }
Evan Cheng007b69e2007-03-21 20:14:05 +00003022
Chris Lattner2b4c2792007-10-13 06:35:54 +00003023 // See if we can simplify the input to this truncate through knowledge that
3024 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3025 // -> trunc y
3026 SDOperand Shorter = GetDemandedBits(N0, MVT::getIntVTBitMask(VT));
3027 if (Shorter.Val)
3028 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3029
Nate Begeman3df4d522005-10-12 20:40:40 +00003030 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00003031 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Evan Chengc88138f2007-03-22 01:54:19 +00003032 return ReduceLoadWidth(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003033}
3034
Chris Lattner94683772005-12-23 05:30:37 +00003035SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3036 SDOperand N0 = N->getOperand(0);
3037 MVT::ValueType VT = N->getValueType(0);
3038
Dan Gohman7f321562007-06-25 16:23:39 +00003039 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3040 // Only do this before legalize, since afterward the target may be depending
3041 // on the bitconvert.
3042 // First check to see if this is all constant.
3043 if (!AfterLegalize &&
3044 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
3045 MVT::isVector(VT)) {
3046 bool isSimple = true;
3047 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3048 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3049 N0.getOperand(i).getOpcode() != ISD::Constant &&
3050 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3051 isSimple = false;
3052 break;
3053 }
3054
3055 MVT::ValueType DestEltVT = MVT::getVectorElementType(N->getValueType(0));
3056 assert(!MVT::isVector(DestEltVT) &&
3057 "Element type of vector ValueType must not be vector!");
3058 if (isSimple) {
3059 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3060 }
3061 }
3062
Chris Lattner94683772005-12-23 05:30:37 +00003063 // If the input is a constant, let getNode() fold it.
3064 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3065 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3066 if (Res.Val != N) return Res;
3067 }
3068
Chris Lattnerc8547d82005-12-23 05:37:50 +00003069 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3070 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00003071
Chris Lattner57104102005-12-23 05:44:41 +00003072 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00003073 // If the resultant load doesn't need a higher alignment than the original!
3074 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Evan Cheng59d5b682007-05-07 21:27:48 +00003075 TLI.isOperationLegal(ISD::LOAD, VT)) {
Evan Cheng466685d2006-10-09 20:57:25 +00003076 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng59d5b682007-05-07 21:27:48 +00003077 unsigned Align = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00003078 getABITypeAlignment(MVT::getTypeForValueType(VT));
Evan Cheng59d5b682007-05-07 21:27:48 +00003079 unsigned OrigAlign = LN0->getAlignment();
3080 if (Align <= OrigAlign) {
3081 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3082 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003083 LN0->isVolatile(), Align);
Evan Cheng59d5b682007-05-07 21:27:48 +00003084 AddToWorkList(N);
3085 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3086 Load.getValue(1));
3087 return Load;
3088 }
Chris Lattner57104102005-12-23 05:44:41 +00003089 }
3090
Chris Lattner94683772005-12-23 05:30:37 +00003091 return SDOperand();
3092}
3093
Dan Gohman7f321562007-06-25 16:23:39 +00003094/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
Chris Lattner6258fb22006-04-02 02:53:43 +00003095/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3096/// destination element value type.
3097SDOperand DAGCombiner::
Dan Gohman7f321562007-06-25 16:23:39 +00003098ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003099 MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
3100
3101 // If this is already the right type, we're done.
3102 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3103
3104 unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
3105 unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
3106
3107 // If this is a conversion of N elements of one type to N elements of another
3108 // type, convert each element. This handles FP<->INT cases.
3109 if (SrcBitSize == DstBitSize) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003110 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003111 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003112 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
Chris Lattner3e104b12006-04-08 04:15:24 +00003113 AddToWorkList(Ops.back().Val);
3114 }
Dan Gohman7f321562007-06-25 16:23:39 +00003115 MVT::ValueType VT =
3116 MVT::getVectorType(DstEltVT,
3117 MVT::getVectorNumElements(BV->getValueType(0)));
3118 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003119 }
3120
3121 // Otherwise, we're growing or shrinking the elements. To avoid having to
3122 // handle annoying details of growing/shrinking FP values, we convert them to
3123 // int first.
3124 if (MVT::isFloatingPoint(SrcEltVT)) {
3125 // Convert the input float vector to a int vector where the elements are the
3126 // same sizes.
3127 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
3128 MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003129 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003130 SrcEltVT = IntVT;
3131 }
3132
3133 // Now we know the input is an integer vector. If the output is a FP type,
3134 // convert to integer first, then to FP of the right size.
3135 if (MVT::isFloatingPoint(DstEltVT)) {
3136 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
3137 MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003138 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003139
3140 // Next, convert to FP elements of the same size.
Dan Gohman7f321562007-06-25 16:23:39 +00003141 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00003142 }
3143
3144 // Okay, we know the src/dst types are both integers of differing types.
3145 // Handling growing first.
3146 assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
3147 if (SrcBitSize < DstBitSize) {
3148 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3149
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003150 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003151 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00003152 i += NumInputsPerOutput) {
3153 bool isLE = TLI.isLittleEndian();
3154 uint64_t NewBits = 0;
3155 bool EltIsUndef = true;
3156 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3157 // Shift the previously computed bits over.
3158 NewBits <<= SrcBitSize;
3159 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3160 if (Op.getOpcode() == ISD::UNDEF) continue;
3161 EltIsUndef = false;
3162
3163 NewBits |= cast<ConstantSDNode>(Op)->getValue();
3164 }
3165
3166 if (EltIsUndef)
3167 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3168 else
3169 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3170 }
3171
Dan Gohman7f321562007-06-25 16:23:39 +00003172 MVT::ValueType VT = MVT::getVectorType(DstEltVT,
3173 Ops.size());
3174 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003175 }
3176
3177 // Finally, this must be the case where we are shrinking elements: each input
3178 // turns into multiple outputs.
3179 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003180 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003181 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003182 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3183 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3184 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3185 continue;
3186 }
3187 uint64_t OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getValue();
3188
3189 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
3190 unsigned ThisVal = OpVal & ((1ULL << DstBitSize)-1);
3191 OpVal >>= DstBitSize;
3192 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
3193 }
3194
3195 // For big endian targets, swap the order of the pieces of each element.
3196 if (!TLI.isLittleEndian())
3197 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3198 }
Dan Gohman7f321562007-06-25 16:23:39 +00003199 MVT::ValueType VT = MVT::getVectorType(DstEltVT, Ops.size());
3200 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003201}
3202
3203
3204
Chris Lattner01b3d732005-09-28 22:28:18 +00003205SDOperand DAGCombiner::visitFADD(SDNode *N) {
3206 SDOperand N0 = N->getOperand(0);
3207 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003208 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3209 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003210 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003211
Dan Gohman7f321562007-06-25 16:23:39 +00003212 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003213 if (MVT::isVector(VT)) {
3214 SDOperand FoldedVOp = SimplifyVBinOp(N);
3215 if (FoldedVOp.Val) return FoldedVOp;
3216 }
Dan Gohman7f321562007-06-25 16:23:39 +00003217
Nate Begemana0e221d2005-10-18 00:28:13 +00003218 // fold (fadd c1, c2) -> c1+c2
3219 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003220 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003221 // canonicalize constant to RHS
3222 if (N0CFP && !N1CFP)
3223 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003224 // fold (A + (-B)) -> A-B
Chris Lattner29446522007-05-14 22:04:50 +00003225 if (isNegatibleForFree(N1) == 2)
3226 return DAG.getNode(ISD::FSUB, VT, N0, GetNegatedExpression(N1, DAG));
Chris Lattner01b3d732005-09-28 22:28:18 +00003227 // fold ((-A) + B) -> B-A
Chris Lattner29446522007-05-14 22:04:50 +00003228 if (isNegatibleForFree(N0) == 2)
3229 return DAG.getNode(ISD::FSUB, VT, N1, GetNegatedExpression(N0, DAG));
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003230
3231 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3232 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3233 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3234 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3235 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3236
Chris Lattner01b3d732005-09-28 22:28:18 +00003237 return SDOperand();
3238}
3239
3240SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3241 SDOperand N0 = N->getOperand(0);
3242 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003243 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3244 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003245 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003246
Dan Gohman7f321562007-06-25 16:23:39 +00003247 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003248 if (MVT::isVector(VT)) {
3249 SDOperand FoldedVOp = SimplifyVBinOp(N);
3250 if (FoldedVOp.Val) return FoldedVOp;
3251 }
Dan Gohman7f321562007-06-25 16:23:39 +00003252
Nate Begemana0e221d2005-10-18 00:28:13 +00003253 // fold (fsub c1, c2) -> c1-c2
3254 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003255 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00003256 // fold (0-B) -> -B
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003257 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Dan Gohman23ff1822007-07-02 15:48:56 +00003258 if (isNegatibleForFree(N1))
3259 return GetNegatedExpression(N1, DAG);
3260 return DAG.getNode(ISD::FNEG, VT, N1);
3261 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003262 // fold (A-(-B)) -> A+B
Chris Lattner29446522007-05-14 22:04:50 +00003263 if (isNegatibleForFree(N1))
3264 return DAG.getNode(ISD::FADD, VT, N0, GetNegatedExpression(N1, DAG));
3265
Chris Lattner01b3d732005-09-28 22:28:18 +00003266 return SDOperand();
3267}
3268
3269SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3270 SDOperand N0 = N->getOperand(0);
3271 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003272 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3273 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003274 MVT::ValueType VT = N->getValueType(0);
3275
Dan Gohman7f321562007-06-25 16:23:39 +00003276 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003277 if (MVT::isVector(VT)) {
3278 SDOperand FoldedVOp = SimplifyVBinOp(N);
3279 if (FoldedVOp.Val) return FoldedVOp;
3280 }
Dan Gohman7f321562007-06-25 16:23:39 +00003281
Nate Begeman11af4ea2005-10-17 20:40:11 +00003282 // fold (fmul c1, c2) -> c1*c2
3283 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003284 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003285 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003286 if (N0CFP && !N1CFP)
3287 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003288 // fold (fmul X, 2.0) -> (fadd X, X)
3289 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3290 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner29446522007-05-14 22:04:50 +00003291 // fold (fmul X, -1.0) -> (fneg X)
3292 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3293 return DAG.getNode(ISD::FNEG, VT, N0);
3294
3295 // -X * -Y -> X*Y
3296 if (char LHSNeg = isNegatibleForFree(N0)) {
3297 if (char RHSNeg = isNegatibleForFree(N1)) {
3298 // Both can be negated for free, check to see if at least one is cheaper
3299 // negated.
3300 if (LHSNeg == 2 || RHSNeg == 2)
3301 return DAG.getNode(ISD::FMUL, VT, GetNegatedExpression(N0, DAG),
3302 GetNegatedExpression(N1, DAG));
3303 }
3304 }
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003305
3306 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3307 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3308 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3309 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3310 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3311
Chris Lattner01b3d732005-09-28 22:28:18 +00003312 return SDOperand();
3313}
3314
3315SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3316 SDOperand N0 = N->getOperand(0);
3317 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003318 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3319 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003320 MVT::ValueType VT = N->getValueType(0);
3321
Dan Gohman7f321562007-06-25 16:23:39 +00003322 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003323 if (MVT::isVector(VT)) {
3324 SDOperand FoldedVOp = SimplifyVBinOp(N);
3325 if (FoldedVOp.Val) return FoldedVOp;
3326 }
Dan Gohman7f321562007-06-25 16:23:39 +00003327
Nate Begemana148d982006-01-18 22:35:16 +00003328 // fold (fdiv c1, c2) -> c1/c2
3329 if (N0CFP && N1CFP)
3330 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner29446522007-05-14 22:04:50 +00003331
3332
3333 // -X / -Y -> X*Y
3334 if (char LHSNeg = isNegatibleForFree(N0)) {
3335 if (char RHSNeg = isNegatibleForFree(N1)) {
3336 // Both can be negated for free, check to see if at least one is cheaper
3337 // negated.
3338 if (LHSNeg == 2 || RHSNeg == 2)
3339 return DAG.getNode(ISD::FDIV, VT, GetNegatedExpression(N0, DAG),
3340 GetNegatedExpression(N1, DAG));
3341 }
3342 }
3343
Chris Lattner01b3d732005-09-28 22:28:18 +00003344 return SDOperand();
3345}
3346
3347SDOperand DAGCombiner::visitFREM(SDNode *N) {
3348 SDOperand N0 = N->getOperand(0);
3349 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003350 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3351 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003352 MVT::ValueType VT = N->getValueType(0);
3353
Nate Begemana148d982006-01-18 22:35:16 +00003354 // fold (frem c1, c2) -> fmod(c1,c2)
3355 if (N0CFP && N1CFP)
3356 return DAG.getNode(ISD::FREM, VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00003357
Chris Lattner01b3d732005-09-28 22:28:18 +00003358 return SDOperand();
3359}
3360
Chris Lattner12d83032006-03-05 05:30:57 +00003361SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3362 SDOperand N0 = N->getOperand(0);
3363 SDOperand N1 = N->getOperand(1);
3364 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3365 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3366 MVT::ValueType VT = N->getValueType(0);
3367
3368 if (N0CFP && N1CFP) // Constant fold
3369 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3370
3371 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00003372 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00003373 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3374 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen87503a62007-08-25 22:10:57 +00003375 if (!V.isNegative())
Chris Lattner12d83032006-03-05 05:30:57 +00003376 return DAG.getNode(ISD::FABS, VT, N0);
3377 else
3378 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3379 }
3380
3381 // copysign(fabs(x), y) -> copysign(x, y)
3382 // copysign(fneg(x), y) -> copysign(x, y)
3383 // copysign(copysign(x,z), y) -> copysign(x, y)
3384 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3385 N0.getOpcode() == ISD::FCOPYSIGN)
3386 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3387
3388 // copysign(x, abs(y)) -> abs(x)
3389 if (N1.getOpcode() == ISD::FABS)
3390 return DAG.getNode(ISD::FABS, VT, N0);
3391
3392 // copysign(x, copysign(y,z)) -> copysign(x, z)
3393 if (N1.getOpcode() == ISD::FCOPYSIGN)
3394 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3395
3396 // copysign(x, fp_extend(y)) -> copysign(x, y)
3397 // copysign(x, fp_round(y)) -> copysign(x, y)
3398 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3399 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3400
3401 return SDOperand();
3402}
3403
3404
Chris Lattner01b3d732005-09-28 22:28:18 +00003405
Nate Begeman83e75ec2005-09-06 04:43:02 +00003406SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003407 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003408 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003409 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003410
3411 // fold (sint_to_fp c1) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003412 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00003413 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003414 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003415}
3416
Nate Begeman83e75ec2005-09-06 04:43:02 +00003417SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003418 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003419 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003420 MVT::ValueType VT = N->getValueType(0);
3421
Nate Begeman1d4d4142005-09-01 00:19:25 +00003422 // fold (uint_to_fp c1) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003423 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00003424 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003425 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003426}
3427
Nate Begeman83e75ec2005-09-06 04:43:02 +00003428SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003429 SDOperand N0 = N->getOperand(0);
3430 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3431 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003432
3433 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003434 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003435 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003436 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003437}
3438
Nate Begeman83e75ec2005-09-06 04:43:02 +00003439SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003440 SDOperand N0 = N->getOperand(0);
3441 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3442 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003443
3444 // fold (fp_to_uint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003445 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003446 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003447 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003448}
3449
Nate Begeman83e75ec2005-09-06 04:43:02 +00003450SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003451 SDOperand N0 = N->getOperand(0);
3452 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3453 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003454
3455 // fold (fp_round c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003456 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003457 return DAG.getNode(ISD::FP_ROUND, VT, N0);
Chris Lattner79dbea52006-03-13 06:26:26 +00003458
3459 // fold (fp_round (fp_extend x)) -> x
3460 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3461 return N0.getOperand(0);
3462
3463 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3464 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
3465 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0));
3466 AddToWorkList(Tmp.Val);
3467 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3468 }
3469
Nate Begeman83e75ec2005-09-06 04:43:02 +00003470 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003471}
3472
Nate Begeman83e75ec2005-09-06 04:43:02 +00003473SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003474 SDOperand N0 = N->getOperand(0);
3475 MVT::ValueType VT = N->getValueType(0);
3476 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00003477 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003478
Nate Begeman1d4d4142005-09-01 00:19:25 +00003479 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003480 if (N0CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003481 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003482 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003483 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003484 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003485}
3486
Nate Begeman83e75ec2005-09-06 04:43:02 +00003487SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003488 SDOperand N0 = N->getOperand(0);
3489 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3490 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003491
3492 // fold (fp_extend c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003493 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003494 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattnere564dbb2006-05-05 21:34:35 +00003495
3496 // fold (fpext (load x)) -> (fpext (fpround (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00003497 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003498 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003499 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3500 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3501 LN0->getBasePtr(), LN0->getSrcValue(),
3502 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003503 N0.getValueType(),
3504 LN0->isVolatile(),
3505 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00003506 CombineTo(N, ExtLoad);
3507 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad),
3508 ExtLoad.getValue(1));
3509 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3510 }
3511
3512
Nate Begeman83e75ec2005-09-06 04:43:02 +00003513 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003514}
3515
Nate Begeman83e75ec2005-09-06 04:43:02 +00003516SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003517 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00003518
Dan Gohman23ff1822007-07-02 15:48:56 +00003519 if (isNegatibleForFree(N0))
3520 return GetNegatedExpression(N0, DAG);
3521
Nate Begeman83e75ec2005-09-06 04:43:02 +00003522 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003523}
3524
Nate Begeman83e75ec2005-09-06 04:43:02 +00003525SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003526 SDOperand N0 = N->getOperand(0);
3527 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3528 MVT::ValueType VT = N->getValueType(0);
3529
Nate Begeman1d4d4142005-09-01 00:19:25 +00003530 // fold (fabs c1) -> fabs(c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00003531 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003532 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003533 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003534 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003535 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003536 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003537 // fold (fabs (fcopysign x, y)) -> (fabs x)
3538 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
3539 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
3540
Nate Begeman83e75ec2005-09-06 04:43:02 +00003541 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003542}
3543
Nate Begeman44728a72005-09-19 22:34:01 +00003544SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
3545 SDOperand Chain = N->getOperand(0);
3546 SDOperand N1 = N->getOperand(1);
3547 SDOperand N2 = N->getOperand(2);
3548 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3549
3550 // never taken branch, fold to chain
3551 if (N1C && N1C->isNullValue())
3552 return Chain;
3553 // unconditional branch
Nate Begemane17daeb2005-10-05 21:43:42 +00003554 if (N1C && N1C->getValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00003555 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003556 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
3557 // on the target.
3558 if (N1.getOpcode() == ISD::SETCC &&
3559 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
3560 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
3561 N1.getOperand(0), N1.getOperand(1), N2);
3562 }
Nate Begeman44728a72005-09-19 22:34:01 +00003563 return SDOperand();
3564}
3565
Chris Lattner3ea0b472005-10-05 06:47:48 +00003566// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
3567//
Nate Begeman44728a72005-09-19 22:34:01 +00003568SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00003569 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
3570 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
3571
3572 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00003573 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
Chris Lattner30f73e72006-10-14 03:52:46 +00003574 if (Simp.Val) AddToWorkList(Simp.Val);
3575
Nate Begemane17daeb2005-10-05 21:43:42 +00003576 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
3577
3578 // fold br_cc true, dest -> br dest (unconditional branch)
3579 if (SCCC && SCCC->getValue())
3580 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
3581 N->getOperand(4));
3582 // fold br_cc false, dest -> unconditional fall through
3583 if (SCCC && SCCC->isNullValue())
3584 return N->getOperand(0);
Chris Lattner30f73e72006-10-14 03:52:46 +00003585
Nate Begemane17daeb2005-10-05 21:43:42 +00003586 // fold to a simpler setcc
3587 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
3588 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
3589 Simp.getOperand(2), Simp.getOperand(0),
3590 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00003591 return SDOperand();
3592}
3593
Chris Lattner448f2192006-11-11 00:39:41 +00003594
3595/// CombineToPreIndexedLoadStore - Try turning a load / store and a
3596/// pre-indexed load / store when the base pointer is a add or subtract
3597/// and it has other uses besides the load / store. After the
3598/// transformation, the new indexed load / store has effectively folded
3599/// the add / subtract in and all of its other uses are redirected to the
3600/// new load / store.
3601bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
3602 if (!AfterLegalize)
3603 return false;
3604
3605 bool isLoad = true;
3606 SDOperand Ptr;
3607 MVT::ValueType VT;
3608 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003609 if (LD->getAddressingMode() != ISD::UNINDEXED)
3610 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003611 VT = LD->getLoadedVT();
Evan Cheng83060c52007-03-07 08:07:03 +00003612 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00003613 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
3614 return false;
3615 Ptr = LD->getBasePtr();
3616 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003617 if (ST->getAddressingMode() != ISD::UNINDEXED)
3618 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003619 VT = ST->getStoredVT();
3620 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
3621 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
3622 return false;
3623 Ptr = ST->getBasePtr();
3624 isLoad = false;
3625 } else
3626 return false;
3627
Chris Lattner9f1794e2006-11-11 00:56:29 +00003628 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
3629 // out. There is no reason to make this a preinc/predec.
3630 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
3631 Ptr.Val->hasOneUse())
3632 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003633
Chris Lattner9f1794e2006-11-11 00:56:29 +00003634 // Ask the target to do addressing mode selection.
3635 SDOperand BasePtr;
3636 SDOperand Offset;
3637 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3638 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
3639 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00003640 // Don't create a indexed load / store with zero offset.
3641 if (isa<ConstantSDNode>(Offset) &&
3642 cast<ConstantSDNode>(Offset)->getValue() == 0)
3643 return false;
Chris Lattner9f1794e2006-11-11 00:56:29 +00003644
Chris Lattner41e53fd2006-11-11 01:00:15 +00003645 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00003646 // 1) The new base ptr is a frame index.
3647 // 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 +00003648 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00003649 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00003650 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00003651 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00003652
Chris Lattner41e53fd2006-11-11 01:00:15 +00003653 // Check #1. Preinc'ing a frame index would require copying the stack pointer
3654 // (plus the implicit offset) to a register to preinc anyway.
3655 if (isa<FrameIndexSDNode>(BasePtr))
3656 return false;
3657
3658 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003659 if (!isLoad) {
3660 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Chengc843abe2007-05-24 02:35:39 +00003661 if (Val == BasePtr || BasePtr.Val->isPredecessor(Val.Val))
Chris Lattner9f1794e2006-11-11 00:56:29 +00003662 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003663 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003664
Evan Chengc843abe2007-05-24 02:35:39 +00003665 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00003666 bool RealUse = false;
3667 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3668 E = Ptr.Val->use_end(); I != E; ++I) {
3669 SDNode *Use = *I;
3670 if (Use == N)
3671 continue;
3672 if (Use->isPredecessor(N))
3673 return false;
3674
3675 if (!((Use->getOpcode() == ISD::LOAD &&
3676 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
3677 (Use->getOpcode() == ISD::STORE) &&
3678 cast<StoreSDNode>(Use)->getBasePtr() == Ptr))
3679 RealUse = true;
3680 }
3681 if (!RealUse)
3682 return false;
3683
3684 SDOperand Result;
3685 if (isLoad)
3686 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
3687 else
3688 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
3689 ++PreIndexedNodes;
3690 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00003691 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00003692 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
3693 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00003694 std::vector<SDNode*> NowDead;
3695 if (isLoad) {
3696 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
3697 NowDead);
3698 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
3699 NowDead);
3700 } else {
3701 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
3702 NowDead);
3703 }
3704
3705 // Nodes can end up on the worklist more than once. Make sure we do
3706 // not process a node that has been replaced.
3707 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3708 removeFromWorkList(NowDead[i]);
3709 // Finally, since the node is now dead, remove it from the graph.
3710 DAG.DeleteNode(N);
3711
3712 // Replace the uses of Ptr with uses of the updated base value.
3713 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
3714 NowDead);
3715 removeFromWorkList(Ptr.Val);
3716 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3717 removeFromWorkList(NowDead[i]);
3718 DAG.DeleteNode(Ptr.Val);
3719
3720 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00003721}
3722
3723/// CombineToPostIndexedLoadStore - Try combine a load / store with a
3724/// add / sub of the base pointer node into a post-indexed load / store.
3725/// The transformation folded the add / subtract into the new indexed
3726/// load / store effectively and all of its uses are redirected to the
3727/// new load / store.
3728bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
3729 if (!AfterLegalize)
3730 return false;
3731
3732 bool isLoad = true;
3733 SDOperand Ptr;
3734 MVT::ValueType VT;
3735 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003736 if (LD->getAddressingMode() != ISD::UNINDEXED)
3737 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003738 VT = LD->getLoadedVT();
3739 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
3740 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
3741 return false;
3742 Ptr = LD->getBasePtr();
3743 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Chenge90460e2006-12-16 06:25:23 +00003744 if (ST->getAddressingMode() != ISD::UNINDEXED)
3745 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00003746 VT = ST->getStoredVT();
3747 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
3748 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
3749 return false;
3750 Ptr = ST->getBasePtr();
3751 isLoad = false;
3752 } else
3753 return false;
3754
Evan Chengcc470212006-11-16 00:08:20 +00003755 if (Ptr.Val->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00003756 return false;
3757
3758 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3759 E = Ptr.Val->use_end(); I != E; ++I) {
3760 SDNode *Op = *I;
3761 if (Op == N ||
3762 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
3763 continue;
3764
3765 SDOperand BasePtr;
3766 SDOperand Offset;
3767 ISD::MemIndexedMode AM = ISD::UNINDEXED;
3768 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
3769 if (Ptr == Offset)
3770 std::swap(BasePtr, Offset);
3771 if (Ptr != BasePtr)
Chris Lattner448f2192006-11-11 00:39:41 +00003772 continue;
Evan Chenga7d4a042007-05-03 23:52:19 +00003773 // Don't create a indexed load / store with zero offset.
3774 if (isa<ConstantSDNode>(Offset) &&
3775 cast<ConstantSDNode>(Offset)->getValue() == 0)
3776 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00003777
Chris Lattner9f1794e2006-11-11 00:56:29 +00003778 // Try turning it into a post-indexed load / store except when
3779 // 1) All uses are load / store ops that use it as base ptr.
3780 // 2) Op must be independent of N, i.e. Op is neither a predecessor
3781 // nor a successor of N. Otherwise, if Op is folded that would
3782 // create a cycle.
3783
3784 // Check for #1.
3785 bool TryNext = false;
3786 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
3787 EE = BasePtr.Val->use_end(); II != EE; ++II) {
3788 SDNode *Use = *II;
3789 if (Use == Ptr.Val)
Chris Lattner448f2192006-11-11 00:39:41 +00003790 continue;
3791
Chris Lattner9f1794e2006-11-11 00:56:29 +00003792 // If all the uses are load / store addresses, then don't do the
3793 // transformation.
3794 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
3795 bool RealUse = false;
3796 for (SDNode::use_iterator III = Use->use_begin(),
3797 EEE = Use->use_end(); III != EEE; ++III) {
3798 SDNode *UseUse = *III;
3799 if (!((UseUse->getOpcode() == ISD::LOAD &&
3800 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
3801 (UseUse->getOpcode() == ISD::STORE) &&
3802 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use))
3803 RealUse = true;
3804 }
Chris Lattner448f2192006-11-11 00:39:41 +00003805
Chris Lattner9f1794e2006-11-11 00:56:29 +00003806 if (!RealUse) {
3807 TryNext = true;
3808 break;
Chris Lattner448f2192006-11-11 00:39:41 +00003809 }
3810 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003811 }
3812 if (TryNext)
3813 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00003814
Chris Lattner9f1794e2006-11-11 00:56:29 +00003815 // Check for #2
3816 if (!Op->isPredecessor(N) && !N->isPredecessor(Op)) {
3817 SDOperand Result = isLoad
3818 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
3819 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
3820 ++PostIndexedNodes;
3821 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00003822 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00003823 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
3824 DOUT << '\n';
Chris Lattner9f1794e2006-11-11 00:56:29 +00003825 std::vector<SDNode*> NowDead;
3826 if (isLoad) {
3827 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner448f2192006-11-11 00:39:41 +00003828 NowDead);
Chris Lattner9f1794e2006-11-11 00:56:29 +00003829 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
3830 NowDead);
3831 } else {
3832 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
3833 NowDead);
Chris Lattner448f2192006-11-11 00:39:41 +00003834 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00003835
3836 // Nodes can end up on the worklist more than once. Make sure we do
3837 // not process a node that has been replaced.
3838 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3839 removeFromWorkList(NowDead[i]);
3840 // Finally, since the node is now dead, remove it from the graph.
3841 DAG.DeleteNode(N);
3842
3843 // Replace the uses of Use with uses of the updated base value.
3844 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
3845 Result.getValue(isLoad ? 1 : 0),
3846 NowDead);
3847 removeFromWorkList(Op);
3848 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3849 removeFromWorkList(NowDead[i]);
3850 DAG.DeleteNode(Op);
3851
3852 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00003853 }
3854 }
3855 }
3856 return false;
3857}
3858
3859
Chris Lattner01a22022005-10-10 22:04:48 +00003860SDOperand DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00003861 LoadSDNode *LD = cast<LoadSDNode>(N);
3862 SDOperand Chain = LD->getChain();
3863 SDOperand Ptr = LD->getBasePtr();
Evan Cheng45a7ca92007-05-01 00:38:21 +00003864
3865 // If load is not volatile and there are no uses of the loaded value (and
3866 // the updated indexed value in case of indexed loads), change uses of the
3867 // chain value into uses of the chain input (i.e. delete the dead load).
3868 if (!LD->isVolatile()) {
Evan Cheng498f5592007-05-01 08:53:39 +00003869 if (N->getValueType(1) == MVT::Other) {
3870 // Unindexed loads.
3871 if (N->hasNUsesOfValue(0, 0))
3872 return CombineTo(N, DAG.getNode(ISD::UNDEF, N->getValueType(0)), Chain);
3873 } else {
3874 // Indexed loads.
3875 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
3876 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
3877 SDOperand Undef0 = DAG.getNode(ISD::UNDEF, N->getValueType(0));
3878 SDOperand Undef1 = DAG.getNode(ISD::UNDEF, N->getValueType(1));
3879 SDOperand To[] = { Undef0, Undef1, Chain };
3880 return CombineTo(N, To, 3);
Evan Cheng45a7ca92007-05-01 00:38:21 +00003881 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00003882 }
3883 }
Chris Lattner01a22022005-10-10 22:04:48 +00003884
3885 // If this load is directly stored, replace the load value with the stored
3886 // value.
3887 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00003888 // TODO: Handle TRUNCSTORE/LOADEXT
3889 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00003890 if (ISD::isNON_TRUNCStore(Chain.Val)) {
3891 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
3892 if (PrevST->getBasePtr() == Ptr &&
3893 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00003894 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003895 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00003896 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00003897
Jim Laskey7ca56af2006-10-11 13:47:09 +00003898 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00003899 // Walk up chain skipping non-aliasing memory nodes.
3900 SDOperand BetterChain = FindBetterChain(N, Chain);
3901
Jim Laskey6ff23e52006-10-04 16:53:27 +00003902 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00003903 if (Chain != BetterChain) {
Jim Laskeyc2b19f32006-10-11 17:47:52 +00003904 SDOperand ReplLoad;
3905
Jim Laskey279f0532006-09-25 16:29:54 +00003906 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00003907 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
3908 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003909 LD->getSrcValue(), LD->getSrcValueOffset(),
3910 LD->isVolatile(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00003911 } else {
3912 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
3913 LD->getValueType(0),
3914 BetterChain, Ptr, LD->getSrcValue(),
3915 LD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003916 LD->getLoadedVT(),
3917 LD->isVolatile(),
3918 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00003919 }
Jim Laskey279f0532006-09-25 16:29:54 +00003920
Jim Laskey6ff23e52006-10-04 16:53:27 +00003921 // Create token factor to keep old chain connected.
Jim Laskey288af5e2006-09-25 19:32:58 +00003922 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
3923 Chain, ReplLoad.getValue(1));
Jim Laskey6ff23e52006-10-04 16:53:27 +00003924
Jim Laskey274062c2006-10-13 23:32:28 +00003925 // Replace uses with load result and token factor. Don't add users
3926 // to work list.
3927 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00003928 }
3929 }
3930
Evan Cheng7fc033a2006-11-03 03:06:21 +00003931 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00003932 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng7fc033a2006-11-03 03:06:21 +00003933 return SDOperand(N, 0);
3934
Chris Lattner01a22022005-10-10 22:04:48 +00003935 return SDOperand();
3936}
3937
Chris Lattner87514ca2005-10-10 22:31:19 +00003938SDOperand DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00003939 StoreSDNode *ST = cast<StoreSDNode>(N);
3940 SDOperand Chain = ST->getChain();
3941 SDOperand Value = ST->getValue();
3942 SDOperand Ptr = ST->getBasePtr();
Jim Laskey7aed46c2006-10-11 18:55:16 +00003943
Evan Cheng59d5b682007-05-07 21:27:48 +00003944 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00003945 // resultant store does not need a higher alignment than the original.
Dale Johannesen98a6c622007-05-16 22:45:30 +00003946 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
3947 ST->getAddressingMode() == ISD::UNINDEXED) {
Evan Cheng59d5b682007-05-07 21:27:48 +00003948 unsigned Align = ST->getAlignment();
3949 MVT::ValueType SVT = Value.getOperand(0).getValueType();
3950 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00003951 getABITypeAlignment(MVT::getTypeForValueType(SVT));
Evan Chengc2cd2b22007-05-07 21:36:06 +00003952 if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
Evan Cheng59d5b682007-05-07 21:27:48 +00003953 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003954 ST->getSrcValueOffset(), ST->isVolatile(), Align);
Jim Laskey279f0532006-09-25 16:29:54 +00003955 }
3956
Nate Begeman2cbba892006-12-11 02:23:46 +00003957 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00003958 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Evan Cheng25ece662006-12-11 17:25:19 +00003959 if (Value.getOpcode() != ISD::TargetConstantFP) {
3960 SDOperand Tmp;
Chris Lattner62be1a72006-12-12 04:16:14 +00003961 switch (CFP->getValueType(0)) {
3962 default: assert(0 && "Unknown FP type");
Dale Johannesenc7b21d52007-09-18 18:36:59 +00003963 case MVT::f80: // We don't do this for these yet.
3964 case MVT::f128:
3965 case MVT::ppcf128:
3966 break;
Chris Lattner62be1a72006-12-12 04:16:14 +00003967 case MVT::f32:
3968 if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00003969 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
3970 convertToAPInt().getZExtValue(), MVT::i32);
Chris Lattner62be1a72006-12-12 04:16:14 +00003971 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003972 ST->getSrcValueOffset(), ST->isVolatile(),
3973 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00003974 }
3975 break;
3976 case MVT::f64:
3977 if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00003978 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
3979 getZExtValue(), MVT::i64);
Chris Lattner62be1a72006-12-12 04:16:14 +00003980 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003981 ST->getSrcValueOffset(), ST->isVolatile(),
3982 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00003983 } else if (TLI.isTypeLegal(MVT::i32)) {
3984 // Many FP stores are not make apparent until after legalize, e.g. for
3985 // argument passing. Since this is so common, custom legalize the
3986 // 64-bit integer store into two 32-bit stores.
Dale Johannesen9d5f4562007-09-12 03:30:33 +00003987 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner62be1a72006-12-12 04:16:14 +00003988 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
3989 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
3990 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
3991
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003992 int SVOffset = ST->getSrcValueOffset();
3993 unsigned Alignment = ST->getAlignment();
3994 bool isVolatile = ST->isVolatile();
3995
Chris Lattner62be1a72006-12-12 04:16:14 +00003996 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003997 ST->getSrcValueOffset(),
3998 isVolatile, ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00003999 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4000 DAG.getConstant(4, Ptr.getValueType()));
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004001 SVOffset += 4;
4002 if (Alignment > 4)
4003 Alignment = 4;
Chris Lattner62be1a72006-12-12 04:16:14 +00004004 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004005 SVOffset, isVolatile, Alignment);
Chris Lattner62be1a72006-12-12 04:16:14 +00004006 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4007 }
4008 break;
Evan Cheng25ece662006-12-11 17:25:19 +00004009 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004010 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004011 }
4012
Jim Laskey279f0532006-09-25 16:29:54 +00004013 if (CombinerAA) {
4014 // Walk up chain skipping non-aliasing memory nodes.
4015 SDOperand BetterChain = FindBetterChain(N, Chain);
4016
Jim Laskey6ff23e52006-10-04 16:53:27 +00004017 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004018 if (Chain != BetterChain) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00004019 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004020 SDOperand ReplStore;
4021 if (ST->isTruncatingStore()) {
4022 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004023 ST->getSrcValue(), ST->getSrcValueOffset(), ST->getStoredVT(),
4024 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004025 } else {
4026 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004027 ST->getSrcValue(), ST->getSrcValueOffset(),
4028 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004029 }
4030
Jim Laskey279f0532006-09-25 16:29:54 +00004031 // Create token to keep both nodes around.
Jim Laskey274062c2006-10-13 23:32:28 +00004032 SDOperand Token =
4033 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4034
4035 // Don't add users to work list.
4036 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004037 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00004038 }
Chris Lattnerc33baaa2005-12-23 05:48:07 +00004039
Evan Cheng33dbedc2006-11-05 09:31:14 +00004040 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004041 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng33dbedc2006-11-05 09:31:14 +00004042 return SDOperand(N, 0);
4043
Chris Lattner2b4c2792007-10-13 06:35:54 +00004044 // FIXME: is there such a think as a truncating indexed store?
4045 if (ST->isTruncatingStore() && ST->getAddressingMode() == ISD::UNINDEXED &&
4046 MVT::isInteger(Value.getValueType())) {
4047 // See if we can simplify the input to this truncstore with knowledge that
4048 // only the low bits are being used. For example:
4049 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4050 SDOperand Shorter =
4051 GetDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT()));
4052 AddToWorkList(Value.Val);
4053 if (Shorter.Val)
4054 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
4055 ST->getSrcValueOffset(), ST->getStoredVT(),
4056 ST->isVolatile(), ST->getAlignment());
Chris Lattnere33544c2007-10-13 06:58:48 +00004057
4058 // Otherwise, see if we can simplify the operation with
4059 // SimplifyDemandedBits, which only works if the value has a single use.
4060 if (SimplifyDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT())))
4061 return SDOperand(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00004062 }
4063
Chris Lattner87514ca2005-10-10 22:31:19 +00004064 return SDOperand();
4065}
4066
Chris Lattnerca242442006-03-19 01:27:56 +00004067SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4068 SDOperand InVec = N->getOperand(0);
4069 SDOperand InVal = N->getOperand(1);
4070 SDOperand EltNo = N->getOperand(2);
4071
4072 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4073 // vector with the inserted element.
4074 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4075 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004076 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
Chris Lattnerca242442006-03-19 01:27:56 +00004077 if (Elt < Ops.size())
4078 Ops[Elt] = InVal;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004079 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4080 &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00004081 }
4082
4083 return SDOperand();
4084}
4085
Evan Cheng513da432007-10-06 08:19:55 +00004086SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
4087 SDOperand InVec = N->getOperand(0);
4088 SDOperand EltNo = N->getOperand(1);
4089
4090 // (vextract (v4f32 s2v (f32 load $addr)), 0) -> (f32 load $addr)
4091 // (vextract (v4i32 bc (v4f32 s2v (f32 load $addr))), 0) -> (i32 load $addr)
4092 if (isa<ConstantSDNode>(EltNo)) {
4093 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4094 bool NewLoad = false;
4095 if (Elt == 0) {
4096 MVT::ValueType VT = InVec.getValueType();
4097 MVT::ValueType EVT = MVT::getVectorElementType(VT);
4098 MVT::ValueType LVT = EVT;
4099 unsigned NumElts = MVT::getVectorNumElements(VT);
4100 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
4101 MVT::ValueType BCVT = InVec.getOperand(0).getValueType();
4102 if (NumElts != MVT::getVectorNumElements(BCVT))
4103 return SDOperand();
4104 InVec = InVec.getOperand(0);
4105 EVT = MVT::getVectorElementType(BCVT);
4106 NewLoad = true;
4107 }
4108 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4109 InVec.getOperand(0).getValueType() == EVT &&
4110 ISD::isNormalLoad(InVec.getOperand(0).Val) &&
4111 InVec.getOperand(0).hasOneUse()) {
4112 LoadSDNode *LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4113 unsigned Align = LN0->getAlignment();
4114 if (NewLoad) {
4115 // Check the resultant load doesn't need a higher alignment than the
4116 // original load.
4117 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
4118 getABITypeAlignment(MVT::getTypeForValueType(LVT));
4119 if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4120 return SDOperand();
4121 Align = NewAlign;
4122 }
4123
4124 return DAG.getLoad(LVT, LN0->getChain(), LN0->getBasePtr(),
4125 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4126 LN0->isVolatile(), Align);
4127 }
4128 }
4129 }
4130 return SDOperand();
4131}
4132
4133
Dan Gohman7f321562007-06-25 16:23:39 +00004134SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4135 unsigned NumInScalars = N->getNumOperands();
4136 MVT::ValueType VT = N->getValueType(0);
4137 unsigned NumElts = MVT::getVectorNumElements(VT);
4138 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattnerca242442006-03-19 01:27:56 +00004139
Dan Gohman7f321562007-06-25 16:23:39 +00004140 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4141 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4142 // at most two distinct vectors, turn this into a shuffle node.
Chris Lattnerd7648c82006-03-28 20:28:38 +00004143 SDOperand VecIn1, VecIn2;
4144 for (unsigned i = 0; i != NumInScalars; ++i) {
4145 // Ignore undef inputs.
4146 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4147
Dan Gohman7f321562007-06-25 16:23:39 +00004148 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00004149 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00004150 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00004151 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4152 VecIn1 = VecIn2 = SDOperand(0, 0);
4153 break;
4154 }
4155
Dan Gohman7f321562007-06-25 16:23:39 +00004156 // If the input vector type disagrees with the result of the build_vector,
Chris Lattnerd7648c82006-03-28 20:28:38 +00004157 // we can't make a shuffle.
4158 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004159 if (ExtractedFromVec.getValueType() != VT) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00004160 VecIn1 = VecIn2 = SDOperand(0, 0);
4161 break;
4162 }
4163
4164 // Otherwise, remember this. We allow up to two distinct input vectors.
4165 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4166 continue;
4167
4168 if (VecIn1.Val == 0) {
4169 VecIn1 = ExtractedFromVec;
4170 } else if (VecIn2.Val == 0) {
4171 VecIn2 = ExtractedFromVec;
4172 } else {
4173 // Too many inputs.
4174 VecIn1 = VecIn2 = SDOperand(0, 0);
4175 break;
4176 }
4177 }
4178
4179 // If everything is good, we can make a shuffle operation.
4180 if (VecIn1.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004181 SmallVector<SDOperand, 8> BuildVecIndices;
Chris Lattnerd7648c82006-03-28 20:28:38 +00004182 for (unsigned i = 0; i != NumInScalars; ++i) {
4183 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Evan Cheng597a3bd2007-01-20 10:10:26 +00004184 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004185 continue;
4186 }
4187
4188 SDOperand Extract = N->getOperand(i);
4189
4190 // If extracting from the first vector, just use the index directly.
4191 if (Extract.getOperand(0) == VecIn1) {
4192 BuildVecIndices.push_back(Extract.getOperand(1));
4193 continue;
4194 }
4195
4196 // Otherwise, use InIdx + VecSize
4197 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Evan Cheng597a3bd2007-01-20 10:10:26 +00004198 BuildVecIndices.push_back(DAG.getConstant(Idx+NumInScalars,
4199 TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004200 }
4201
4202 // Add count and size info.
Dan Gohman7f321562007-06-25 16:23:39 +00004203 MVT::ValueType BuildVecVT =
4204 MVT::getVectorType(TLI.getPointerTy(), NumElts);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004205
Dan Gohman7f321562007-06-25 16:23:39 +00004206 // Return the new VECTOR_SHUFFLE node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004207 SDOperand Ops[5];
4208 Ops[0] = VecIn1;
Chris Lattnercef896e2006-03-28 22:19:47 +00004209 if (VecIn2.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004210 Ops[1] = VecIn2;
Chris Lattnercef896e2006-03-28 22:19:47 +00004211 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004212 // Use an undef build_vector as input for the second operand.
Chris Lattnercef896e2006-03-28 22:19:47 +00004213 std::vector<SDOperand> UnOps(NumInScalars,
4214 DAG.getNode(ISD::UNDEF,
Dan Gohman7f321562007-06-25 16:23:39 +00004215 EltType));
4216 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004217 &UnOps[0], UnOps.size());
4218 AddToWorkList(Ops[1].Val);
Chris Lattnercef896e2006-03-28 22:19:47 +00004219 }
Dan Gohman7f321562007-06-25 16:23:39 +00004220 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004221 &BuildVecIndices[0], BuildVecIndices.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004222 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004223 }
4224
4225 return SDOperand();
4226}
4227
Dan Gohman7f321562007-06-25 16:23:39 +00004228SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4229 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4230 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4231 // inputs come from at most two distinct vectors, turn this into a shuffle
4232 // node.
4233
4234 // If we only have one input vector, we don't need to do any concatenation.
4235 if (N->getNumOperands() == 1) {
4236 return N->getOperand(0);
4237 }
4238
4239 return SDOperand();
4240}
4241
Chris Lattner66445d32006-03-28 22:11:53 +00004242SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004243 SDOperand ShufMask = N->getOperand(2);
4244 unsigned NumElts = ShufMask.getNumOperands();
4245
4246 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4247 bool isIdentity = true;
4248 for (unsigned i = 0; i != NumElts; ++i) {
4249 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4250 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4251 isIdentity = false;
4252 break;
4253 }
4254 }
4255 if (isIdentity) return N->getOperand(0);
4256
4257 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4258 isIdentity = true;
4259 for (unsigned i = 0; i != NumElts; ++i) {
4260 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4261 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4262 isIdentity = false;
4263 break;
4264 }
4265 }
4266 if (isIdentity) return N->getOperand(1);
Evan Chenge7bec0d2006-07-20 22:44:41 +00004267
4268 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4269 // needed at all.
4270 bool isUnary = true;
Evan Cheng917ec982006-07-21 08:25:53 +00004271 bool isSplat = true;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004272 int VecNum = -1;
Reid Spencer9160a6a2006-07-25 20:44:41 +00004273 unsigned BaseIdx = 0;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004274 for (unsigned i = 0; i != NumElts; ++i)
4275 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4276 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4277 int V = (Idx < NumElts) ? 0 : 1;
Evan Cheng917ec982006-07-21 08:25:53 +00004278 if (VecNum == -1) {
Evan Chenge7bec0d2006-07-20 22:44:41 +00004279 VecNum = V;
Evan Cheng917ec982006-07-21 08:25:53 +00004280 BaseIdx = Idx;
4281 } else {
4282 if (BaseIdx != Idx)
4283 isSplat = false;
4284 if (VecNum != V) {
4285 isUnary = false;
4286 break;
4287 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00004288 }
4289 }
4290
4291 SDOperand N0 = N->getOperand(0);
4292 SDOperand N1 = N->getOperand(1);
4293 // Normalize unary shuffle so the RHS is undef.
4294 if (isUnary && VecNum == 1)
4295 std::swap(N0, N1);
4296
Evan Cheng917ec982006-07-21 08:25:53 +00004297 // If it is a splat, check if the argument vector is a build_vector with
4298 // all scalar elements the same.
4299 if (isSplat) {
4300 SDNode *V = N0.Val;
Evan Cheng917ec982006-07-21 08:25:53 +00004301
Dan Gohman7f321562007-06-25 16:23:39 +00004302 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00004303 // not the number of vector elements, look through it. Be careful not to
4304 // look though conversions that change things like v4f32 to v2f64.
Dan Gohman7f321562007-06-25 16:23:39 +00004305 if (V->getOpcode() == ISD::BIT_CONVERT) {
Evan Cheng59569222006-10-16 22:49:37 +00004306 SDOperand ConvInput = V->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004307 if (MVT::getVectorNumElements(ConvInput.getValueType()) == NumElts)
Evan Cheng59569222006-10-16 22:49:37 +00004308 V = ConvInput.Val;
4309 }
4310
Dan Gohman7f321562007-06-25 16:23:39 +00004311 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4312 unsigned NumElems = V->getNumOperands();
Evan Cheng917ec982006-07-21 08:25:53 +00004313 if (NumElems > BaseIdx) {
4314 SDOperand Base;
4315 bool AllSame = true;
4316 for (unsigned i = 0; i != NumElems; ++i) {
4317 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4318 Base = V->getOperand(i);
4319 break;
4320 }
4321 }
4322 // Splat of <u, u, u, u>, return <u, u, u, u>
4323 if (!Base.Val)
4324 return N0;
4325 for (unsigned i = 0; i != NumElems; ++i) {
Evan Chenge0480d22007-09-18 21:54:37 +00004326 if (V->getOperand(i) != Base) {
Evan Cheng917ec982006-07-21 08:25:53 +00004327 AllSame = false;
4328 break;
4329 }
4330 }
4331 // Splat of <x, x, x, x>, return <x, x, x, x>
4332 if (AllSame)
4333 return N0;
4334 }
4335 }
4336 }
4337
Evan Chenge7bec0d2006-07-20 22:44:41 +00004338 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4339 // into an undef.
4340 if (isUnary || N0 == N1) {
Chris Lattner17614ea2006-04-08 05:34:25 +00004341 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4342 // first operand.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004343 SmallVector<SDOperand, 8> MappedOps;
Chris Lattner17614ea2006-04-08 05:34:25 +00004344 for (unsigned i = 0; i != NumElts; ++i) {
4345 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4346 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4347 MappedOps.push_back(ShufMask.getOperand(i));
4348 } else {
4349 unsigned NewIdx =
4350 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4351 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4352 }
4353 }
Dan Gohman7f321562007-06-25 16:23:39 +00004354 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004355 &MappedOps[0], MappedOps.size());
Chris Lattner17614ea2006-04-08 05:34:25 +00004356 AddToWorkList(ShufMask.Val);
Dan Gohman7f321562007-06-25 16:23:39 +00004357 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4358 N0,
4359 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4360 ShufMask);
Chris Lattner17614ea2006-04-08 05:34:25 +00004361 }
Dan Gohman7f321562007-06-25 16:23:39 +00004362
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004363 return SDOperand();
4364}
4365
Evan Cheng44f1f092006-04-20 08:56:16 +00004366/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00004367/// an AND to a vector_shuffle with the destination vector and a zero vector.
4368/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00004369/// vector_shuffle V, Zero, <0, 4, 2, 4>
4370SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4371 SDOperand LHS = N->getOperand(0);
4372 SDOperand RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00004373 if (N->getOpcode() == ISD::AND) {
4374 if (RHS.getOpcode() == ISD::BIT_CONVERT)
Evan Cheng44f1f092006-04-20 08:56:16 +00004375 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004376 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Evan Cheng44f1f092006-04-20 08:56:16 +00004377 std::vector<SDOperand> IdxOps;
4378 unsigned NumOps = RHS.getNumOperands();
Dan Gohman7f321562007-06-25 16:23:39 +00004379 unsigned NumElts = NumOps;
4380 MVT::ValueType EVT = MVT::getVectorElementType(RHS.getValueType());
Evan Cheng44f1f092006-04-20 08:56:16 +00004381 for (unsigned i = 0; i != NumElts; ++i) {
4382 SDOperand Elt = RHS.getOperand(i);
4383 if (!isa<ConstantSDNode>(Elt))
4384 return SDOperand();
4385 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
4386 IdxOps.push_back(DAG.getConstant(i, EVT));
4387 else if (cast<ConstantSDNode>(Elt)->isNullValue())
4388 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
4389 else
4390 return SDOperand();
4391 }
4392
4393 // Let's see if the target supports this vector_shuffle.
4394 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
4395 return SDOperand();
4396
Dan Gohman7f321562007-06-25 16:23:39 +00004397 // Return the new VECTOR_SHUFFLE node.
4398 MVT::ValueType VT = MVT::getVectorType(EVT, NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00004399 std::vector<SDOperand> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004400 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
Evan Cheng44f1f092006-04-20 08:56:16 +00004401 Ops.push_back(LHS);
4402 AddToWorkList(LHS.Val);
4403 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
Dan Gohman7f321562007-06-25 16:23:39 +00004404 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004405 &ZeroOps[0], ZeroOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004406 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004407 &IdxOps[0], IdxOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004408 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004409 &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004410 if (VT != LHS.getValueType()) {
4411 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
Evan Cheng44f1f092006-04-20 08:56:16 +00004412 }
4413 return Result;
4414 }
4415 }
4416 return SDOperand();
4417}
4418
Dan Gohman7f321562007-06-25 16:23:39 +00004419/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
4420SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
4421 // After legalize, the target may be depending on adds and other
4422 // binary ops to provide legal ways to construct constants or other
4423 // things. Simplifying them may result in a loss of legality.
4424 if (AfterLegalize) return SDOperand();
4425
4426 MVT::ValueType VT = N->getValueType(0);
Dan Gohman05d92fe2007-07-13 20:03:40 +00004427 assert(MVT::isVector(VT) && "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00004428
4429 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattneredab1b92006-04-02 03:25:57 +00004430 SDOperand LHS = N->getOperand(0);
4431 SDOperand RHS = N->getOperand(1);
Evan Cheng44f1f092006-04-20 08:56:16 +00004432 SDOperand Shuffle = XformToShuffleWithZero(N);
4433 if (Shuffle.Val) return Shuffle;
4434
Dan Gohman7f321562007-06-25 16:23:39 +00004435 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00004436 // this operation.
Dan Gohman7f321562007-06-25 16:23:39 +00004437 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
4438 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004439 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004440 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Chris Lattneredab1b92006-04-02 03:25:57 +00004441 SDOperand LHSOp = LHS.getOperand(i);
4442 SDOperand RHSOp = RHS.getOperand(i);
4443 // If these two elements can't be folded, bail out.
4444 if ((LHSOp.getOpcode() != ISD::UNDEF &&
4445 LHSOp.getOpcode() != ISD::Constant &&
4446 LHSOp.getOpcode() != ISD::ConstantFP) ||
4447 (RHSOp.getOpcode() != ISD::UNDEF &&
4448 RHSOp.getOpcode() != ISD::Constant &&
4449 RHSOp.getOpcode() != ISD::ConstantFP))
4450 break;
Evan Cheng7b336a82006-05-31 06:08:35 +00004451 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00004452 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
4453 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00004454 if ((RHSOp.getOpcode() == ISD::Constant &&
4455 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
4456 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00004457 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00004458 break;
4459 }
Dan Gohman7f321562007-06-25 16:23:39 +00004460 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
Chris Lattner3e104b12006-04-08 04:15:24 +00004461 AddToWorkList(Ops.back().Val);
Chris Lattneredab1b92006-04-02 03:25:57 +00004462 assert((Ops.back().getOpcode() == ISD::UNDEF ||
4463 Ops.back().getOpcode() == ISD::Constant ||
4464 Ops.back().getOpcode() == ISD::ConstantFP) &&
4465 "Scalar binop didn't fold!");
4466 }
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004467
Dan Gohman7f321562007-06-25 16:23:39 +00004468 if (Ops.size() == LHS.getNumOperands()) {
4469 MVT::ValueType VT = LHS.getValueType();
4470 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00004471 }
Chris Lattneredab1b92006-04-02 03:25:57 +00004472 }
4473
4474 return SDOperand();
4475}
4476
Nate Begeman44728a72005-09-19 22:34:01 +00004477SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00004478 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
4479
4480 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
4481 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4482 // If we got a simplified select_cc node back from SimplifySelectCC, then
4483 // break it down into a new SETCC node, and a new SELECT node, and then return
4484 // the SELECT node, since we were called with a SELECT node.
4485 if (SCC.Val) {
4486 // Check to see if we got a select_cc back (to turn into setcc/select).
4487 // Otherwise, just return whatever node we got back, like fabs.
4488 if (SCC.getOpcode() == ISD::SELECT_CC) {
4489 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
4490 SCC.getOperand(0), SCC.getOperand(1),
4491 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00004492 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004493 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
4494 SCC.getOperand(3), SETCC);
4495 }
4496 return SCC;
4497 }
Nate Begeman44728a72005-09-19 22:34:01 +00004498 return SDOperand();
4499}
4500
Chris Lattner40c62d52005-10-18 06:04:22 +00004501/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
4502/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00004503/// select. Callers of this should assume that TheSelect is deleted if this
4504/// returns true. As such, they should return the appropriate thing (e.g. the
4505/// node) back to the top-level of the DAG combiner loop to avoid it being
4506/// looked at.
Chris Lattner40c62d52005-10-18 06:04:22 +00004507///
4508bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
4509 SDOperand RHS) {
4510
4511 // If this is a select from two identical things, try to pull the operation
4512 // through the select.
4513 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
Chris Lattner40c62d52005-10-18 06:04:22 +00004514 // If this is a load and the token chain is identical, replace the select
4515 // of two loads with a load through a select of the address to load from.
4516 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
4517 // constants have been dropped into the constant pool.
Evan Cheng466685d2006-10-09 20:57:25 +00004518 if (LHS.getOpcode() == ISD::LOAD &&
Chris Lattner40c62d52005-10-18 06:04:22 +00004519 // Token chains must be identical.
Evan Cheng466685d2006-10-09 20:57:25 +00004520 LHS.getOperand(0) == RHS.getOperand(0)) {
4521 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
4522 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
4523
4524 // If this is an EXTLOAD, the VT's must match.
Evan Cheng2e49f092006-10-11 07:10:22 +00004525 if (LLD->getLoadedVT() == RLD->getLoadedVT()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004526 // FIXME: this conflates two src values, discarding one. This is not
4527 // the right thing to do, but nothing uses srcvalues now. When they do,
4528 // turn SrcValue into a list of locations.
4529 SDOperand Addr;
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004530 if (TheSelect->getOpcode() == ISD::SELECT) {
4531 // Check that the condition doesn't reach either load. If so, folding
4532 // this will induce a cycle into the DAG.
4533 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4534 !RLD->isPredecessor(TheSelect->getOperand(0).Val)) {
4535 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
4536 TheSelect->getOperand(0), LLD->getBasePtr(),
4537 RLD->getBasePtr());
4538 }
4539 } else {
4540 // Check that the condition doesn't reach either load. If so, folding
4541 // this will induce a cycle into the DAG.
4542 if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4543 !RLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4544 !LLD->isPredecessor(TheSelect->getOperand(1).Val) &&
4545 !RLD->isPredecessor(TheSelect->getOperand(1).Val)) {
4546 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
Evan Cheng466685d2006-10-09 20:57:25 +00004547 TheSelect->getOperand(0),
4548 TheSelect->getOperand(1),
4549 LLD->getBasePtr(), RLD->getBasePtr(),
4550 TheSelect->getOperand(4));
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004551 }
Evan Cheng466685d2006-10-09 20:57:25 +00004552 }
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004553
4554 if (Addr.Val) {
4555 SDOperand Load;
4556 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
4557 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
4558 Addr,LLD->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004559 LLD->getSrcValueOffset(),
4560 LLD->isVolatile(),
4561 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004562 else {
4563 Load = DAG.getExtLoad(LLD->getExtensionType(),
4564 TheSelect->getValueType(0),
4565 LLD->getChain(), Addr, LLD->getSrcValue(),
4566 LLD->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004567 LLD->getLoadedVT(),
4568 LLD->isVolatile(),
4569 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00004570 }
4571 // Users of the select now use the result of the load.
4572 CombineTo(TheSelect, Load);
4573
4574 // Users of the old loads now use the new load's chain. We know the
4575 // old-load value is dead now.
4576 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
4577 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
4578 return true;
4579 }
Evan Chengc5484282006-10-04 00:56:09 +00004580 }
Chris Lattner40c62d52005-10-18 06:04:22 +00004581 }
4582 }
4583
4584 return false;
4585}
4586
Nate Begeman44728a72005-09-19 22:34:01 +00004587SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
4588 SDOperand N2, SDOperand N3,
Chris Lattner1eba01e2007-04-11 06:50:51 +00004589 ISD::CondCode CC, bool NotExtCompare) {
Nate Begemanf845b452005-10-08 00:29:44 +00004590
4591 MVT::ValueType VT = N2.getValueType();
Nate Begemanf845b452005-10-08 00:29:44 +00004592 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
4593 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
4594 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
4595
4596 // Determine if the condition we're dealing with is constant
4597 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00004598 if (SCC.Val) AddToWorkList(SCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004599 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
4600
4601 // fold select_cc true, x, y -> x
4602 if (SCCC && SCCC->getValue())
4603 return N2;
4604 // fold select_cc false, x, y -> y
4605 if (SCCC && SCCC->getValue() == 0)
4606 return N3;
4607
4608 // Check to see if we can simplify the select into an fabs node
4609 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
4610 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00004611 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00004612 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
4613 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
4614 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
4615 N2 == N3.getOperand(0))
4616 return DAG.getNode(ISD::FABS, VT, N0);
4617
4618 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
4619 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
4620 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
4621 N2.getOperand(0) == N3)
4622 return DAG.getNode(ISD::FABS, VT, N3);
4623 }
4624 }
4625
4626 // Check to see if we can perform the "gzip trick", transforming
4627 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
Chris Lattnere3152e52006-09-20 06:41:35 +00004628 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Nate Begemanf845b452005-10-08 00:29:44 +00004629 MVT::isInteger(N0.getValueType()) &&
Chris Lattnere3152e52006-09-20 06:41:35 +00004630 MVT::isInteger(N2.getValueType()) &&
4631 (N1C->isNullValue() || // (a < 0) ? b : 0
4632 (N1C->getValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Nate Begemanf845b452005-10-08 00:29:44 +00004633 MVT::ValueType XType = N0.getValueType();
4634 MVT::ValueType AType = N2.getValueType();
4635 if (XType >= AType) {
4636 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00004637 // single-bit constant.
Nate Begemanf845b452005-10-08 00:29:44 +00004638 if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
4639 unsigned ShCtV = Log2_64(N2C->getValue());
4640 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
4641 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
4642 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00004643 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004644 if (XType > AType) {
4645 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004646 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004647 }
4648 return DAG.getNode(ISD::AND, AType, Shift, N2);
4649 }
4650 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4651 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4652 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00004653 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004654 if (XType > AType) {
4655 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004656 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004657 }
4658 return DAG.getNode(ISD::AND, AType, Shift, N2);
4659 }
4660 }
Nate Begeman07ed4172005-10-10 21:26:48 +00004661
4662 // fold select C, 16, 0 -> shl C, 4
4663 if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
4664 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
Chris Lattner1eba01e2007-04-11 06:50:51 +00004665
4666 // If the caller doesn't want us to simplify this into a zext of a compare,
4667 // don't do it.
4668 if (NotExtCompare && N2C->getValue() == 1)
4669 return SDOperand();
4670
Nate Begeman07ed4172005-10-10 21:26:48 +00004671 // Get a SetCC of the condition
4672 // FIXME: Should probably make sure that setcc is legal if we ever have a
4673 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00004674 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00004675 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00004676 if (AfterLegalize) {
4677 SCC = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
Chris Lattner555d8d62006-12-07 22:36:47 +00004678 if (N2.getValueType() < SCC.getValueType())
4679 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
4680 else
4681 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004682 } else {
4683 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00004684 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00004685 }
Chris Lattner5750df92006-03-01 04:03:14 +00004686 AddToWorkList(SCC.Val);
4687 AddToWorkList(Temp.Val);
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004688
4689 if (N2C->getValue() == 1)
4690 return Temp;
Nate Begeman07ed4172005-10-10 21:26:48 +00004691 // shl setcc result by log2 n2c
4692 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
4693 DAG.getConstant(Log2_64(N2C->getValue()),
4694 TLI.getShiftAmountTy()));
4695 }
4696
Nate Begemanf845b452005-10-08 00:29:44 +00004697 // Check to see if this is the equivalent of setcc
4698 // FIXME: Turn all of these into setcc if setcc if setcc is legal
4699 // otherwise, go ahead with the folds.
4700 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
4701 MVT::ValueType XType = N0.getValueType();
4702 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
4703 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
4704 if (Res.getValueType() != VT)
4705 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
4706 return Res;
4707 }
4708
4709 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
4710 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
4711 TLI.isOperationLegal(ISD::CTLZ, XType)) {
4712 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
4713 return DAG.getNode(ISD::SRL, XType, Ctlz,
4714 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
4715 TLI.getShiftAmountTy()));
4716 }
4717 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
4718 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
4719 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
4720 N0);
4721 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
4722 DAG.getConstant(~0ULL, XType));
4723 return DAG.getNode(ISD::SRL, XType,
4724 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
4725 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4726 TLI.getShiftAmountTy()));
4727 }
4728 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
4729 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
4730 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
4731 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4732 TLI.getShiftAmountTy()));
4733 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
4734 }
4735 }
4736
4737 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
4738 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4739 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
Chris Lattner1982ef22007-04-11 05:11:38 +00004740 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
4741 N2.getOperand(0) == N1 && MVT::isInteger(N0.getValueType())) {
4742 MVT::ValueType XType = N0.getValueType();
4743 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4744 DAG.getConstant(MVT::getSizeInBits(XType)-1,
4745 TLI.getShiftAmountTy()));
4746 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
4747 AddToWorkList(Shift.Val);
4748 AddToWorkList(Add.Val);
4749 return DAG.getNode(ISD::XOR, XType, Add, Shift);
4750 }
4751 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
4752 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4753 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
4754 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
4755 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Nate Begemanf845b452005-10-08 00:29:44 +00004756 MVT::ValueType XType = N0.getValueType();
4757 if (SubC->isNullValue() && MVT::isInteger(XType)) {
4758 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4759 DAG.getConstant(MVT::getSizeInBits(XType)-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00004760 TLI.getShiftAmountTy()));
Nate Begemanf845b452005-10-08 00:29:44 +00004761 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00004762 AddToWorkList(Shift.Val);
4763 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00004764 return DAG.getNode(ISD::XOR, XType, Add, Shift);
4765 }
4766 }
4767 }
Chris Lattner1982ef22007-04-11 05:11:38 +00004768
Nate Begeman44728a72005-09-19 22:34:01 +00004769 return SDOperand();
4770}
4771
Evan Chengfa1eb272007-02-08 22:13:59 +00004772/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Nate Begeman452d7be2005-09-16 00:54:12 +00004773SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00004774 SDOperand N1, ISD::CondCode Cond,
4775 bool foldBooleans) {
Evan Chengfa1eb272007-02-08 22:13:59 +00004776 TargetLowering::DAGCombinerInfo
4777 DagCombineInfo(DAG, !AfterLegalize, false, this);
4778 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
Nate Begeman452d7be2005-09-16 00:54:12 +00004779}
4780
Nate Begeman69575232005-10-20 02:15:44 +00004781/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
4782/// return a DAG expression to select that will generate the same value by
4783/// multiplying by a magic number. See:
4784/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
4785SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00004786 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00004787 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
4788
Andrew Lenharth232c9102006-06-12 16:07:18 +00004789 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00004790 ii != ee; ++ii)
4791 AddToWorkList(*ii);
4792 return S;
Nate Begeman69575232005-10-20 02:15:44 +00004793}
4794
4795/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
4796/// return a DAG expression to select that will generate the same value by
4797/// multiplying by a magic number. See:
4798/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
4799SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00004800 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00004801 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00004802
Andrew Lenharth232c9102006-06-12 16:07:18 +00004803 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00004804 ii != ee; ++ii)
4805 AddToWorkList(*ii);
4806 return S;
Nate Begeman69575232005-10-20 02:15:44 +00004807}
4808
Jim Laskey71382342006-10-07 23:37:56 +00004809/// FindBaseOffset - Return true if base is known not to alias with anything
4810/// but itself. Provides base object and offset as results.
4811static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
4812 // Assume it is a primitive operation.
4813 Base = Ptr; Offset = 0;
4814
4815 // If it's an adding a simple constant then integrate the offset.
4816 if (Base.getOpcode() == ISD::ADD) {
4817 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
4818 Base = Base.getOperand(0);
4819 Offset += C->getValue();
4820 }
4821 }
4822
4823 // If it's any of the following then it can't alias with anything but itself.
4824 return isa<FrameIndexSDNode>(Base) ||
4825 isa<ConstantPoolSDNode>(Base) ||
4826 isa<GlobalAddressSDNode>(Base);
4827}
4828
4829/// isAlias - Return true if there is any possibility that the two addresses
4830/// overlap.
Jim Laskey096c22e2006-10-18 12:29:57 +00004831bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
4832 const Value *SrcValue1, int SrcValueOffset1,
4833 SDOperand Ptr2, int64_t Size2,
4834 const Value *SrcValue2, int SrcValueOffset2)
4835{
Jim Laskey71382342006-10-07 23:37:56 +00004836 // If they are the same then they must be aliases.
4837 if (Ptr1 == Ptr2) return true;
4838
4839 // Gather base node and offset information.
4840 SDOperand Base1, Base2;
4841 int64_t Offset1, Offset2;
4842 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
4843 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
4844
4845 // If they have a same base address then...
4846 if (Base1 == Base2) {
4847 // Check to see if the addresses overlap.
4848 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
4849 }
4850
Jim Laskey096c22e2006-10-18 12:29:57 +00004851 // If we know both bases then they can't alias.
4852 if (KnownBase1 && KnownBase2) return false;
4853
Jim Laskey07a27092006-10-18 19:08:31 +00004854 if (CombinerGlobalAA) {
4855 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00004856 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
4857 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
4858 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Jim Laskey07a27092006-10-18 19:08:31 +00004859 AliasAnalysis::AliasResult AAResult =
Jim Laskey096c22e2006-10-18 12:29:57 +00004860 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
Jim Laskey07a27092006-10-18 19:08:31 +00004861 if (AAResult == AliasAnalysis::NoAlias)
4862 return false;
4863 }
Jim Laskey096c22e2006-10-18 12:29:57 +00004864
4865 // Otherwise we have to assume they alias.
4866 return true;
Jim Laskey71382342006-10-07 23:37:56 +00004867}
4868
4869/// FindAliasInfo - Extracts the relevant alias information from the memory
4870/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00004871bool DAGCombiner::FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +00004872 SDOperand &Ptr, int64_t &Size,
4873 const Value *&SrcValue, int &SrcValueOffset) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00004874 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
4875 Ptr = LD->getBasePtr();
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004876 Size = MVT::getSizeInBits(LD->getLoadedVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00004877 SrcValue = LD->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00004878 SrcValueOffset = LD->getSrcValueOffset();
Jim Laskey71382342006-10-07 23:37:56 +00004879 return true;
Jim Laskey7ca56af2006-10-11 13:47:09 +00004880 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00004881 Ptr = ST->getBasePtr();
Evan Cheng8b2794a2006-10-13 21:14:26 +00004882 Size = MVT::getSizeInBits(ST->getStoredVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00004883 SrcValue = ST->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00004884 SrcValueOffset = ST->getSrcValueOffset();
Jim Laskey7ca56af2006-10-11 13:47:09 +00004885 } else {
Jim Laskey71382342006-10-07 23:37:56 +00004886 assert(0 && "FindAliasInfo expected a memory operand");
Jim Laskey71382342006-10-07 23:37:56 +00004887 }
4888
4889 return false;
4890}
4891
Jim Laskey6ff23e52006-10-04 16:53:27 +00004892/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
4893/// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +00004894void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +00004895 SmallVector<SDOperand, 8> &Aliases) {
Jim Laskeybc588b82006-10-05 15:07:25 +00004896 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
Jim Laskey6ff23e52006-10-04 16:53:27 +00004897 std::set<SDNode *> Visited; // Visited node set.
4898
Jim Laskey279f0532006-09-25 16:29:54 +00004899 // Get alias information for node.
4900 SDOperand Ptr;
4901 int64_t Size;
Jim Laskey7ca56af2006-10-11 13:47:09 +00004902 const Value *SrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00004903 int SrcValueOffset;
4904 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
Jim Laskey279f0532006-09-25 16:29:54 +00004905
Jim Laskey6ff23e52006-10-04 16:53:27 +00004906 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00004907 Chains.push_back(OriginalChain);
Jim Laskey6ff23e52006-10-04 16:53:27 +00004908
Jim Laskeybc588b82006-10-05 15:07:25 +00004909 // Look at each chain and determine if it is an alias. If so, add it to the
4910 // aliases list. If not, then continue up the chain looking for the next
4911 // candidate.
4912 while (!Chains.empty()) {
4913 SDOperand Chain = Chains.back();
4914 Chains.pop_back();
Jim Laskey6ff23e52006-10-04 16:53:27 +00004915
Jim Laskeybc588b82006-10-05 15:07:25 +00004916 // Don't bother if we've been before.
4917 if (Visited.find(Chain.Val) != Visited.end()) continue;
4918 Visited.insert(Chain.Val);
4919
4920 switch (Chain.getOpcode()) {
4921 case ISD::EntryToken:
4922 // Entry token is ideal chain operand, but handled in FindBetterChain.
4923 break;
Jim Laskey6ff23e52006-10-04 16:53:27 +00004924
Jim Laskeybc588b82006-10-05 15:07:25 +00004925 case ISD::LOAD:
4926 case ISD::STORE: {
4927 // Get alias information for Chain.
4928 SDOperand OpPtr;
4929 int64_t OpSize;
Jim Laskey7ca56af2006-10-11 13:47:09 +00004930 const Value *OpSrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00004931 int OpSrcValueOffset;
4932 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
4933 OpSrcValue, OpSrcValueOffset);
Jim Laskeybc588b82006-10-05 15:07:25 +00004934
4935 // If chain is alias then stop here.
4936 if (!(IsLoad && IsOpLoad) &&
Jim Laskey096c22e2006-10-18 12:29:57 +00004937 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
4938 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00004939 Aliases.push_back(Chain);
4940 } else {
4941 // Look further up the chain.
4942 Chains.push_back(Chain.getOperand(0));
4943 // Clean up old chain.
4944 AddToWorkList(Chain.Val);
Jim Laskey279f0532006-09-25 16:29:54 +00004945 }
Jim Laskeybc588b82006-10-05 15:07:25 +00004946 break;
4947 }
4948
4949 case ISD::TokenFactor:
4950 // We have to check each of the operands of the token factor, so we queue
4951 // then up. Adding the operands to the queue (stack) in reverse order
4952 // maintains the original order and increases the likelihood that getNode
4953 // will find a matching token factor (CSE.)
4954 for (unsigned n = Chain.getNumOperands(); n;)
4955 Chains.push_back(Chain.getOperand(--n));
4956 // Eliminate the token factor if we can.
4957 AddToWorkList(Chain.Val);
4958 break;
4959
4960 default:
4961 // For all other instructions we will just have to take what we can get.
4962 Aliases.push_back(Chain);
4963 break;
Jim Laskey279f0532006-09-25 16:29:54 +00004964 }
4965 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00004966}
4967
4968/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
4969/// for a better chain (aliasing node.)
4970SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
4971 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00004972
Jim Laskey6ff23e52006-10-04 16:53:27 +00004973 // Accumulate all the aliases to this node.
4974 GatherAllAliases(N, OldChain, Aliases);
4975
4976 if (Aliases.size() == 0) {
4977 // If no operands then chain to entry token.
4978 return DAG.getEntryNode();
4979 } else if (Aliases.size() == 1) {
4980 // If a single operand then chain to it. We don't need to revisit it.
4981 return Aliases[0];
4982 }
4983
4984 // Construct a custom tailored token factor.
4985 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4986 &Aliases[0], Aliases.size());
4987
4988 // Make sure the old chain gets cleaned up.
4989 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
4990
4991 return NewChain;
Jim Laskey279f0532006-09-25 16:29:54 +00004992}
4993
Nate Begeman1d4d4142005-09-01 00:19:25 +00004994// SelectionDAG::Combine - This is the entry point for the file.
4995//
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004996void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
Chris Lattner938ab022007-01-16 04:55:25 +00004997 if (!RunningAfterLegalize && ViewDAGCombine1)
4998 viewGraph();
4999 if (RunningAfterLegalize && ViewDAGCombine2)
5000 viewGraph();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005001 /// run - This is the main entry point to this class.
5002 ///
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005003 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005004}