blob: ad8a2279f9f3493c5f19e7a2a0dce852fb4fafc7 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "dagcombine"
16#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner4e137af2008-01-25 07:20:16 +000017#include "llvm/CodeGen/MachineFunction.h"
18#include "llvm/CodeGen/MachineFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "llvm/Analysis/AliasAnalysis.h"
20#include "llvm/Target/TargetData.h"
Chris Lattner1e3362f2008-01-26 19:45:50 +000021#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Target/TargetLowering.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetOptions.h"
25#include "llvm/ADT/SmallPtrSet.h"
26#include "llvm/ADT/Statistic.h"
27#include "llvm/Support/Compiler.h"
28#include "llvm/Support/CommandLine.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/Support/MathExtras.h"
31#include <algorithm>
Dan Gohmand408d392008-05-23 20:40:06 +000032#include <set>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033using namespace llvm;
34
35STATISTIC(NodesCombined , "Number of dag nodes combined");
36STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
37STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
38
39namespace {
40#ifndef NDEBUG
41 static cl::opt<bool>
42 ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
43 cl::desc("Pop up a window to show dags before the first "
44 "dag combine pass"));
45 static cl::opt<bool>
46 ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
47 cl::desc("Pop up a window to show dags before the second "
48 "dag combine pass"));
49#else
50 static const bool ViewDAGCombine1 = false;
51 static const bool ViewDAGCombine2 = false;
52#endif
53
54 static cl::opt<bool>
55 CombinerAA("combiner-alias-analysis", cl::Hidden,
56 cl::desc("Turn on alias analysis during testing"));
57
58 static cl::opt<bool>
59 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
60 cl::desc("Include global information in alias analysis"));
61
62//------------------------------ DAGCombiner ---------------------------------//
63
64 class VISIBILITY_HIDDEN DAGCombiner {
65 SelectionDAG &DAG;
66 TargetLowering &TLI;
67 bool AfterLegalize;
68
69 // Worklist of all of the nodes that need to be simplified.
70 std::vector<SDNode*> WorkList;
71
72 // AA - Used for DAG load/store alias analysis.
73 AliasAnalysis &AA;
74
75 /// AddUsersToWorkList - When an instruction is simplified, add all users of
76 /// the instruction to the work lists because they might get more simplified
77 /// now.
78 ///
79 void AddUsersToWorkList(SDNode *N) {
80 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
81 UI != UE; ++UI)
Roman Levenstein05650fd2008-04-07 10:06:32 +000082 AddToWorkList(UI->getUser());
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083 }
84
Dan Gohman6c89ea72007-10-08 17:57:15 +000085 /// visit - call the node-specific routine that knows how to fold each
86 /// particular type of node.
87 SDOperand visit(SDNode *N);
88
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 public:
90 /// AddToWorkList - Add to the work list making sure it's instance is at the
91 /// the back (next to be processed.)
92 void AddToWorkList(SDNode *N) {
93 removeFromWorkList(N);
94 WorkList.push_back(N);
95 }
96
Chris Lattner7bcb18f2008-02-03 06:49:24 +000097 /// removeFromWorkList - remove all instances of N from the worklist.
98 ///
99 void removeFromWorkList(SDNode *N) {
100 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
101 WorkList.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 }
103
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000104 SDOperand CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
105 bool AddTo = true);
106
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000107 SDOperand CombineTo(SDNode *N, SDOperand Res, bool AddTo = true) {
108 return CombineTo(N, &Res, 1, AddTo);
109 }
110
111 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1,
112 bool AddTo = true) {
113 SDOperand To[] = { Res0, Res1 };
114 return CombineTo(N, To, 2, AddTo);
115 }
Chris Lattner5872a362008-01-17 07:00:52 +0000116
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 private:
118
119 /// SimplifyDemandedBits - Check the specified integer node value to see if
120 /// it can be simplified or if things it uses can be simplified by bit
121 /// propagation. If so, return true.
Dan Gohman11607792008-02-27 00:25:32 +0000122 bool SimplifyDemandedBits(SDOperand Op) {
123 APInt Demanded = APInt::getAllOnesValue(Op.getValueSizeInBits());
124 return SimplifyDemandedBits(Op, Demanded);
125 }
126
127 bool SimplifyDemandedBits(SDOperand Op, const APInt &Demanded);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128
129 bool CombineToPreIndexedLoadStore(SDNode *N);
130 bool CombineToPostIndexedLoadStore(SDNode *N);
131
132
Dan Gohman6c89ea72007-10-08 17:57:15 +0000133 /// combine - call the node-specific routine that knows how to fold each
134 /// particular type of node. If that doesn't do anything, try the
135 /// target-specific DAG combines.
136 SDOperand combine(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137
138 // Visitation implementation - Implement dag node combining for different
139 // node types. The semantics are as follows:
140 // Return Value:
141 // SDOperand.Val == 0 - No change was made
142 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
143 // otherwise - N should be replaced by the returned Operand.
144 //
145 SDOperand visitTokenFactor(SDNode *N);
Chris Lattnerf32fa7f2008-02-13 07:25:05 +0000146 SDOperand visitMERGE_VALUES(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 SDOperand visitADD(SDNode *N);
148 SDOperand visitSUB(SDNode *N);
149 SDOperand visitADDC(SDNode *N);
150 SDOperand visitADDE(SDNode *N);
151 SDOperand visitMUL(SDNode *N);
152 SDOperand visitSDIV(SDNode *N);
153 SDOperand visitUDIV(SDNode *N);
154 SDOperand visitSREM(SDNode *N);
155 SDOperand visitUREM(SDNode *N);
156 SDOperand visitMULHU(SDNode *N);
157 SDOperand visitMULHS(SDNode *N);
Dan Gohman6c89ea72007-10-08 17:57:15 +0000158 SDOperand visitSMUL_LOHI(SDNode *N);
159 SDOperand visitUMUL_LOHI(SDNode *N);
160 SDOperand visitSDIVREM(SDNode *N);
161 SDOperand visitUDIVREM(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 SDOperand visitAND(SDNode *N);
163 SDOperand visitOR(SDNode *N);
164 SDOperand visitXOR(SDNode *N);
165 SDOperand SimplifyVBinOp(SDNode *N);
166 SDOperand visitSHL(SDNode *N);
167 SDOperand visitSRA(SDNode *N);
168 SDOperand visitSRL(SDNode *N);
169 SDOperand visitCTLZ(SDNode *N);
170 SDOperand visitCTTZ(SDNode *N);
171 SDOperand visitCTPOP(SDNode *N);
172 SDOperand visitSELECT(SDNode *N);
173 SDOperand visitSELECT_CC(SDNode *N);
174 SDOperand visitSETCC(SDNode *N);
175 SDOperand visitSIGN_EXTEND(SDNode *N);
176 SDOperand visitZERO_EXTEND(SDNode *N);
177 SDOperand visitANY_EXTEND(SDNode *N);
178 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
179 SDOperand visitTRUNCATE(SDNode *N);
180 SDOperand visitBIT_CONVERT(SDNode *N);
Evan Chengb6290462008-05-12 23:04:07 +0000181 SDOperand visitBUILD_PAIR(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 SDOperand visitFADD(SDNode *N);
183 SDOperand visitFSUB(SDNode *N);
184 SDOperand visitFMUL(SDNode *N);
185 SDOperand visitFDIV(SDNode *N);
186 SDOperand visitFREM(SDNode *N);
187 SDOperand visitFCOPYSIGN(SDNode *N);
188 SDOperand visitSINT_TO_FP(SDNode *N);
189 SDOperand visitUINT_TO_FP(SDNode *N);
190 SDOperand visitFP_TO_SINT(SDNode *N);
191 SDOperand visitFP_TO_UINT(SDNode *N);
192 SDOperand visitFP_ROUND(SDNode *N);
193 SDOperand visitFP_ROUND_INREG(SDNode *N);
194 SDOperand visitFP_EXTEND(SDNode *N);
195 SDOperand visitFNEG(SDNode *N);
196 SDOperand visitFABS(SDNode *N);
197 SDOperand visitBRCOND(SDNode *N);
198 SDOperand visitBR_CC(SDNode *N);
199 SDOperand visitLOAD(SDNode *N);
200 SDOperand visitSTORE(SDNode *N);
201 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
Evan Chengd7ba7ed2007-10-06 08:19:55 +0000202 SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 SDOperand visitBUILD_VECTOR(SDNode *N);
204 SDOperand visitCONCAT_VECTORS(SDNode *N);
205 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
206
207 SDOperand XformToShuffleWithZero(SDNode *N);
208 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
209
Chris Lattner91ed3c32007-12-06 07:33:36 +0000210 SDOperand visitShiftByConstant(SDNode *N, unsigned Amt);
211
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
213 SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
214 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
215 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
216 SDOperand N3, ISD::CondCode CC,
217 bool NotExtCompare = false);
Duncan Sands92c43912008-06-06 12:08:01 +0000218 SDOperand SimplifySetCC(MVT VT, SDOperand N0, SDOperand N1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 ISD::CondCode Cond, bool foldBooleans = true);
Chris Lattner4a7c8452008-01-26 01:09:19 +0000220 SDOperand SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
221 unsigned HiOp);
Duncan Sands92c43912008-06-06 12:08:01 +0000222 SDOperand CombineConsecutiveLoads(SDNode *N, MVT VT);
223 SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 SDOperand BuildSDIV(SDNode *N);
225 SDOperand BuildUDIV(SDNode *N);
226 SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
227 SDOperand ReduceLoadWidth(SDNode *N);
228
Dan Gohman07961cd2008-02-25 21:11:39 +0000229 SDOperand GetDemandedBits(SDOperand V, const APInt &Mask);
Chris Lattnere8671c52007-10-13 06:35:54 +0000230
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
232 /// looking for aliasing nodes and adding them to the Aliases vector.
233 void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
234 SmallVector<SDOperand, 8> &Aliases);
235
236 /// isAlias - Return true if there is any possibility that the two addresses
237 /// overlap.
238 bool isAlias(SDOperand Ptr1, int64_t Size1,
239 const Value *SrcValue1, int SrcValueOffset1,
240 SDOperand Ptr2, int64_t Size2,
241 const Value *SrcValue2, int SrcValueOffset2);
242
243 /// FindAliasInfo - Extracts the relevant alias information from the memory
244 /// node. Returns true if the operand was a load.
245 bool FindAliasInfo(SDNode *N,
246 SDOperand &Ptr, int64_t &Size,
247 const Value *&SrcValue, int &SrcValueOffset);
248
249 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
250 /// looking for a better chain (aliasing node.)
251 SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
252
253public:
254 DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
255 : DAG(D),
256 TLI(D.getTargetLoweringInfo()),
257 AfterLegalize(false),
258 AA(A) {}
259
260 /// Run - runs the dag combiner on all nodes in the work list
261 void Run(bool RunningAfterLegalize);
262 };
263}
264
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000265
266namespace {
267/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
268/// nodes from the worklist.
269class VISIBILITY_HIDDEN WorkListRemover :
270 public SelectionDAG::DAGUpdateListener {
271 DAGCombiner &DC;
272public:
Dan Gohmana789bff2008-02-20 16:44:09 +0000273 explicit WorkListRemover(DAGCombiner &dc) : DC(dc) {}
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000274
Duncan Sands3866b1c2008-06-11 11:42:12 +0000275 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000276 DC.removeFromWorkList(N);
277 }
278
279 virtual void NodeUpdated(SDNode *N) {
280 // Ignore updates.
281 }
282};
283}
284
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285//===----------------------------------------------------------------------===//
286// TargetLowering::DAGCombinerInfo implementation
287//===----------------------------------------------------------------------===//
288
289void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
290 ((DAGCombiner*)DC)->AddToWorkList(N);
291}
292
293SDOperand TargetLowering::DAGCombinerInfo::
294CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
295 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
296}
297
298SDOperand TargetLowering::DAGCombinerInfo::
299CombineTo(SDNode *N, SDOperand Res) {
300 return ((DAGCombiner*)DC)->CombineTo(N, Res);
301}
302
303
304SDOperand TargetLowering::DAGCombinerInfo::
305CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
306 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
307}
308
309
310//===----------------------------------------------------------------------===//
311// Helper Functions
312//===----------------------------------------------------------------------===//
313
314/// isNegatibleForFree - Return 1 if we can compute the negated form of the
315/// specified expression for the same cost as the expression itself, or 2 if we
316/// can compute the negated form more cheaply than the expression itself.
Chris Lattnere0992b82008-02-26 07:04:54 +0000317static char isNegatibleForFree(SDOperand Op, bool AfterLegalize,
318 unsigned Depth = 0) {
Dale Johannesenb89072e2007-10-16 23:38:29 +0000319 // No compile time optimizations on this type.
320 if (Op.getValueType() == MVT::ppcf128)
321 return 0;
322
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 // fneg is removable even if it has multiple uses.
324 if (Op.getOpcode() == ISD::FNEG) return 2;
325
326 // Don't allow anything with multiple uses.
327 if (!Op.hasOneUse()) return 0;
328
329 // Don't recurse exponentially.
330 if (Depth > 6) return 0;
331
332 switch (Op.getOpcode()) {
333 default: return false;
334 case ISD::ConstantFP:
Chris Lattnere0992b82008-02-26 07:04:54 +0000335 // Don't invert constant FP values after legalize. The negated constant
336 // isn't necessarily legal.
337 return AfterLegalize ? 0 : 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338 case ISD::FADD:
339 // FIXME: determine better conditions for this xform.
340 if (!UnsafeFPMath) return 0;
341
342 // -(A+B) -> -A - B
Chris Lattnere0992b82008-02-26 07:04:54 +0000343 if (char V = isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 return V;
345 // -(A+B) -> -B - A
Chris Lattnere0992b82008-02-26 07:04:54 +0000346 return isNegatibleForFree(Op.getOperand(1), AfterLegalize, Depth+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347 case ISD::FSUB:
348 // We can't turn -(A-B) into B-A when we honor signed zeros.
349 if (!UnsafeFPMath) return 0;
350
351 // -(A-B) -> B-A
352 return 1;
353
354 case ISD::FMUL:
355 case ISD::FDIV:
356 if (HonorSignDependentRoundingFPMath()) return 0;
357
358 // -(X*Y) -> (-X * Y) or (X*-Y)
Chris Lattnere0992b82008-02-26 07:04:54 +0000359 if (char V = isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 return V;
361
Chris Lattnere0992b82008-02-26 07:04:54 +0000362 return isNegatibleForFree(Op.getOperand(1), AfterLegalize, Depth+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363
364 case ISD::FP_EXTEND:
365 case ISD::FP_ROUND:
366 case ISD::FSIN:
Chris Lattnere0992b82008-02-26 07:04:54 +0000367 return isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 }
369}
370
371/// GetNegatedExpression - If isNegatibleForFree returns true, this function
372/// returns the newly negated expression.
373static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
Chris Lattnere0992b82008-02-26 07:04:54 +0000374 bool AfterLegalize, unsigned Depth = 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 // fneg is removable even if it has multiple uses.
376 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
377
378 // Don't allow anything with multiple uses.
379 assert(Op.hasOneUse() && "Unknown reuse!");
380
381 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
382 switch (Op.getOpcode()) {
383 default: assert(0 && "Unknown code");
Dale Johannesen7604c1b2007-08-31 23:34:27 +0000384 case ISD::ConstantFP: {
385 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
386 V.changeSign();
387 return DAG.getConstantFP(V, Op.getValueType());
388 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389 case ISD::FADD:
390 // FIXME: determine better conditions for this xform.
391 assert(UnsafeFPMath);
392
393 // -(A+B) -> -A - B
Chris Lattnere0992b82008-02-26 07:04:54 +0000394 if (isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattnere0992b82008-02-26 07:04:54 +0000396 GetNegatedExpression(Op.getOperand(0), DAG,
397 AfterLegalize, Depth+1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 Op.getOperand(1));
399 // -(A+B) -> -B - A
400 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattnere0992b82008-02-26 07:04:54 +0000401 GetNegatedExpression(Op.getOperand(1), DAG,
402 AfterLegalize, Depth+1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 Op.getOperand(0));
404 case ISD::FSUB:
405 // We can't turn -(A-B) into B-A when we honor signed zeros.
406 assert(UnsafeFPMath);
407
408 // -(0-B) -> B
409 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesen7604c1b2007-08-31 23:34:27 +0000410 if (N0CFP->getValueAPF().isZero())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 return Op.getOperand(1);
412
413 // -(A-B) -> B-A
414 return DAG.getNode(ISD::FSUB, Op.getValueType(), Op.getOperand(1),
415 Op.getOperand(0));
416
417 case ISD::FMUL:
418 case ISD::FDIV:
419 assert(!HonorSignDependentRoundingFPMath());
420
421 // -(X*Y) -> -X * Y
Chris Lattner46360032008-02-26 17:09:59 +0000422 if (isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattnere0992b82008-02-26 07:04:54 +0000424 GetNegatedExpression(Op.getOperand(0), DAG,
425 AfterLegalize, Depth+1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 Op.getOperand(1));
427
428 // -(X*Y) -> X * -Y
429 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
430 Op.getOperand(0),
Chris Lattnere0992b82008-02-26 07:04:54 +0000431 GetNegatedExpression(Op.getOperand(1), DAG,
432 AfterLegalize, Depth+1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433
434 case ISD::FP_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 case ISD::FSIN:
436 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattnere0992b82008-02-26 07:04:54 +0000437 GetNegatedExpression(Op.getOperand(0), DAG,
438 AfterLegalize, Depth+1));
Chris Lattner5872a362008-01-17 07:00:52 +0000439 case ISD::FP_ROUND:
440 return DAG.getNode(ISD::FP_ROUND, Op.getValueType(),
Chris Lattnere0992b82008-02-26 07:04:54 +0000441 GetNegatedExpression(Op.getOperand(0), DAG,
442 AfterLegalize, Depth+1),
Chris Lattner5872a362008-01-17 07:00:52 +0000443 Op.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 }
445}
446
447
448// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
449// that selects between the values 1 and 0, making it equivalent to a setcc.
450// Also, set the incoming LHS, RHS, and CC references to the appropriate
451// nodes based on the type of node we are checking. This simplifies life a
452// bit for the callers.
453static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
454 SDOperand &CC) {
455 if (N.getOpcode() == ISD::SETCC) {
456 LHS = N.getOperand(0);
457 RHS = N.getOperand(1);
458 CC = N.getOperand(2);
459 return true;
460 }
461 if (N.getOpcode() == ISD::SELECT_CC &&
462 N.getOperand(2).getOpcode() == ISD::Constant &&
463 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman9d24dc72008-03-13 22:13:53 +0000464 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
466 LHS = N.getOperand(0);
467 RHS = N.getOperand(1);
468 CC = N.getOperand(4);
469 return true;
470 }
471 return false;
472}
473
474// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
475// one use. If this is true, it allows the users to invert the operation for
476// free when it is profitable to do so.
477static bool isOneUseSetCC(SDOperand N) {
478 SDOperand N0, N1, N2;
479 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
480 return true;
481 return false;
482}
483
484SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
Duncan Sands92c43912008-06-06 12:08:01 +0000485 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
487 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
488 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
489 if (isa<ConstantSDNode>(N1)) {
490 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), N1);
491 AddToWorkList(OpNode.Val);
492 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(0));
493 } else if (N0.hasOneUse()) {
494 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
495 AddToWorkList(OpNode.Val);
496 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
497 }
498 }
499 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
500 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
501 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
502 if (isa<ConstantSDNode>(N0)) {
503 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), N0);
504 AddToWorkList(OpNode.Val);
505 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(0));
506 } else if (N1.hasOneUse()) {
507 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
508 AddToWorkList(OpNode.Val);
509 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
510 }
511 }
512 return SDOperand();
513}
514
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000515SDOperand DAGCombiner::CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
516 bool AddTo) {
517 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
518 ++NodesCombined;
519 DOUT << "\nReplacing.1 "; DEBUG(N->dump(&DAG));
520 DOUT << "\nWith: "; DEBUG(To[0].Val->dump(&DAG));
521 DOUT << " and " << NumTo-1 << " other values\n";
522 WorkListRemover DeadNodes(*this);
523 DAG.ReplaceAllUsesWith(N, To, &DeadNodes);
524
525 if (AddTo) {
526 // Push the new nodes and any users onto the worklist
527 for (unsigned i = 0, e = NumTo; i != e; ++i) {
528 AddToWorkList(To[i].Val);
529 AddUsersToWorkList(To[i].Val);
530 }
531 }
532
533 // Nodes can be reintroduced into the worklist. Make sure we do not
534 // process a node that has been replaced.
535 removeFromWorkList(N);
536
537 // Finally, since the node is now dead, remove it from the graph.
538 DAG.DeleteNode(N);
539 return SDOperand(N, 0);
540}
541
542/// SimplifyDemandedBits - Check the specified integer node value to see if
543/// it can be simplified or if things it uses can be simplified by bit
544/// propagation. If so, return true.
Dan Gohman11607792008-02-27 00:25:32 +0000545bool DAGCombiner::SimplifyDemandedBits(SDOperand Op, const APInt &Demanded) {
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000546 TargetLowering::TargetLoweringOpt TLO(DAG, AfterLegalize);
Dan Gohman11607792008-02-27 00:25:32 +0000547 APInt KnownZero, KnownOne;
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000548 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
549 return false;
550
551 // Revisit the node.
552 AddToWorkList(Op.Val);
553
554 // Replace the old value with the new one.
555 ++NodesCombined;
556 DOUT << "\nReplacing.2 "; DEBUG(TLO.Old.Val->dump(&DAG));
557 DOUT << "\nWith: "; DEBUG(TLO.New.Val->dump(&DAG));
558 DOUT << '\n';
559
560 // Replace all uses. If any nodes become isomorphic to other nodes and
561 // are deleted, make sure to remove them from our worklist.
562 WorkListRemover DeadNodes(*this);
563 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &DeadNodes);
564
565 // Push the new node and any (possibly new) users onto the worklist.
566 AddToWorkList(TLO.New.Val);
567 AddUsersToWorkList(TLO.New.Val);
568
569 // Finally, if the node is now dead, remove it from the graph. The node
570 // may not be dead if the replacement process recursively simplified to
571 // something else needing this node.
572 if (TLO.Old.Val->use_empty()) {
573 removeFromWorkList(TLO.Old.Val);
574
575 // If the operands of this node are only used by the node, they will now
576 // be dead. Make sure to visit them first to delete dead nodes early.
577 for (unsigned i = 0, e = TLO.Old.Val->getNumOperands(); i != e; ++i)
578 if (TLO.Old.Val->getOperand(i).Val->hasOneUse())
579 AddToWorkList(TLO.Old.Val->getOperand(i).Val);
580
581 DAG.DeleteNode(TLO.Old.Val);
582 }
583 return true;
584}
585
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586//===----------------------------------------------------------------------===//
587// Main DAG Combiner implementation
588//===----------------------------------------------------------------------===//
589
590void DAGCombiner::Run(bool RunningAfterLegalize) {
591 // set the instance variable, so that the various visit routines may use it.
592 AfterLegalize = RunningAfterLegalize;
593
594 // Add all the dag nodes to the worklist.
595 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
596 E = DAG.allnodes_end(); I != E; ++I)
597 WorkList.push_back(I);
598
599 // Create a dummy node (which is not added to allnodes), that adds a reference
600 // to the root node, preventing it from being deleted, and tracking any
601 // changes of the root.
602 HandleSDNode Dummy(DAG.getRoot());
603
604 // The root of the dag may dangle to deleted nodes until the dag combiner is
605 // done. Set it to null to avoid confusion.
606 DAG.setRoot(SDOperand());
607
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 // while the worklist isn't empty, inspect the node on the end of it and
609 // try and combine it.
610 while (!WorkList.empty()) {
611 SDNode *N = WorkList.back();
612 WorkList.pop_back();
613
614 // If N has no uses, it is dead. Make sure to revisit all N's operands once
615 // N is deleted from the DAG, since they too may now be dead or may have a
616 // reduced number of uses, allowing other xforms.
617 if (N->use_empty() && N != &Dummy) {
618 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
619 AddToWorkList(N->getOperand(i).Val);
620
621 DAG.DeleteNode(N);
622 continue;
623 }
624
Dan Gohman6c89ea72007-10-08 17:57:15 +0000625 SDOperand RV = combine(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626
Chris Lattner20e53902008-01-25 23:34:24 +0000627 if (RV.Val == 0)
628 continue;
629
630 ++NodesCombined;
Chris Lattner4a7c8452008-01-26 01:09:19 +0000631
Chris Lattner20e53902008-01-25 23:34:24 +0000632 // If we get back the same node we passed in, rather than a new node or
633 // zero, we know that the node must have defined multiple values and
634 // CombineTo was used. Since CombineTo takes care of the worklist
635 // mechanics for us, we have no work to do in this case.
636 if (RV.Val == N)
637 continue;
638
639 assert(N->getOpcode() != ISD::DELETED_NODE &&
640 RV.Val->getOpcode() != ISD::DELETED_NODE &&
641 "Node was deleted but visit returned new node!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000642
Chris Lattner20e53902008-01-25 23:34:24 +0000643 DOUT << "\nReplacing.3 "; DEBUG(N->dump(&DAG));
644 DOUT << "\nWith: "; DEBUG(RV.Val->dump(&DAG));
645 DOUT << '\n';
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000646 WorkListRemover DeadNodes(*this);
Chris Lattner20e53902008-01-25 23:34:24 +0000647 if (N->getNumValues() == RV.Val->getNumValues())
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000648 DAG.ReplaceAllUsesWith(N, RV.Val, &DeadNodes);
Chris Lattner20e53902008-01-25 23:34:24 +0000649 else {
Chris Lattner4a7c8452008-01-26 01:09:19 +0000650 assert(N->getValueType(0) == RV.getValueType() &&
651 N->getNumValues() == 1 && "Type mismatch");
Chris Lattner20e53902008-01-25 23:34:24 +0000652 SDOperand OpV = RV;
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000653 DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000654 }
Chris Lattner20e53902008-01-25 23:34:24 +0000655
656 // Push the new node and any users onto the worklist
657 AddToWorkList(RV.Val);
658 AddUsersToWorkList(RV.Val);
659
660 // Add any uses of the old node to the worklist in case this node is the
661 // last one that uses them. They may become dead after this node is
662 // deleted.
663 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
664 AddToWorkList(N->getOperand(i).Val);
665
666 // Nodes can be reintroduced into the worklist. Make sure we do not
667 // process a node that has been replaced.
668 removeFromWorkList(N);
Chris Lattner20e53902008-01-25 23:34:24 +0000669
670 // Finally, since the node is now dead, remove it from the graph.
671 DAG.DeleteNode(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 }
673
674 // If the root changed (e.g. it was a dead load, update the root).
675 DAG.setRoot(Dummy.getValue());
676}
677
678SDOperand DAGCombiner::visit(SDNode *N) {
679 switch(N->getOpcode()) {
680 default: break;
681 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerf32fa7f2008-02-13 07:25:05 +0000682 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 case ISD::ADD: return visitADD(N);
684 case ISD::SUB: return visitSUB(N);
685 case ISD::ADDC: return visitADDC(N);
686 case ISD::ADDE: return visitADDE(N);
687 case ISD::MUL: return visitMUL(N);
688 case ISD::SDIV: return visitSDIV(N);
689 case ISD::UDIV: return visitUDIV(N);
690 case ISD::SREM: return visitSREM(N);
691 case ISD::UREM: return visitUREM(N);
692 case ISD::MULHU: return visitMULHU(N);
693 case ISD::MULHS: return visitMULHS(N);
Dan Gohman6c89ea72007-10-08 17:57:15 +0000694 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
695 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
696 case ISD::SDIVREM: return visitSDIVREM(N);
697 case ISD::UDIVREM: return visitUDIVREM(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 case ISD::AND: return visitAND(N);
699 case ISD::OR: return visitOR(N);
700 case ISD::XOR: return visitXOR(N);
701 case ISD::SHL: return visitSHL(N);
702 case ISD::SRA: return visitSRA(N);
703 case ISD::SRL: return visitSRL(N);
704 case ISD::CTLZ: return visitCTLZ(N);
705 case ISD::CTTZ: return visitCTTZ(N);
706 case ISD::CTPOP: return visitCTPOP(N);
707 case ISD::SELECT: return visitSELECT(N);
708 case ISD::SELECT_CC: return visitSELECT_CC(N);
709 case ISD::SETCC: return visitSETCC(N);
710 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
711 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
712 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
713 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
714 case ISD::TRUNCATE: return visitTRUNCATE(N);
715 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Evan Chengb6290462008-05-12 23:04:07 +0000716 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717 case ISD::FADD: return visitFADD(N);
718 case ISD::FSUB: return visitFSUB(N);
719 case ISD::FMUL: return visitFMUL(N);
720 case ISD::FDIV: return visitFDIV(N);
721 case ISD::FREM: return visitFREM(N);
722 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
723 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
724 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
725 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
726 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
727 case ISD::FP_ROUND: return visitFP_ROUND(N);
728 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
729 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
730 case ISD::FNEG: return visitFNEG(N);
731 case ISD::FABS: return visitFABS(N);
732 case ISD::BRCOND: return visitBRCOND(N);
733 case ISD::BR_CC: return visitBR_CC(N);
734 case ISD::LOAD: return visitLOAD(N);
735 case ISD::STORE: return visitSTORE(N);
736 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Chengd7ba7ed2007-10-06 08:19:55 +0000737 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000738 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
739 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
740 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
741 }
742 return SDOperand();
743}
744
Dan Gohman6c89ea72007-10-08 17:57:15 +0000745SDOperand DAGCombiner::combine(SDNode *N) {
746
747 SDOperand RV = visit(N);
748
749 // If nothing happened, try a target-specific DAG combine.
750 if (RV.Val == 0) {
751 assert(N->getOpcode() != ISD::DELETED_NODE &&
752 "Node was deleted but visit returned NULL!");
753
754 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
755 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
756
757 // Expose the DAG combiner to the target combiner impls.
758 TargetLowering::DAGCombinerInfo
759 DagCombineInfo(DAG, !AfterLegalize, false, this);
760
761 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
762 }
763 }
764
Evan Chengd1113582008-03-22 01:55:50 +0000765 // If N is a commutative binary node, try commuting it to enable more
766 // sdisel CSE.
767 if (RV.Val == 0 &&
768 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
769 N->getNumValues() == 1) {
770 SDOperand N0 = N->getOperand(0);
771 SDOperand N1 = N->getOperand(1);
772 // Constant operands are canonicalized to RHS.
773 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
774 SDOperand Ops[] = { N1, N0 };
775 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
776 Ops, 2);
Evan Chenge40b51c2008-03-24 23:55:16 +0000777 if (CSENode)
Evan Chengd1113582008-03-22 01:55:50 +0000778 return SDOperand(CSENode, 0);
779 }
780 }
781
Dan Gohman6c89ea72007-10-08 17:57:15 +0000782 return RV;
783}
784
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785/// getInputChainForNode - Given a node, return its input chain if it has one,
786/// otherwise return a null sd operand.
787static SDOperand getInputChainForNode(SDNode *N) {
788 if (unsigned NumOps = N->getNumOperands()) {
789 if (N->getOperand(0).getValueType() == MVT::Other)
790 return N->getOperand(0);
791 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
792 return N->getOperand(NumOps-1);
793 for (unsigned i = 1; i < NumOps-1; ++i)
794 if (N->getOperand(i).getValueType() == MVT::Other)
795 return N->getOperand(i);
796 }
797 return SDOperand(0, 0);
798}
799
800SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
801 // If N has two operands, where one has an input chain equal to the other,
802 // the 'other' chain is redundant.
803 if (N->getNumOperands() == 2) {
804 if (getInputChainForNode(N->getOperand(0).Val) == N->getOperand(1))
805 return N->getOperand(0);
806 if (getInputChainForNode(N->getOperand(1).Val) == N->getOperand(0))
807 return N->getOperand(1);
808 }
809
810 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
811 SmallVector<SDOperand, 8> Ops; // Ops for replacing token factor.
812 SmallPtrSet<SDNode*, 16> SeenOps;
813 bool Changed = false; // If we should replace this token factor.
814
815 // Start out with this token factor.
816 TFs.push_back(N);
817
818 // Iterate through token factors. The TFs grows when new token factors are
819 // encountered.
820 for (unsigned i = 0; i < TFs.size(); ++i) {
821 SDNode *TF = TFs[i];
822
823 // Check each of the operands.
824 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
825 SDOperand Op = TF->getOperand(i);
826
827 switch (Op.getOpcode()) {
828 case ISD::EntryToken:
829 // Entry tokens don't need to be added to the list. They are
830 // rededundant.
831 Changed = true;
832 break;
833
834 case ISD::TokenFactor:
835 if ((CombinerAA || Op.hasOneUse()) &&
836 std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
837 // Queue up for processing.
838 TFs.push_back(Op.Val);
839 // Clean up in case the token factor is removed.
840 AddToWorkList(Op.Val);
841 Changed = true;
842 break;
843 }
844 // Fall thru
845
846 default:
847 // Only add if it isn't already in the list.
848 if (SeenOps.insert(Op.Val))
849 Ops.push_back(Op);
850 else
851 Changed = true;
852 break;
853 }
854 }
855 }
856
857 SDOperand Result;
858
859 // If we've change things around then replace token factor.
860 if (Changed) {
Dan Gohman301f4052008-01-29 13:02:09 +0000861 if (Ops.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 // The entry token is the only possible outcome.
863 Result = DAG.getEntryNode();
864 } else {
865 // New and improved token factor.
866 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0], Ops.size());
867 }
868
869 // Don't add users to work list.
870 return CombineTo(N, Result, false);
871 }
872
873 return Result;
874}
875
Chris Lattnerf32fa7f2008-02-13 07:25:05 +0000876/// MERGE_VALUES can always be eliminated.
877SDOperand DAGCombiner::visitMERGE_VALUES(SDNode *N) {
878 WorkListRemover DeadNodes(*this);
879 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
880 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, i), N->getOperand(i),
881 &DeadNodes);
882 removeFromWorkList(N);
883 DAG.DeleteNode(N);
884 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
885}
886
887
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888static
889SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +0000890 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 SDOperand N00 = N0.getOperand(0);
892 SDOperand N01 = N0.getOperand(1);
893 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
894 if (N01C && N00.getOpcode() == ISD::ADD && N00.Val->hasOneUse() &&
895 isa<ConstantSDNode>(N00.getOperand(1))) {
896 N0 = DAG.getNode(ISD::ADD, VT,
897 DAG.getNode(ISD::SHL, VT, N00.getOperand(0), N01),
898 DAG.getNode(ISD::SHL, VT, N00.getOperand(1), N01));
899 return DAG.getNode(ISD::ADD, VT, N0, N1);
900 }
901 return SDOperand();
902}
903
904static
905SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
906 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +0000907 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000908 unsigned Opc = N->getOpcode();
909 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
910 SDOperand LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
911 SDOperand RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
912 ISD::CondCode CC = ISD::SETCC_INVALID;
913 if (isSlctCC)
914 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
915 else {
916 SDOperand CCOp = Slct.getOperand(0);
917 if (CCOp.getOpcode() == ISD::SETCC)
918 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
919 }
920
921 bool DoXform = false;
922 bool InvCC = false;
923 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
924 "Bad input!");
925 if (LHS.getOpcode() == ISD::Constant &&
926 cast<ConstantSDNode>(LHS)->isNullValue())
927 DoXform = true;
928 else if (CC != ISD::SETCC_INVALID &&
929 RHS.getOpcode() == ISD::Constant &&
930 cast<ConstantSDNode>(RHS)->isNullValue()) {
931 std::swap(LHS, RHS);
Chris Lattner667f9c12008-01-17 07:20:38 +0000932 SDOperand Op0 = Slct.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +0000933 bool isInt = (isSlctCC ? Op0.getValueType() :
934 Op0.getOperand(0).getValueType()).isInteger();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000935 CC = ISD::getSetCCInverse(CC, isInt);
936 DoXform = true;
937 InvCC = true;
938 }
939
940 if (DoXform) {
941 SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
942 if (isSlctCC)
943 return DAG.getSelectCC(OtherOp, Result,
944 Slct.getOperand(0), Slct.getOperand(1), CC);
945 SDOperand CCOp = Slct.getOperand(0);
946 if (InvCC)
947 CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
948 CCOp.getOperand(1), CC);
949 return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
950 }
951 return SDOperand();
952}
953
954SDOperand DAGCombiner::visitADD(SDNode *N) {
955 SDOperand N0 = N->getOperand(0);
956 SDOperand N1 = N->getOperand(1);
957 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
958 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +0000959 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960
961 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +0000962 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000963 SDOperand FoldedVOp = SimplifyVBinOp(N);
964 if (FoldedVOp.Val) return FoldedVOp;
965 }
966
967 // fold (add x, undef) -> undef
968 if (N0.getOpcode() == ISD::UNDEF)
969 return N0;
970 if (N1.getOpcode() == ISD::UNDEF)
971 return N1;
972 // fold (add c1, c2) -> c1+c2
973 if (N0C && N1C)
Dan Gohman9d24dc72008-03-13 22:13:53 +0000974 return DAG.getConstant(N0C->getAPIntValue() + N1C->getAPIntValue(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 // canonicalize constant to RHS
976 if (N0C && !N1C)
977 return DAG.getNode(ISD::ADD, VT, N1, N0);
978 // fold (add x, 0) -> x
979 if (N1C && N1C->isNullValue())
980 return N0;
981 // fold ((c1-A)+c2) -> (c1+c2)-A
982 if (N1C && N0.getOpcode() == ISD::SUB)
983 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
984 return DAG.getNode(ISD::SUB, VT,
Dan Gohman9d24dc72008-03-13 22:13:53 +0000985 DAG.getConstant(N1C->getAPIntValue()+
986 N0C->getAPIntValue(), VT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987 N0.getOperand(1));
988 // reassociate add
989 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
990 if (RADD.Val != 0)
991 return RADD;
992 // fold ((0-A) + B) -> B-A
993 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
994 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
995 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
996 // fold (A + (0-B)) -> A-B
997 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
998 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
999 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
1000 // fold (A+(B-A)) -> B
1001 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
1002 return N1.getOperand(0);
1003
Duncan Sands92c43912008-06-06 12:08:01 +00001004 if (!VT.isVector() && SimplifyDemandedBits(SDOperand(N, 0)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001005 return SDOperand(N, 0);
1006
1007 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands92c43912008-06-06 12:08:01 +00001008 if (VT.isInteger() && !VT.isVector()) {
Dan Gohmanbea075f2008-02-20 16:33:30 +00001009 APInt LHSZero, LHSOne;
1010 APInt RHSZero, RHSOne;
Duncan Sands92c43912008-06-06 12:08:01 +00001011 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Dan Gohmanbea075f2008-02-20 16:33:30 +00001013 if (LHSZero.getBoolValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
1015
1016 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1017 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1018 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1019 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1020 return DAG.getNode(ISD::OR, VT, N0, N1);
1021 }
1022 }
1023
1024 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1025 if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
1026 SDOperand Result = combineShlAddConstant(N0, N1, DAG);
1027 if (Result.Val) return Result;
1028 }
1029 if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
1030 SDOperand Result = combineShlAddConstant(N1, N0, DAG);
1031 if (Result.Val) return Result;
1032 }
1033
1034 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
1035 if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
1036 SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
1037 if (Result.Val) return Result;
1038 }
1039 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1040 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1041 if (Result.Val) return Result;
1042 }
1043
1044 return SDOperand();
1045}
1046
1047SDOperand DAGCombiner::visitADDC(SDNode *N) {
1048 SDOperand N0 = N->getOperand(0);
1049 SDOperand N1 = N->getOperand(1);
1050 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1051 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001052 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053
1054 // If the flag result is dead, turn this into an ADD.
1055 if (N->hasNUsesOfValue(0, 1))
1056 return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
1057 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1058
1059 // canonicalize constant to RHS.
1060 if (N0C && !N1C) {
1061 SDOperand Ops[] = { N1, N0 };
1062 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1063 }
1064
1065 // fold (addc x, 0) -> x + no carry out
1066 if (N1C && N1C->isNullValue())
1067 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1068
1069 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohmanbea075f2008-02-20 16:33:30 +00001070 APInt LHSZero, LHSOne;
1071 APInt RHSZero, RHSOne;
Duncan Sands92c43912008-06-06 12:08:01 +00001072 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Dan Gohmanbea075f2008-02-20 16:33:30 +00001074 if (LHSZero.getBoolValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
1076
1077 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1078 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1079 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1080 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1081 return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
1082 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1083 }
1084
1085 return SDOperand();
1086}
1087
1088SDOperand DAGCombiner::visitADDE(SDNode *N) {
1089 SDOperand N0 = N->getOperand(0);
1090 SDOperand N1 = N->getOperand(1);
1091 SDOperand CarryIn = N->getOperand(2);
1092 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1093 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001094 //MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095
1096 // canonicalize constant to RHS
1097 if (N0C && !N1C) {
1098 SDOperand Ops[] = { N1, N0, CarryIn };
1099 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1100 }
1101
1102 // fold (adde x, y, false) -> (addc x, y)
1103 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1104 SDOperand Ops[] = { N1, N0 };
1105 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1106 }
1107
1108 return SDOperand();
1109}
1110
1111
1112
1113SDOperand DAGCombiner::visitSUB(SDNode *N) {
1114 SDOperand N0 = N->getOperand(0);
1115 SDOperand N1 = N->getOperand(1);
1116 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1117 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Duncan Sands92c43912008-06-06 12:08:01 +00001118 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119
1120 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00001121 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 SDOperand FoldedVOp = SimplifyVBinOp(N);
1123 if (FoldedVOp.Val) return FoldedVOp;
1124 }
1125
1126 // fold (sub x, x) -> 0
Evan Chenga15896e2008-03-12 07:02:50 +00001127 if (N0 == N1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128 return DAG.getConstant(0, N->getValueType(0));
1129 // fold (sub c1, c2) -> c1-c2
1130 if (N0C && N1C)
1131 return DAG.getNode(ISD::SUB, VT, N0, N1);
1132 // fold (sub x, c) -> (add x, -c)
1133 if (N1C)
Dan Gohman9d24dc72008-03-13 22:13:53 +00001134 return DAG.getNode(ISD::ADD, VT, N0,
1135 DAG.getConstant(-N1C->getAPIntValue(), VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001136 // fold (A+B)-A -> B
1137 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
1138 return N0.getOperand(1);
1139 // fold (A+B)-B -> A
1140 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
1141 return N0.getOperand(0);
1142 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1143 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1144 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1145 if (Result.Val) return Result;
1146 }
1147 // If either operand of a sub is undef, the result is undef
1148 if (N0.getOpcode() == ISD::UNDEF)
1149 return N0;
1150 if (N1.getOpcode() == ISD::UNDEF)
1151 return N1;
1152
1153 return SDOperand();
1154}
1155
1156SDOperand DAGCombiner::visitMUL(SDNode *N) {
1157 SDOperand N0 = N->getOperand(0);
1158 SDOperand N1 = N->getOperand(1);
1159 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1160 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001161 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001162
1163 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00001164 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 SDOperand FoldedVOp = SimplifyVBinOp(N);
1166 if (FoldedVOp.Val) return FoldedVOp;
1167 }
1168
1169 // fold (mul x, undef) -> 0
1170 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1171 return DAG.getConstant(0, VT);
1172 // fold (mul c1, c2) -> c1*c2
1173 if (N0C && N1C)
1174 return DAG.getNode(ISD::MUL, VT, N0, N1);
1175 // canonicalize constant to RHS
1176 if (N0C && !N1C)
1177 return DAG.getNode(ISD::MUL, VT, N1, N0);
1178 // fold (mul x, 0) -> 0
1179 if (N1C && N1C->isNullValue())
1180 return N1;
1181 // fold (mul x, -1) -> 0-x
1182 if (N1C && N1C->isAllOnesValue())
1183 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
1184 // fold (mul x, (1 << c)) -> x << c
Dan Gohman9d24dc72008-03-13 22:13:53 +00001185 if (N1C && N1C->getAPIntValue().isPowerOf2())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001186 return DAG.getNode(ISD::SHL, VT, N0,
Dan Gohman9d24dc72008-03-13 22:13:53 +00001187 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001188 TLI.getShiftAmountTy()));
1189 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1190 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1191 // FIXME: If the input is something that is easily negated (e.g. a
1192 // single-use add), we should put the negate there.
1193 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1194 DAG.getNode(ISD::SHL, VT, N0,
1195 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1196 TLI.getShiftAmountTy())));
1197 }
1198
1199 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1200 if (N1C && N0.getOpcode() == ISD::SHL &&
1201 isa<ConstantSDNode>(N0.getOperand(1))) {
1202 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
1203 AddToWorkList(C3.Val);
1204 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1205 }
1206
1207 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1208 // use.
1209 {
1210 SDOperand Sh(0,0), Y(0,0);
1211 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1212 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1213 N0.Val->hasOneUse()) {
1214 Sh = N0; Y = N1;
1215 } else if (N1.getOpcode() == ISD::SHL &&
1216 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1217 Sh = N1; Y = N0;
1218 }
1219 if (Sh.Val) {
1220 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1221 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1222 }
1223 }
1224 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1225 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1226 isa<ConstantSDNode>(N0.getOperand(1))) {
1227 return DAG.getNode(ISD::ADD, VT,
1228 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1229 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1230 }
1231
1232 // reassociate mul
1233 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1234 if (RMUL.Val != 0)
1235 return RMUL;
1236
1237 return SDOperand();
1238}
1239
1240SDOperand DAGCombiner::visitSDIV(SDNode *N) {
1241 SDOperand N0 = N->getOperand(0);
1242 SDOperand N1 = N->getOperand(1);
1243 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1244 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Duncan Sands92c43912008-06-06 12:08:01 +00001245 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001246
1247 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00001248 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 SDOperand FoldedVOp = SimplifyVBinOp(N);
1250 if (FoldedVOp.Val) return FoldedVOp;
1251 }
1252
1253 // fold (sdiv c1, c2) -> c1/c2
1254 if (N0C && N1C && !N1C->isNullValue())
1255 return DAG.getNode(ISD::SDIV, VT, N0, N1);
1256 // fold (sdiv X, 1) -> X
1257 if (N1C && N1C->getSignExtended() == 1LL)
1258 return N0;
1259 // fold (sdiv X, -1) -> 0-X
1260 if (N1C && N1C->isAllOnesValue())
1261 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
1262 // If we know the sign bits of both operands are zero, strength reduce to a
1263 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands92c43912008-06-06 12:08:01 +00001264 if (!VT.isVector()) {
Dan Gohman07961cd2008-02-25 21:11:39 +00001265 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Chris Lattner336672f2008-01-27 23:32:17 +00001266 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
1267 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001268 // fold (sdiv X, pow2) -> simple ops after legalize
Dan Gohman9d24dc72008-03-13 22:13:53 +00001269 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001270 (isPowerOf2_64(N1C->getSignExtended()) ||
1271 isPowerOf2_64(-N1C->getSignExtended()))) {
1272 // If dividing by powers of two is cheap, then don't perform the following
1273 // fold.
1274 if (TLI.isPow2DivCheap())
1275 return SDOperand();
1276 int64_t pow2 = N1C->getSignExtended();
1277 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
1278 unsigned lg2 = Log2_64(abs2);
1279 // Splat the sign bit into the register
1280 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Duncan Sands92c43912008-06-06 12:08:01 +00001281 DAG.getConstant(VT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001282 TLI.getShiftAmountTy()));
1283 AddToWorkList(SGN.Val);
1284 // Add (N0 < 0) ? abs2 - 1 : 0;
1285 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
Duncan Sands92c43912008-06-06 12:08:01 +00001286 DAG.getConstant(VT.getSizeInBits()-lg2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001287 TLI.getShiftAmountTy()));
1288 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
1289 AddToWorkList(SRL.Val);
1290 AddToWorkList(ADD.Val); // Divide by pow2
1291 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1292 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
1293 // If we're dividing by a positive value, we're done. Otherwise, we must
1294 // negate the result.
1295 if (pow2 > 0)
1296 return SRA;
1297 AddToWorkList(SRA.Val);
1298 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1299 }
1300 // if integer divide is expensive and we satisfy the requirements, emit an
1301 // alternate sequence.
1302 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
1303 !TLI.isIntDivCheap()) {
1304 SDOperand Op = BuildSDIV(N);
1305 if (Op.Val) return Op;
1306 }
1307
1308 // undef / X -> 0
1309 if (N0.getOpcode() == ISD::UNDEF)
1310 return DAG.getConstant(0, VT);
1311 // X / undef -> undef
1312 if (N1.getOpcode() == ISD::UNDEF)
1313 return N1;
1314
1315 return SDOperand();
1316}
1317
1318SDOperand DAGCombiner::visitUDIV(SDNode *N) {
1319 SDOperand N0 = N->getOperand(0);
1320 SDOperand N1 = N->getOperand(1);
1321 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1322 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Duncan Sands92c43912008-06-06 12:08:01 +00001323 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001324
1325 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00001326 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001327 SDOperand FoldedVOp = SimplifyVBinOp(N);
1328 if (FoldedVOp.Val) return FoldedVOp;
1329 }
1330
1331 // fold (udiv c1, c2) -> c1/c2
1332 if (N0C && N1C && !N1C->isNullValue())
1333 return DAG.getNode(ISD::UDIV, VT, N0, N1);
1334 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman9d24dc72008-03-13 22:13:53 +00001335 if (N1C && N1C->getAPIntValue().isPowerOf2())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001336 return DAG.getNode(ISD::SRL, VT, N0,
Dan Gohman9d24dc72008-03-13 22:13:53 +00001337 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001338 TLI.getShiftAmountTy()));
1339 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1340 if (N1.getOpcode() == ISD::SHL) {
1341 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00001342 if (SHC->getAPIntValue().isPowerOf2()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001343 MVT ADDVT = N1.getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001344 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
Dan Gohman9d24dc72008-03-13 22:13:53 +00001345 DAG.getConstant(SHC->getAPIntValue()
1346 .logBase2(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001347 ADDVT));
1348 AddToWorkList(Add.Val);
1349 return DAG.getNode(ISD::SRL, VT, N0, Add);
1350 }
1351 }
1352 }
1353 // fold (udiv x, c) -> alternate
Dan Gohman9d24dc72008-03-13 22:13:53 +00001354 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001355 SDOperand Op = BuildUDIV(N);
1356 if (Op.Val) return Op;
1357 }
1358
1359 // undef / X -> 0
1360 if (N0.getOpcode() == ISD::UNDEF)
1361 return DAG.getConstant(0, VT);
1362 // X / undef -> undef
1363 if (N1.getOpcode() == ISD::UNDEF)
1364 return N1;
1365
1366 return SDOperand();
1367}
1368
1369SDOperand DAGCombiner::visitSREM(SDNode *N) {
1370 SDOperand N0 = N->getOperand(0);
1371 SDOperand N1 = N->getOperand(1);
1372 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1373 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001374 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001375
1376 // fold (srem c1, c2) -> c1%c2
1377 if (N0C && N1C && !N1C->isNullValue())
1378 return DAG.getNode(ISD::SREM, VT, N0, N1);
1379 // If we know the sign bits of both operands are zero, strength reduce to a
1380 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands92c43912008-06-06 12:08:01 +00001381 if (!VT.isVector()) {
Dan Gohman07961cd2008-02-25 21:11:39 +00001382 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Chris Lattnerce602f52008-01-27 23:21:58 +00001383 return DAG.getNode(ISD::UREM, VT, N0, N1);
1384 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001385
Dan Gohmanfdb31f12007-11-26 23:46:11 +00001386 // If X/C can be simplified by the division-by-constant logic, lower
1387 // X%C to the equivalent of X-X/C*C.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388 if (N1C && !N1C->isNullValue()) {
1389 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
Chris Lattner4a7c8452008-01-26 01:09:19 +00001390 AddToWorkList(Div.Val);
Dan Gohmanfdb31f12007-11-26 23:46:11 +00001391 SDOperand OptimizedDiv = combine(Div.Val);
1392 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1393 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1394 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1395 AddToWorkList(Mul.Val);
1396 return Sub;
1397 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001398 }
1399
1400 // undef % X -> 0
1401 if (N0.getOpcode() == ISD::UNDEF)
1402 return DAG.getConstant(0, VT);
1403 // X % undef -> undef
1404 if (N1.getOpcode() == ISD::UNDEF)
1405 return N1;
1406
1407 return SDOperand();
1408}
1409
1410SDOperand DAGCombiner::visitUREM(SDNode *N) {
1411 SDOperand N0 = N->getOperand(0);
1412 SDOperand N1 = N->getOperand(1);
1413 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1414 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001415 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001416
1417 // fold (urem c1, c2) -> c1%c2
1418 if (N0C && N1C && !N1C->isNullValue())
1419 return DAG.getNode(ISD::UREM, VT, N0, N1);
1420 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman9d24dc72008-03-13 22:13:53 +00001421 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
1422 return DAG.getNode(ISD::AND, VT, N0,
1423 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001424 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1425 if (N1.getOpcode() == ISD::SHL) {
1426 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00001427 if (SHC->getAPIntValue().isPowerOf2()) {
1428 SDOperand Add =
1429 DAG.getNode(ISD::ADD, VT, N1,
Duncan Sands92c43912008-06-06 12:08:01 +00001430 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman9d24dc72008-03-13 22:13:53 +00001431 VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001432 AddToWorkList(Add.Val);
1433 return DAG.getNode(ISD::AND, VT, N0, Add);
1434 }
1435 }
1436 }
1437
Dan Gohmanfdb31f12007-11-26 23:46:11 +00001438 // If X/C can be simplified by the division-by-constant logic, lower
1439 // X%C to the equivalent of X-X/C*C.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001440 if (N1C && !N1C->isNullValue()) {
1441 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
Dan Gohmanfdb31f12007-11-26 23:46:11 +00001442 SDOperand OptimizedDiv = combine(Div.Val);
1443 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1444 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1445 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1446 AddToWorkList(Mul.Val);
1447 return Sub;
1448 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001449 }
1450
1451 // undef % X -> 0
1452 if (N0.getOpcode() == ISD::UNDEF)
1453 return DAG.getConstant(0, VT);
1454 // X % undef -> undef
1455 if (N1.getOpcode() == ISD::UNDEF)
1456 return N1;
1457
1458 return SDOperand();
1459}
1460
1461SDOperand DAGCombiner::visitMULHS(SDNode *N) {
1462 SDOperand N0 = N->getOperand(0);
1463 SDOperand N1 = N->getOperand(1);
1464 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001465 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001466
1467 // fold (mulhs x, 0) -> 0
1468 if (N1C && N1C->isNullValue())
1469 return N1;
1470 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman9d24dc72008-03-13 22:13:53 +00001471 if (N1C && N1C->getAPIntValue() == 1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001472 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
Duncan Sands92c43912008-06-06 12:08:01 +00001473 DAG.getConstant(N0.getValueType().getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001474 TLI.getShiftAmountTy()));
1475 // fold (mulhs x, undef) -> 0
1476 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1477 return DAG.getConstant(0, VT);
1478
1479 return SDOperand();
1480}
1481
1482SDOperand DAGCombiner::visitMULHU(SDNode *N) {
1483 SDOperand N0 = N->getOperand(0);
1484 SDOperand N1 = N->getOperand(1);
1485 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001486 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001487
1488 // fold (mulhu x, 0) -> 0
1489 if (N1C && N1C->isNullValue())
1490 return N1;
1491 // fold (mulhu x, 1) -> 0
Dan Gohman9d24dc72008-03-13 22:13:53 +00001492 if (N1C && N1C->getAPIntValue() == 1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001493 return DAG.getConstant(0, N0.getValueType());
1494 // fold (mulhu x, undef) -> 0
1495 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1496 return DAG.getConstant(0, VT);
1497
1498 return SDOperand();
1499}
1500
Dan Gohman6c89ea72007-10-08 17:57:15 +00001501/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1502/// compute two values. LoOp and HiOp give the opcodes for the two computations
1503/// that are being performed. Return true if a simplification was made.
1504///
Chris Lattner4a7c8452008-01-26 01:09:19 +00001505SDOperand DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
1506 unsigned HiOp) {
Dan Gohman6c89ea72007-10-08 17:57:15 +00001507 // If the high half is not needed, just compute the low half.
Evan Chengddfa8c72007-11-08 09:25:29 +00001508 bool HiExists = N->hasAnyUseOfValue(1);
1509 if (!HiExists &&
Dan Gohman6c89ea72007-10-08 17:57:15 +00001510 (!AfterLegalize ||
1511 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Chris Lattner4a7c8452008-01-26 01:09:19 +00001512 SDOperand Res = DAG.getNode(LoOp, N->getValueType(0), N->op_begin(),
1513 N->getNumOperands());
1514 return CombineTo(N, Res, Res);
Dan Gohman6c89ea72007-10-08 17:57:15 +00001515 }
1516
1517 // If the low half is not needed, just compute the high half.
Evan Chengddfa8c72007-11-08 09:25:29 +00001518 bool LoExists = N->hasAnyUseOfValue(0);
1519 if (!LoExists &&
Dan Gohman6c89ea72007-10-08 17:57:15 +00001520 (!AfterLegalize ||
1521 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Chris Lattner4a7c8452008-01-26 01:09:19 +00001522 SDOperand Res = DAG.getNode(HiOp, N->getValueType(1), N->op_begin(),
1523 N->getNumOperands());
1524 return CombineTo(N, Res, Res);
Dan Gohman6c89ea72007-10-08 17:57:15 +00001525 }
1526
Evan Chengddfa8c72007-11-08 09:25:29 +00001527 // If both halves are used, return as it is.
1528 if (LoExists && HiExists)
Chris Lattner4a7c8452008-01-26 01:09:19 +00001529 return SDOperand();
Evan Chengddfa8c72007-11-08 09:25:29 +00001530
1531 // If the two computed results can be simplified separately, separate them.
Evan Chengddfa8c72007-11-08 09:25:29 +00001532 if (LoExists) {
1533 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1534 N->op_begin(), N->getNumOperands());
Chris Lattner4a7c8452008-01-26 01:09:19 +00001535 AddToWorkList(Lo.Val);
Evan Chengddfa8c72007-11-08 09:25:29 +00001536 SDOperand LoOpt = combine(Lo.Val);
Chris Lattner4a7c8452008-01-26 01:09:19 +00001537 if (LoOpt.Val && LoOpt.Val != Lo.Val &&
Duncan Sands2418bec2008-06-13 19:07:40 +00001538 (!AfterLegalize ||
1539 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner4a7c8452008-01-26 01:09:19 +00001540 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman6c89ea72007-10-08 17:57:15 +00001541 }
1542
Evan Chengddfa8c72007-11-08 09:25:29 +00001543 if (HiExists) {
1544 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1545 N->op_begin(), N->getNumOperands());
Chris Lattner4a7c8452008-01-26 01:09:19 +00001546 AddToWorkList(Hi.Val);
Evan Chengddfa8c72007-11-08 09:25:29 +00001547 SDOperand HiOpt = combine(Hi.Val);
1548 if (HiOpt.Val && HiOpt != Hi &&
Duncan Sands2418bec2008-06-13 19:07:40 +00001549 (!AfterLegalize ||
1550 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner4a7c8452008-01-26 01:09:19 +00001551 return CombineTo(N, HiOpt, HiOpt);
Evan Chengddfa8c72007-11-08 09:25:29 +00001552 }
Chris Lattner4a7c8452008-01-26 01:09:19 +00001553 return SDOperand();
Dan Gohman6c89ea72007-10-08 17:57:15 +00001554}
1555
1556SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
Chris Lattner4a7c8452008-01-26 01:09:19 +00001557 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
1558 if (Res.Val) return Res;
Dan Gohman6c89ea72007-10-08 17:57:15 +00001559
1560 return SDOperand();
1561}
1562
1563SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
Chris Lattner4a7c8452008-01-26 01:09:19 +00001564 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
1565 if (Res.Val) return Res;
Dan Gohman6c89ea72007-10-08 17:57:15 +00001566
1567 return SDOperand();
1568}
1569
1570SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
Chris Lattner4a7c8452008-01-26 01:09:19 +00001571 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
1572 if (Res.Val) return Res;
Dan Gohman6c89ea72007-10-08 17:57:15 +00001573
1574 return SDOperand();
1575}
1576
1577SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
Chris Lattner4a7c8452008-01-26 01:09:19 +00001578 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
1579 if (Res.Val) return Res;
Dan Gohman6c89ea72007-10-08 17:57:15 +00001580
1581 return SDOperand();
1582}
1583
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001584/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1585/// two operands of the same opcode, try to simplify it.
1586SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1587 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
Duncan Sands92c43912008-06-06 12:08:01 +00001588 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001589 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1590
1591 // For each of OP in AND/OR/XOR:
1592 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1593 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1594 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
1595 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
1596 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
1597 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
1598 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1599 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1600 N0.getOperand(0).getValueType(),
1601 N0.getOperand(0), N1.getOperand(0));
1602 AddToWorkList(ORNode.Val);
1603 return DAG.getNode(N0.getOpcode(), VT, ORNode);
1604 }
1605
1606 // For each of OP in SHL/SRL/SRA/AND...
1607 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1608 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1609 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
1610 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
1611 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
1612 N0.getOperand(1) == N1.getOperand(1)) {
1613 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1614 N0.getOperand(0).getValueType(),
1615 N0.getOperand(0), N1.getOperand(0));
1616 AddToWorkList(ORNode.Val);
1617 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1618 }
1619
1620 return SDOperand();
1621}
1622
1623SDOperand DAGCombiner::visitAND(SDNode *N) {
1624 SDOperand N0 = N->getOperand(0);
1625 SDOperand N1 = N->getOperand(1);
1626 SDOperand LL, LR, RL, RR, CC0, CC1;
1627 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1628 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001629 MVT VT = N1.getValueType();
1630 unsigned BitWidth = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001631
1632 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00001633 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001634 SDOperand FoldedVOp = SimplifyVBinOp(N);
1635 if (FoldedVOp.Val) return FoldedVOp;
1636 }
1637
1638 // fold (and x, undef) -> 0
1639 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1640 return DAG.getConstant(0, VT);
1641 // fold (and c1, c2) -> c1&c2
1642 if (N0C && N1C)
1643 return DAG.getNode(ISD::AND, VT, N0, N1);
1644 // canonicalize constant to RHS
1645 if (N0C && !N1C)
1646 return DAG.getNode(ISD::AND, VT, N1, N0);
1647 // fold (and x, -1) -> x
1648 if (N1C && N1C->isAllOnesValue())
1649 return N0;
1650 // if (and x, c) is known to be zero, return 0
Dan Gohman07961cd2008-02-25 21:11:39 +00001651 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0),
1652 APInt::getAllOnesValue(BitWidth)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001653 return DAG.getConstant(0, VT);
1654 // reassociate and
1655 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1656 if (RAND.Val != 0)
1657 return RAND;
1658 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
1659 if (N1C && N0.getOpcode() == ISD::OR)
1660 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman9d24dc72008-03-13 22:13:53 +00001661 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001662 return N1;
1663 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1664 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman07961cd2008-02-25 21:11:39 +00001665 SDOperand N0Op0 = N0.getOperand(0);
1666 APInt Mask = ~N1C->getAPIntValue();
1667 Mask.trunc(N0Op0.getValueSizeInBits());
1668 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001669 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
Dan Gohman07961cd2008-02-25 21:11:39 +00001670 N0Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001671
1672 // Replace uses of the AND with uses of the Zero extend node.
1673 CombineTo(N, Zext);
1674
1675 // We actually want to replace all uses of the any_extend with the
1676 // zero_extend, to avoid duplicating things. This will later cause this
1677 // AND to be folded.
1678 CombineTo(N0.Val, Zext);
1679 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1680 }
1681 }
1682 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1683 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1684 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1685 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1686
1687 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands92c43912008-06-06 12:08:01 +00001688 LL.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001689 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
Dan Gohman9d24dc72008-03-13 22:13:53 +00001690 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001691 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
1692 AddToWorkList(ORNode.Val);
1693 return DAG.getSetCC(VT, ORNode, LR, Op1);
1694 }
1695 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1696 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1697 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
1698 AddToWorkList(ANDNode.Val);
1699 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1700 }
1701 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1702 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1703 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
1704 AddToWorkList(ORNode.Val);
1705 return DAG.getSetCC(VT, ORNode, LR, Op1);
1706 }
1707 }
1708 // canonicalize equivalent to ll == rl
1709 if (LL == RR && LR == RL) {
1710 Op1 = ISD::getSetCCSwappedOperands(Op1);
1711 std::swap(RL, RR);
1712 }
1713 if (LL == RL && LR == RR) {
Duncan Sands92c43912008-06-06 12:08:01 +00001714 bool isInteger = LL.getValueType().isInteger();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001715 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1716 if (Result != ISD::SETCC_INVALID)
1717 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1718 }
1719 }
1720
1721 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1722 if (N0.getOpcode() == N1.getOpcode()) {
1723 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1724 if (Tmp.Val) return Tmp;
1725 }
1726
1727 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1728 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands92c43912008-06-06 12:08:01 +00001729 if (!VT.isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001730 SimplifyDemandedBits(SDOperand(N, 0)))
1731 return SDOperand(N, 0);
1732 // fold (zext_inreg (extload x)) -> (zextload x)
1733 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
1734 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00001735 MVT EVT = LN0->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001736 // If we zero all the possible extended bits, then we can turn this into
1737 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman07961cd2008-02-25 21:11:39 +00001738 unsigned BitWidth = N1.getValueSizeInBits();
1739 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Duncan Sands92c43912008-06-06 12:08:01 +00001740 BitWidth - EVT.getSizeInBits())) &&
Duncan Sands2418bec2008-06-13 19:07:40 +00001741 ((!AfterLegalize && !LN0->isVolatile()) ||
1742 TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001743 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1744 LN0->getBasePtr(), LN0->getSrcValue(),
1745 LN0->getSrcValueOffset(), EVT,
1746 LN0->isVolatile(),
1747 LN0->getAlignment());
1748 AddToWorkList(N);
1749 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
1750 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1751 }
1752 }
1753 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
1754 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1755 N0.hasOneUse()) {
1756 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00001757 MVT EVT = LN0->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001758 // If we zero all the possible extended bits, then we can turn this into
1759 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman07961cd2008-02-25 21:11:39 +00001760 unsigned BitWidth = N1.getValueSizeInBits();
1761 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Duncan Sands92c43912008-06-06 12:08:01 +00001762 BitWidth - EVT.getSizeInBits())) &&
Duncan Sands2418bec2008-06-13 19:07:40 +00001763 ((!AfterLegalize && !LN0->isVolatile()) ||
1764 TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001765 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1766 LN0->getBasePtr(), LN0->getSrcValue(),
1767 LN0->getSrcValueOffset(), EVT,
1768 LN0->isVolatile(),
1769 LN0->getAlignment());
1770 AddToWorkList(N);
1771 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
1772 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1773 }
1774 }
1775
1776 // fold (and (load x), 255) -> (zextload x, i8)
1777 // fold (and (extload x, i16), 255) -> (zextload x, i8)
1778 if (N1C && N0.getOpcode() == ISD::LOAD) {
1779 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1780 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Duncan Sands2418bec2008-06-13 19:07:40 +00001781 LN0->isUnindexed() && N0.hasOneUse() &&
1782 // Do not change the width of a volatile load.
1783 !LN0->isVolatile()) {
Duncan Sands6a437fb2008-06-09 11:32:28 +00001784 MVT EVT = MVT::Other;
1785 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
1786 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue()))
1787 EVT = MVT::getIntegerVT(ActiveBits);
1788
1789 MVT LoadedVT = LN0->getMemoryVT();
Duncan Sands2418bec2008-06-13 19:07:40 +00001790 // Do not generate loads of extended integer types since these can be
1791 // expensive (and would be wrong if the type is not byte sized).
1792 if (EVT != MVT::Other && LoadedVT.bitsGT(EVT) && EVT.isSimple() &&
1793 EVT.isByteSized() && // Exclude MVT::i1, which is simple.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001794 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Duncan Sands92c43912008-06-06 12:08:01 +00001795 MVT PtrType = N0.getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001796 // For big endian targets, we need to add an offset to the pointer to
1797 // load the correct bytes. For little endian systems, we merely need to
1798 // read fewer bytes from the same pointer.
Duncan Sands92c43912008-06-06 12:08:01 +00001799 unsigned LVTStoreBytes = LoadedVT.getStoreSizeInBits()/8;
1800 unsigned EVTStoreBytes = EVT.getStoreSizeInBits()/8;
Duncan Sands4f18d4f2007-11-09 08:57:19 +00001801 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Duncan Sandsa3691432007-10-28 12:59:45 +00001802 unsigned Alignment = LN0->getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001803 SDOperand NewPtr = LN0->getBasePtr();
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00001804 if (TLI.isBigEndian()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001805 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1806 DAG.getConstant(PtrOff, PtrType));
Duncan Sandsa3691432007-10-28 12:59:45 +00001807 Alignment = MinAlign(Alignment, PtrOff);
1808 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001809 AddToWorkList(NewPtr.Val);
1810 SDOperand Load =
1811 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
1812 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsa3691432007-10-28 12:59:45 +00001813 LN0->isVolatile(), Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001814 AddToWorkList(N);
1815 CombineTo(N0.Val, Load, Load.getValue(1));
1816 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1817 }
1818 }
1819 }
1820
1821 return SDOperand();
1822}
1823
1824SDOperand DAGCombiner::visitOR(SDNode *N) {
1825 SDOperand N0 = N->getOperand(0);
1826 SDOperand N1 = N->getOperand(1);
1827 SDOperand LL, LR, RL, RR, CC0, CC1;
1828 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1829 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00001830 MVT VT = N1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001831
1832 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00001833 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001834 SDOperand FoldedVOp = SimplifyVBinOp(N);
1835 if (FoldedVOp.Val) return FoldedVOp;
1836 }
1837
1838 // fold (or x, undef) -> -1
1839 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1840 return DAG.getConstant(~0ULL, VT);
1841 // fold (or c1, c2) -> c1|c2
1842 if (N0C && N1C)
1843 return DAG.getNode(ISD::OR, VT, N0, N1);
1844 // canonicalize constant to RHS
1845 if (N0C && !N1C)
1846 return DAG.getNode(ISD::OR, VT, N1, N0);
1847 // fold (or x, 0) -> x
1848 if (N1C && N1C->isNullValue())
1849 return N0;
1850 // fold (or x, -1) -> -1
1851 if (N1C && N1C->isAllOnesValue())
1852 return N1;
1853 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman07961cd2008-02-25 21:11:39 +00001854 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001855 return N1;
1856 // reassociate or
1857 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1858 if (ROR.Val != 0)
1859 return ROR;
1860 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1861 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
1862 isa<ConstantSDNode>(N0.getOperand(1))) {
1863 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1864 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1865 N1),
Dan Gohman9d24dc72008-03-13 22:13:53 +00001866 DAG.getConstant(N1C->getAPIntValue() |
1867 C1->getAPIntValue(), VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001868 }
1869 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1870 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1871 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1872 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1873
1874 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands92c43912008-06-06 12:08:01 +00001875 LL.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001876 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1877 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
Dan Gohman9d24dc72008-03-13 22:13:53 +00001878 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001879 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1880 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
1881 AddToWorkList(ORNode.Val);
1882 return DAG.getSetCC(VT, ORNode, LR, Op1);
1883 }
1884 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1885 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1886 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1887 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1888 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
1889 AddToWorkList(ANDNode.Val);
1890 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1891 }
1892 }
1893 // canonicalize equivalent to ll == rl
1894 if (LL == RR && LR == RL) {
1895 Op1 = ISD::getSetCCSwappedOperands(Op1);
1896 std::swap(RL, RR);
1897 }
1898 if (LL == RL && LR == RR) {
Duncan Sands92c43912008-06-06 12:08:01 +00001899 bool isInteger = LL.getValueType().isInteger();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001900 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1901 if (Result != ISD::SETCC_INVALID)
1902 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1903 }
1904 }
1905
1906 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1907 if (N0.getOpcode() == N1.getOpcode()) {
1908 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1909 if (Tmp.Val) return Tmp;
1910 }
1911
1912 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1913 if (N0.getOpcode() == ISD::AND &&
1914 N1.getOpcode() == ISD::AND &&
1915 N0.getOperand(1).getOpcode() == ISD::Constant &&
1916 N1.getOperand(1).getOpcode() == ISD::Constant &&
1917 // Don't increase # computations.
1918 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1919 // We can only do this xform if we know that bits from X that are set in C2
1920 // but not in C1 are already zero. Likewise for Y.
Dan Gohman07961cd2008-02-25 21:11:39 +00001921 const APInt &LHSMask =
1922 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
1923 const APInt &RHSMask =
1924 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001925
1926 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1927 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
1928 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1929 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1930 }
1931 }
1932
1933
1934 // See if this is some rotate idiom.
1935 if (SDNode *Rot = MatchRotate(N0, N1))
1936 return SDOperand(Rot, 0);
1937
1938 return SDOperand();
1939}
1940
1941
1942/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1943static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1944 if (Op.getOpcode() == ISD::AND) {
1945 if (isa<ConstantSDNode>(Op.getOperand(1))) {
1946 Mask = Op.getOperand(1);
1947 Op = Op.getOperand(0);
1948 } else {
1949 return false;
1950 }
1951 }
1952
1953 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1954 Shift = Op;
1955 return true;
1956 }
1957 return false;
1958}
1959
1960
1961// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1962// idioms for rotate, and if the target supports rotation instructions, generate
1963// a rot[lr].
1964SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
Duncan Sands2418bec2008-06-13 19:07:40 +00001965 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Duncan Sands92c43912008-06-06 12:08:01 +00001966 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001967 if (!TLI.isTypeLegal(VT)) return 0;
1968
1969 // The target must have at least one rotate flavor.
1970 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1971 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1972 if (!HasROTL && !HasROTR) return 0;
Duncan Sands2418bec2008-06-13 19:07:40 +00001973
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001974 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1975 SDOperand LHSShift; // The shift.
1976 SDOperand LHSMask; // AND value if any.
1977 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1978 return 0; // Not part of a rotate.
1979
1980 SDOperand RHSShift; // The shift.
1981 SDOperand RHSMask; // AND value if any.
1982 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1983 return 0; // Not part of a rotate.
1984
1985 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1986 return 0; // Not shifting the same value.
1987
1988 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1989 return 0; // Shifts must disagree.
1990
1991 // Canonicalize shl to left side in a shl/srl pair.
1992 if (RHSShift.getOpcode() == ISD::SHL) {
1993 std::swap(LHS, RHS);
1994 std::swap(LHSShift, RHSShift);
1995 std::swap(LHSMask , RHSMask );
1996 }
1997
Duncan Sands92c43912008-06-06 12:08:01 +00001998 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001999 SDOperand LHSShiftArg = LHSShift.getOperand(0);
2000 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
2001 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
2002
2003 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
2004 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
2005 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
2006 RHSShiftAmt.getOpcode() == ISD::Constant) {
2007 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
2008 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
2009 if ((LShVal + RShVal) != OpSizeInBits)
2010 return 0;
2011
2012 SDOperand Rot;
2013 if (HasROTL)
2014 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
2015 else
2016 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
2017
2018 // If there is an AND of either shifted operand, apply it to the result.
2019 if (LHSMask.Val || RHSMask.Val) {
Dan Gohmand047c3e2008-03-03 23:51:38 +00002020 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002021
2022 if (LHSMask.Val) {
Dan Gohmand047c3e2008-03-03 23:51:38 +00002023 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
2024 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002025 }
2026 if (RHSMask.Val) {
Dan Gohmand047c3e2008-03-03 23:51:38 +00002027 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
2028 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002029 }
2030
2031 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
2032 }
2033
2034 return Rot.Val;
2035 }
2036
2037 // If there is a mask here, and we have a variable shift, we can't be sure
2038 // that we're masking out the right stuff.
2039 if (LHSMask.Val || RHSMask.Val)
2040 return 0;
2041
2042 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
2043 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
2044 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
2045 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
2046 if (ConstantSDNode *SUBC =
2047 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00002048 if (SUBC->getAPIntValue() == OpSizeInBits) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002049 if (HasROTL)
2050 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2051 else
2052 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002053 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002054 }
2055 }
2056
2057 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
2058 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
2059 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
2060 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
2061 if (ConstantSDNode *SUBC =
2062 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00002063 if (SUBC->getAPIntValue() == OpSizeInBits) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002064 if (HasROTL)
2065 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2066 else
2067 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002068 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002069 }
2070 }
2071
2072 // Look for sign/zext/any-extended cases:
2073 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
2074 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
2075 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
2076 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
2077 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
2078 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
2079 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
2080 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
2081 if (RExtOp0.getOpcode() == ISD::SUB &&
2082 RExtOp0.getOperand(1) == LExtOp0) {
2083 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2084 // (rotr x, y)
2085 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2086 // (rotl x, (sub 32, y))
2087 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00002088 if (SUBC->getAPIntValue() == OpSizeInBits) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002089 if (HasROTL)
2090 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2091 else
2092 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2093 }
2094 }
2095 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2096 RExtOp0 == LExtOp0.getOperand(1)) {
2097 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2098 // (rotl x, y)
2099 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2100 // (rotr x, (sub 32, y))
2101 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00002102 if (SUBC->getAPIntValue() == OpSizeInBits) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002103 if (HasROTL)
2104 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2105 else
2106 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2107 }
2108 }
2109 }
2110 }
2111
2112 return 0;
2113}
2114
2115
2116SDOperand DAGCombiner::visitXOR(SDNode *N) {
2117 SDOperand N0 = N->getOperand(0);
2118 SDOperand N1 = N->getOperand(1);
2119 SDOperand LHS, RHS, CC;
2120 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2121 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00002122 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002123
2124 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00002125 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002126 SDOperand FoldedVOp = SimplifyVBinOp(N);
2127 if (FoldedVOp.Val) return FoldedVOp;
2128 }
2129
Evan Cheng5d00cb42008-03-25 20:08:07 +00002130 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
2131 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
2132 return DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002133 // fold (xor x, undef) -> undef
2134 if (N0.getOpcode() == ISD::UNDEF)
2135 return N0;
2136 if (N1.getOpcode() == ISD::UNDEF)
2137 return N1;
2138 // fold (xor c1, c2) -> c1^c2
2139 if (N0C && N1C)
2140 return DAG.getNode(ISD::XOR, VT, N0, N1);
2141 // canonicalize constant to RHS
2142 if (N0C && !N1C)
2143 return DAG.getNode(ISD::XOR, VT, N1, N0);
2144 // fold (xor x, 0) -> x
2145 if (N1C && N1C->isNullValue())
2146 return N0;
2147 // reassociate xor
2148 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2149 if (RXOR.Val != 0)
2150 return RXOR;
2151 // fold !(x cc y) -> (x !cc y)
Dan Gohman9d24dc72008-03-13 22:13:53 +00002152 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands92c43912008-06-06 12:08:01 +00002153 bool isInt = LHS.getValueType().isInteger();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002154 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2155 isInt);
2156 if (N0.getOpcode() == ISD::SETCC)
2157 return DAG.getSetCC(VT, LHS, RHS, NotCC);
2158 if (N0.getOpcode() == ISD::SELECT_CC)
2159 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
2160 assert(0 && "Unhandled SetCC Equivalent!");
2161 abort();
2162 }
Chris Lattnere27cd502007-09-10 21:39:07 +00002163 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman9d24dc72008-03-13 22:13:53 +00002164 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Chris Lattnere27cd502007-09-10 21:39:07 +00002165 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2166 SDOperand V = N0.getOperand(0);
2167 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sandsbed21472007-10-10 09:54:50 +00002168 DAG.getConstant(1, V.getValueType()));
Chris Lattnere27cd502007-09-10 21:39:07 +00002169 AddToWorkList(V.Val);
2170 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2171 }
2172
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002173 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Dan Gohman9d24dc72008-03-13 22:13:53 +00002174 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002175 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
2176 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
2177 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2178 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
2179 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2180 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
2181 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
2182 return DAG.getNode(NewOpcode, VT, LHS, RHS);
2183 }
2184 }
2185 // fold !(x or y) -> (!x and !y) iff x or y are constants
2186 if (N1C && N1C->isAllOnesValue() &&
2187 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
2188 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
2189 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2190 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
2191 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2192 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
2193 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
2194 return DAG.getNode(NewOpcode, VT, LHS, RHS);
2195 }
2196 }
2197 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2198 if (N1C && N0.getOpcode() == ISD::XOR) {
2199 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2200 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2201 if (N00C)
2202 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
Dan Gohman9d24dc72008-03-13 22:13:53 +00002203 DAG.getConstant(N1C->getAPIntValue()^
2204 N00C->getAPIntValue(), VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002205 if (N01C)
2206 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
Dan Gohman9d24dc72008-03-13 22:13:53 +00002207 DAG.getConstant(N1C->getAPIntValue()^
2208 N01C->getAPIntValue(), VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002209 }
2210 // fold (xor x, x) -> 0
2211 if (N0 == N1) {
Duncan Sands92c43912008-06-06 12:08:01 +00002212 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002213 return DAG.getConstant(0, VT);
2214 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2215 // Produce a vector of zeros.
Duncan Sands92c43912008-06-06 12:08:01 +00002216 SDOperand El = DAG.getConstant(0, VT.getVectorElementType());
2217 std::vector<SDOperand> Ops(VT.getVectorNumElements(), El);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002218 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
2219 }
2220 }
2221
2222 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2223 if (N0.getOpcode() == N1.getOpcode()) {
2224 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2225 if (Tmp.Val) return Tmp;
2226 }
2227
2228 // Simplify the expression using non-local knowledge.
Duncan Sands92c43912008-06-06 12:08:01 +00002229 if (!VT.isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002230 SimplifyDemandedBits(SDOperand(N, 0)))
2231 return SDOperand(N, 0);
2232
2233 return SDOperand();
2234}
2235
Chris Lattner91ed3c32007-12-06 07:33:36 +00002236/// visitShiftByConstant - Handle transforms common to the three shifts, when
2237/// the shift amount is a constant.
2238SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2239 SDNode *LHS = N->getOperand(0).Val;
2240 if (!LHS->hasOneUse()) return SDOperand();
2241
2242 // We want to pull some binops through shifts, so that we have (and (shift))
2243 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
2244 // thing happens with address calculations, so it's important to canonicalize
2245 // it.
2246 bool HighBitSet = false; // Can we transform this if the high bit is set?
2247
2248 switch (LHS->getOpcode()) {
2249 default: return SDOperand();
2250 case ISD::OR:
2251 case ISD::XOR:
2252 HighBitSet = false; // We can only transform sra if the high bit is clear.
2253 break;
2254 case ISD::AND:
2255 HighBitSet = true; // We can only transform sra if the high bit is set.
2256 break;
2257 case ISD::ADD:
2258 if (N->getOpcode() != ISD::SHL)
2259 return SDOperand(); // only shl(add) not sr[al](add).
2260 HighBitSet = false; // We can only transform sra if the high bit is clear.
2261 break;
2262 }
2263
2264 // We require the RHS of the binop to be a constant as well.
2265 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2266 if (!BinOpCst) return SDOperand();
2267
Chris Lattnerdcd19762007-12-06 07:47:55 +00002268
2269 // FIXME: disable this for unless the input to the binop is a shift by a
2270 // constant. If it is not a shift, it pessimizes some common cases like:
2271 //
2272 //void foo(int *X, int i) { X[i & 1235] = 1; }
2273 //int bar(int *X, int i) { return X[i & 255]; }
2274 SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2275 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
2276 BinOpLHSVal->getOpcode() != ISD::SRA &&
2277 BinOpLHSVal->getOpcode() != ISD::SRL) ||
2278 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2279 return SDOperand();
2280
Duncan Sands92c43912008-06-06 12:08:01 +00002281 MVT VT = N->getValueType(0);
Chris Lattner91ed3c32007-12-06 07:33:36 +00002282
2283 // If this is a signed shift right, and the high bit is modified
2284 // by the logical operation, do not perform the transformation.
2285 // The highBitSet boolean indicates the value of the high bit of
2286 // the constant which would cause it to be modified for this
2287 // operation.
2288 if (N->getOpcode() == ISD::SRA) {
Dan Gohmand047c3e2008-03-03 23:51:38 +00002289 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
2290 if (BinOpRHSSignSet != HighBitSet)
Chris Lattner91ed3c32007-12-06 07:33:36 +00002291 return SDOperand();
2292 }
2293
2294 // Fold the constants, shifting the binop RHS by the shift amount.
2295 SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2296 LHS->getOperand(1), N->getOperand(1));
2297
2298 // Create the new shift.
2299 SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2300 N->getOperand(1));
2301
2302 // Create the new binop.
2303 return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2304}
2305
2306
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002307SDOperand DAGCombiner::visitSHL(SDNode *N) {
2308 SDOperand N0 = N->getOperand(0);
2309 SDOperand N1 = N->getOperand(1);
2310 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2311 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00002312 MVT VT = N0.getValueType();
2313 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002314
2315 // fold (shl c1, c2) -> c1<<c2
2316 if (N0C && N1C)
2317 return DAG.getNode(ISD::SHL, VT, N0, N1);
2318 // fold (shl 0, x) -> 0
2319 if (N0C && N0C->isNullValue())
2320 return N0;
2321 // fold (shl x, c >= size(x)) -> undef
2322 if (N1C && N1C->getValue() >= OpSizeInBits)
2323 return DAG.getNode(ISD::UNDEF, VT);
2324 // fold (shl x, 0) -> x
2325 if (N1C && N1C->isNullValue())
2326 return N0;
2327 // if (shl x, c) is known to be zero, return 0
Dan Gohman07961cd2008-02-25 21:11:39 +00002328 if (DAG.MaskedValueIsZero(SDOperand(N, 0),
Duncan Sands92c43912008-06-06 12:08:01 +00002329 APInt::getAllOnesValue(VT.getSizeInBits())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002330 return DAG.getConstant(0, VT);
2331 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2332 return SDOperand(N, 0);
2333 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
2334 if (N1C && N0.getOpcode() == ISD::SHL &&
2335 N0.getOperand(1).getOpcode() == ISD::Constant) {
2336 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2337 uint64_t c2 = N1C->getValue();
2338 if (c1 + c2 > OpSizeInBits)
2339 return DAG.getConstant(0, VT);
2340 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
2341 DAG.getConstant(c1 + c2, N1.getValueType()));
2342 }
2343 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2344 // (srl (and x, -1 << c1), c1-c2)
2345 if (N1C && N0.getOpcode() == ISD::SRL &&
2346 N0.getOperand(1).getOpcode() == ISD::Constant) {
2347 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2348 uint64_t c2 = N1C->getValue();
2349 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2350 DAG.getConstant(~0ULL << c1, VT));
2351 if (c2 > c1)
2352 return DAG.getNode(ISD::SHL, VT, Mask,
2353 DAG.getConstant(c2-c1, N1.getValueType()));
2354 else
2355 return DAG.getNode(ISD::SRL, VT, Mask,
2356 DAG.getConstant(c1-c2, N1.getValueType()));
2357 }
2358 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
2359 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
2360 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2361 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattner91ed3c32007-12-06 07:33:36 +00002362
2363 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002364}
2365
2366SDOperand DAGCombiner::visitSRA(SDNode *N) {
2367 SDOperand N0 = N->getOperand(0);
2368 SDOperand N1 = N->getOperand(1);
2369 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2370 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00002371 MVT VT = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002372
2373 // fold (sra c1, c2) -> c1>>c2
2374 if (N0C && N1C)
2375 return DAG.getNode(ISD::SRA, VT, N0, N1);
2376 // fold (sra 0, x) -> 0
2377 if (N0C && N0C->isNullValue())
2378 return N0;
2379 // fold (sra -1, x) -> -1
2380 if (N0C && N0C->isAllOnesValue())
2381 return N0;
2382 // fold (sra x, c >= size(x)) -> undef
Duncan Sands92c43912008-06-06 12:08:01 +00002383 if (N1C && N1C->getValue() >= VT.getSizeInBits())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002384 return DAG.getNode(ISD::UNDEF, VT);
2385 // fold (sra x, 0) -> x
2386 if (N1C && N1C->isNullValue())
2387 return N0;
2388 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2389 // sext_inreg.
2390 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Duncan Sands92c43912008-06-06 12:08:01 +00002391 unsigned LowBits = VT.getSizeInBits() - (unsigned)N1C->getValue();
Duncan Sands6a437fb2008-06-09 11:32:28 +00002392 MVT EVT = MVT::getIntegerVT(LowBits);
Duncan Sands2418bec2008-06-13 19:07:40 +00002393 if (EVT.isSimple() && // TODO: remove when apint codegen support lands.
2394 (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002395 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2396 DAG.getValueType(EVT));
2397 }
Duncan Sands2418bec2008-06-13 19:07:40 +00002398
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002399 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2400 if (N1C && N0.getOpcode() == ISD::SRA) {
2401 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2402 unsigned Sum = N1C->getValue() + C1->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +00002403 if (Sum >= VT.getSizeInBits()) Sum = VT.getSizeInBits()-1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002404 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2405 DAG.getConstant(Sum, N1C->getValueType(0)));
2406 }
2407 }
Christopher Lambfc5c1642008-03-19 08:30:06 +00002408
2409 // fold sra (shl X, m), result_size - n
2410 // -> (sign_extend (trunc (shl X, result_size - n - m))) for
Christopher Lamb21e8a952008-03-20 04:31:39 +00002411 // result_size - n != m.
2412 // If truncate is free for the target sext(shl) is likely to result in better
2413 // code.
Christopher Lambfc5c1642008-03-19 08:30:06 +00002414 if (N0.getOpcode() == ISD::SHL) {
2415 // Get the two constanst of the shifts, CN0 = m, CN = n.
2416 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2417 if (N01C && N1C) {
Christopher Lamb21e8a952008-03-20 04:31:39 +00002418 // Determine what the truncate's result bitsize and type would be.
Duncan Sands92c43912008-06-06 12:08:01 +00002419 unsigned VTValSize = VT.getSizeInBits();
2420 MVT TruncVT =
2421 MVT::getIntegerVT(VTValSize - N1C->getValue());
Christopher Lamb21e8a952008-03-20 04:31:39 +00002422 // Determine the residual right-shift amount.
Christopher Lambfc5c1642008-03-19 08:30:06 +00002423 unsigned ShiftAmt = N1C->getValue() - N01C->getValue();
Duncan Sands2418bec2008-06-13 19:07:40 +00002424
Christopher Lamb21e8a952008-03-20 04:31:39 +00002425 // If the shift is not a no-op (in which case this should be just a sign
2426 // extend already), the truncated to type is legal, sign_extend is legal
2427 // on that type, and the the truncate to that type is both legal and free,
2428 // perform the transform.
2429 if (ShiftAmt &&
Christopher Lamb21e8a952008-03-20 04:31:39 +00002430 TLI.isOperationLegal(ISD::SIGN_EXTEND, TruncVT) &&
2431 TLI.isOperationLegal(ISD::TRUNCATE, VT) &&
Evan Chengca0e80f2008-03-20 02:18:41 +00002432 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lamb21e8a952008-03-20 04:31:39 +00002433
2434 SDOperand Amt = DAG.getConstant(ShiftAmt, TLI.getShiftAmountTy());
2435 SDOperand Shift = DAG.getNode(ISD::SRL, VT, N0.getOperand(0), Amt);
2436 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, TruncVT, Shift);
2437 return DAG.getNode(ISD::SIGN_EXTEND, N->getValueType(0), Trunc);
Christopher Lambfc5c1642008-03-19 08:30:06 +00002438 }
2439 }
2440 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002441
2442 // Simplify, based on bits shifted out of the LHS.
2443 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2444 return SDOperand(N, 0);
2445
2446
2447 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman07961cd2008-02-25 21:11:39 +00002448 if (DAG.SignBitIsZero(N0))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002449 return DAG.getNode(ISD::SRL, VT, N0, N1);
Chris Lattner91ed3c32007-12-06 07:33:36 +00002450
2451 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002452}
2453
2454SDOperand DAGCombiner::visitSRL(SDNode *N) {
2455 SDOperand N0 = N->getOperand(0);
2456 SDOperand N1 = N->getOperand(1);
2457 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2458 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00002459 MVT VT = N0.getValueType();
2460 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002461
2462 // fold (srl c1, c2) -> c1 >>u c2
2463 if (N0C && N1C)
2464 return DAG.getNode(ISD::SRL, VT, N0, N1);
2465 // fold (srl 0, x) -> 0
2466 if (N0C && N0C->isNullValue())
2467 return N0;
2468 // fold (srl x, c >= size(x)) -> undef
2469 if (N1C && N1C->getValue() >= OpSizeInBits)
2470 return DAG.getNode(ISD::UNDEF, VT);
2471 // fold (srl x, 0) -> x
2472 if (N1C && N1C->isNullValue())
2473 return N0;
2474 // if (srl x, c) is known to be zero, return 0
Dan Gohman07961cd2008-02-25 21:11:39 +00002475 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0),
2476 APInt::getAllOnesValue(OpSizeInBits)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002477 return DAG.getConstant(0, VT);
2478
2479 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
2480 if (N1C && N0.getOpcode() == ISD::SRL &&
2481 N0.getOperand(1).getOpcode() == ISD::Constant) {
2482 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2483 uint64_t c2 = N1C->getValue();
2484 if (c1 + c2 > OpSizeInBits)
2485 return DAG.getConstant(0, VT);
2486 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
2487 DAG.getConstant(c1 + c2, N1.getValueType()));
2488 }
2489
2490 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2491 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2492 // Shifting in all undef bits?
Duncan Sands92c43912008-06-06 12:08:01 +00002493 MVT SmallVT = N0.getOperand(0).getValueType();
2494 if (N1C->getValue() >= SmallVT.getSizeInBits())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002495 return DAG.getNode(ISD::UNDEF, VT);
2496
2497 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2498 AddToWorkList(SmallShift.Val);
2499 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2500 }
2501
2502 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2503 // bit, which is unmodified by sra.
Duncan Sands92c43912008-06-06 12:08:01 +00002504 if (N1C && N1C->getValue()+1 == VT.getSizeInBits()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002505 if (N0.getOpcode() == ISD::SRA)
2506 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2507 }
2508
2509 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2510 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands92c43912008-06-06 12:08:01 +00002511 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohmanbea075f2008-02-20 16:33:30 +00002512 APInt KnownZero, KnownOne;
Duncan Sands92c43912008-06-06 12:08:01 +00002513 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002514 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
2515
2516 // If any of the input bits are KnownOne, then the input couldn't be all
2517 // zeros, thus the result of the srl will always be zero.
Dan Gohmanbea075f2008-02-20 16:33:30 +00002518 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002519
2520 // If all of the bits input the to ctlz node are known to be zero, then
2521 // the result of the ctlz is "32" and the result of the shift is one.
Dan Gohmanbea075f2008-02-20 16:33:30 +00002522 APInt UnknownBits = ~KnownZero & Mask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002523 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2524
2525 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2526 if ((UnknownBits & (UnknownBits-1)) == 0) {
2527 // Okay, we know that only that the single bit specified by UnknownBits
2528 // could be set on input to the CTLZ node. If this bit is set, the SRL
2529 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2530 // to an SRL,XOR pair, which is likely to simplify more.
Dan Gohmanbea075f2008-02-20 16:33:30 +00002531 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002532 SDOperand Op = N0.getOperand(0);
2533 if (ShAmt) {
2534 Op = DAG.getNode(ISD::SRL, VT, Op,
2535 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2536 AddToWorkList(Op.Val);
2537 }
2538 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2539 }
2540 }
2541
2542 // fold operands of srl based on knowledge that the low bits are not
2543 // demanded.
2544 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2545 return SDOperand(N, 0);
2546
Chris Lattner91ed3c32007-12-06 07:33:36 +00002547 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002548}
2549
2550SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
2551 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00002552 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002553
2554 // fold (ctlz c1) -> c2
2555 if (isa<ConstantSDNode>(N0))
2556 return DAG.getNode(ISD::CTLZ, VT, N0);
2557 return SDOperand();
2558}
2559
2560SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
2561 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00002562 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002563
2564 // fold (cttz c1) -> c2
2565 if (isa<ConstantSDNode>(N0))
2566 return DAG.getNode(ISD::CTTZ, VT, N0);
2567 return SDOperand();
2568}
2569
2570SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
2571 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00002572 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002573
2574 // fold (ctpop c1) -> c2
2575 if (isa<ConstantSDNode>(N0))
2576 return DAG.getNode(ISD::CTPOP, VT, N0);
2577 return SDOperand();
2578}
2579
2580SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2581 SDOperand N0 = N->getOperand(0);
2582 SDOperand N1 = N->getOperand(1);
2583 SDOperand N2 = N->getOperand(2);
2584 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2585 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2586 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Duncan Sands92c43912008-06-06 12:08:01 +00002587 MVT VT = N->getValueType(0);
2588 MVT VT0 = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002589
2590 // fold select C, X, X -> X
2591 if (N1 == N2)
2592 return N1;
2593 // fold select true, X, Y -> X
2594 if (N0C && !N0C->isNullValue())
2595 return N1;
2596 // fold select false, X, Y -> Y
2597 if (N0C && N0C->isNullValue())
2598 return N2;
2599 // fold select C, 1, X -> C | X
Duncan Sands92c43912008-06-06 12:08:01 +00002600 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002601 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Chengff601dc2007-08-18 05:57:05 +00002602 // fold select C, 0, 1 -> ~C
Duncan Sands92c43912008-06-06 12:08:01 +00002603 if (VT.isInteger() && VT0.isInteger() &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00002604 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Evan Chengff601dc2007-08-18 05:57:05 +00002605 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2606 if (VT == VT0)
2607 return XORNode;
2608 AddToWorkList(XORNode.Val);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002609 if (VT.bitsGT(VT0))
Evan Chengff601dc2007-08-18 05:57:05 +00002610 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2611 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2612 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002613 // fold select C, 0, X -> ~C & X
Dale Johannesen53e0ad72007-12-06 17:53:31 +00002614 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
2615 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002616 AddToWorkList(XORNode.Val);
2617 return DAG.getNode(ISD::AND, VT, XORNode, N2);
2618 }
2619 // fold select C, X, 1 -> ~C | X
Dan Gohman9d24dc72008-03-13 22:13:53 +00002620 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Dale Johannesen53e0ad72007-12-06 17:53:31 +00002621 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002622 AddToWorkList(XORNode.Val);
2623 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2624 }
2625 // fold select C, X, 0 -> C & X
2626 // FIXME: this should check for C type == X type, not i1?
Duncan Sands92c43912008-06-06 12:08:01 +00002627 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002628 return DAG.getNode(ISD::AND, VT, N0, N1);
2629 // fold X ? X : Y --> X ? 1 : Y --> X | Y
Duncan Sands92c43912008-06-06 12:08:01 +00002630 if (VT == MVT::i1 && N0 == N1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002631 return DAG.getNode(ISD::OR, VT, N0, N2);
2632 // fold X ? Y : X --> X ? Y : 0 --> X & Y
Duncan Sands92c43912008-06-06 12:08:01 +00002633 if (VT == MVT::i1 && N0 == N2)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002634 return DAG.getNode(ISD::AND, VT, N0, N1);
2635
2636 // If we can fold this based on the true/false value, do so.
2637 if (SimplifySelectOps(N, N1, N2))
2638 return SDOperand(N, 0); // Don't revisit N.
Duncan Sands2418bec2008-06-13 19:07:40 +00002639
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002640 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002641 if (N0.getOpcode() == ISD::SETCC) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002642 // FIXME:
2643 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2644 // having to say they don't support SELECT_CC on every type the DAG knows
2645 // about, since there is no way to mark an opcode illegal at all value types
2646 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2647 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2648 N1, N2, N0.getOperand(2));
2649 else
2650 return SimplifySelect(N0, N1, N2);
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002651 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002652 return SDOperand();
2653}
2654
2655SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
2656 SDOperand N0 = N->getOperand(0);
2657 SDOperand N1 = N->getOperand(1);
2658 SDOperand N2 = N->getOperand(2);
2659 SDOperand N3 = N->getOperand(3);
2660 SDOperand N4 = N->getOperand(4);
2661 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2662
2663 // fold select_cc lhs, rhs, x, x, cc -> x
2664 if (N2 == N3)
2665 return N2;
2666
2667 // Determine if the condition we're dealing with is constant
Scott Michel502151f2008-03-10 15:42:14 +00002668 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultType(N0), N0, N1, CC, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002669 if (SCC.Val) AddToWorkList(SCC.Val);
2670
2671 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00002672 if (!SCCC->isNullValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002673 return N2; // cond always true -> true val
2674 else
2675 return N3; // cond always false -> false val
2676 }
2677
2678 // Fold to a simpler select_cc
2679 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2680 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2681 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2682 SCC.getOperand(2));
2683
2684 // If we can fold this based on the true/false value, do so.
2685 if (SimplifySelectOps(N, N2, N3))
2686 return SDOperand(N, 0); // Don't revisit N.
2687
2688 // fold select_cc into other things, such as min/max/abs
2689 return SimplifySelectCC(N0, N1, N2, N3, CC);
2690}
2691
2692SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2693 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2694 cast<CondCodeSDNode>(N->getOperand(2))->get());
2695}
2696
Evan Cheng9decb332007-10-29 19:58:20 +00002697// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2698// "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2699// transformation. Returns true if extension are possible and the above
2700// mentioned transformation is profitable.
2701static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2702 unsigned ExtOpc,
2703 SmallVector<SDNode*, 4> &ExtendNodes,
2704 TargetLowering &TLI) {
2705 bool HasCopyToRegUses = false;
2706 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2707 for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2708 UI != UE; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +00002709 SDNode *User = UI->getUser();
Evan Cheng9decb332007-10-29 19:58:20 +00002710 if (User == N)
2711 continue;
2712 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2713 if (User->getOpcode() == ISD::SETCC) {
2714 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2715 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2716 // Sign bits will be lost after a zext.
2717 return false;
2718 bool Add = false;
2719 for (unsigned i = 0; i != 2; ++i) {
2720 SDOperand UseOp = User->getOperand(i);
2721 if (UseOp == N0)
2722 continue;
2723 if (!isa<ConstantSDNode>(UseOp))
2724 return false;
2725 Add = true;
2726 }
2727 if (Add)
2728 ExtendNodes.push_back(User);
2729 } else {
2730 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2731 SDOperand UseOp = User->getOperand(i);
2732 if (UseOp == N0) {
2733 // If truncate from extended type to original load type is free
2734 // on this target, then it's ok to extend a CopyToReg.
2735 if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2736 HasCopyToRegUses = true;
2737 else
2738 return false;
2739 }
2740 }
2741 }
2742 }
2743
2744 if (HasCopyToRegUses) {
2745 bool BothLiveOut = false;
2746 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2747 UI != UE; ++UI) {
Roman Levenstein05650fd2008-04-07 10:06:32 +00002748 SDNode *User = UI->getUser();
Evan Cheng9decb332007-10-29 19:58:20 +00002749 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2750 SDOperand UseOp = User->getOperand(i);
2751 if (UseOp.Val == N && UseOp.ResNo == 0) {
2752 BothLiveOut = true;
2753 break;
2754 }
2755 }
2756 }
2757 if (BothLiveOut)
2758 // Both unextended and extended values are live out. There had better be
2759 // good a reason for the transformation.
2760 return ExtendNodes.size();
2761 }
2762 return true;
2763}
2764
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002765SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
2766 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00002767 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002768
2769 // fold (sext c1) -> c1
2770 if (isa<ConstantSDNode>(N0))
2771 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
2772
2773 // fold (sext (sext x)) -> (sext x)
2774 // fold (sext (aext x)) -> (sext x)
2775 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
2776 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
2777
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002778 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman2e0e0cf2008-05-20 20:56:33 +00002779 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2780 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002781 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
2782 if (NarrowLoad.Val) {
2783 if (NarrowLoad.Val != N0.Val)
2784 CombineTo(N0.Val, NarrowLoad);
2785 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2786 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002787
Dan Gohman2e0e0cf2008-05-20 20:56:33 +00002788 // See if the value being truncated is already sign extended. If so, just
2789 // eliminate the trunc/sext pair.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002790 SDOperand Op = N0.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00002791 unsigned OpBits = Op.getValueType().getSizeInBits();
2792 unsigned MidBits = N0.getValueType().getSizeInBits();
2793 unsigned DestBits = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002794 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
2795
2796 if (OpBits == DestBits) {
2797 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2798 // bits, it is already ready.
2799 if (NumSignBits > DestBits-MidBits)
2800 return Op;
2801 } else if (OpBits < DestBits) {
2802 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2803 // bits, just sext from i32.
2804 if (NumSignBits > OpBits-MidBits)
2805 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2806 } else {
2807 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2808 // bits, just truncate to i32.
2809 if (NumSignBits > OpBits-MidBits)
2810 return DAG.getNode(ISD::TRUNCATE, VT, Op);
2811 }
2812
2813 // fold (sext (truncate x)) -> (sextinreg x).
2814 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2815 N0.getValueType())) {
Duncan Sandsec142ee2008-06-08 20:54:56 +00002816 if (Op.getValueType().bitsLT(VT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002817 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002818 else if (Op.getValueType().bitsGT(VT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002819 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2820 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2821 DAG.getValueType(N0.getValueType()));
2822 }
2823 }
2824
2825 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng9decb332007-10-29 19:58:20 +00002826 if (ISD::isNON_EXTLoad(N0.Val) &&
Duncan Sands2418bec2008-06-13 19:07:40 +00002827 ((!AfterLegalize && !cast<LoadSDNode>(N0)->isVolatile()) ||
2828 TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng9decb332007-10-29 19:58:20 +00002829 bool DoXform = true;
2830 SmallVector<SDNode*, 4> SetCCs;
2831 if (!N0.hasOneUse())
2832 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2833 if (DoXform) {
2834 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2835 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2836 LN0->getBasePtr(), LN0->getSrcValue(),
2837 LN0->getSrcValueOffset(),
2838 N0.getValueType(),
2839 LN0->isVolatile(),
2840 LN0->getAlignment());
2841 CombineTo(N, ExtLoad);
2842 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2843 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2844 // Extend SetCC uses if necessary.
2845 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2846 SDNode *SetCC = SetCCs[i];
2847 SmallVector<SDOperand, 4> Ops;
2848 for (unsigned j = 0; j != 2; ++j) {
2849 SDOperand SOp = SetCC->getOperand(j);
2850 if (SOp == Trunc)
2851 Ops.push_back(ExtLoad);
2852 else
2853 Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2854 }
2855 Ops.push_back(SetCC->getOperand(2));
2856 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2857 &Ops[0], Ops.size()));
2858 }
2859 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2860 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002861 }
2862
2863 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2864 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
2865 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2866 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
2867 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00002868 MVT EVT = LN0->getMemoryVT();
Duncan Sands2418bec2008-06-13 19:07:40 +00002869 if ((!AfterLegalize && !LN0->isVolatile()) ||
2870 TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002871 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2872 LN0->getBasePtr(), LN0->getSrcValue(),
2873 LN0->getSrcValueOffset(), EVT,
2874 LN0->isVolatile(),
2875 LN0->getAlignment());
2876 CombineTo(N, ExtLoad);
2877 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2878 ExtLoad.getValue(1));
2879 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2880 }
2881 }
2882
2883 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2884 if (N0.getOpcode() == ISD::SETCC) {
2885 SDOperand SCC =
2886 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2887 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2888 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2889 if (SCC.Val) return SCC;
2890 }
2891
Dan Gohman415e13a2008-04-28 16:58:24 +00002892 // fold (sext x) -> (zext x) if the sign bit is known zero.
Dan Gohman5b37f9d2008-04-28 18:47:17 +00002893 if ((!AfterLegalize || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
2894 DAG.SignBitIsZero(N0))
Dan Gohman415e13a2008-04-28 16:58:24 +00002895 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
2896
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002897 return SDOperand();
2898}
2899
2900SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
2901 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00002902 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002903
2904 // fold (zext c1) -> c1
2905 if (isa<ConstantSDNode>(N0))
2906 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
2907 // fold (zext (zext x)) -> (zext x)
2908 // fold (zext (aext x)) -> (zext x)
2909 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
2910 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
2911
2912 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2913 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
2914 if (N0.getOpcode() == ISD::TRUNCATE) {
2915 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
2916 if (NarrowLoad.Val) {
2917 if (NarrowLoad.Val != N0.Val)
2918 CombineTo(N0.Val, NarrowLoad);
2919 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2920 }
2921 }
2922
2923 // fold (zext (truncate x)) -> (and x, mask)
2924 if (N0.getOpcode() == ISD::TRUNCATE &&
2925 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2926 SDOperand Op = N0.getOperand(0);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002927 if (Op.getValueType().bitsLT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002928 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002929 } else if (Op.getValueType().bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002930 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2931 }
2932 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2933 }
2934
2935 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2936 if (N0.getOpcode() == ISD::AND &&
2937 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2938 N0.getOperand(1).getOpcode() == ISD::Constant) {
2939 SDOperand X = N0.getOperand(0).getOperand(0);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002940 if (X.getValueType().bitsLT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002941 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002942 } else if (X.getValueType().bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002943 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2944 }
Dan Gohmand047c3e2008-03-03 23:51:38 +00002945 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Duncan Sands92c43912008-06-06 12:08:01 +00002946 Mask.zext(VT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002947 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2948 }
2949
2950 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng9decb332007-10-29 19:58:20 +00002951 if (ISD::isNON_EXTLoad(N0.Val) &&
Duncan Sands2418bec2008-06-13 19:07:40 +00002952 ((!AfterLegalize && !cast<LoadSDNode>(N0)->isVolatile()) ||
2953 TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng9decb332007-10-29 19:58:20 +00002954 bool DoXform = true;
2955 SmallVector<SDNode*, 4> SetCCs;
2956 if (!N0.hasOneUse())
2957 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
2958 if (DoXform) {
2959 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2960 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2961 LN0->getBasePtr(), LN0->getSrcValue(),
2962 LN0->getSrcValueOffset(),
2963 N0.getValueType(),
2964 LN0->isVolatile(),
2965 LN0->getAlignment());
2966 CombineTo(N, ExtLoad);
2967 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2968 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2969 // Extend SetCC uses if necessary.
2970 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2971 SDNode *SetCC = SetCCs[i];
2972 SmallVector<SDOperand, 4> Ops;
2973 for (unsigned j = 0; j != 2; ++j) {
2974 SDOperand SOp = SetCC->getOperand(j);
2975 if (SOp == Trunc)
2976 Ops.push_back(ExtLoad);
2977 else
Evan Cheng06aaf4c2007-10-30 20:11:21 +00002978 Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
Evan Cheng9decb332007-10-29 19:58:20 +00002979 }
2980 Ops.push_back(SetCC->getOperand(2));
2981 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2982 &Ops[0], Ops.size()));
2983 }
2984 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2985 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002986 }
2987
2988 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2989 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
2990 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2991 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
2992 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00002993 MVT EVT = LN0->getMemoryVT();
Duncan Sands2418bec2008-06-13 19:07:40 +00002994 if ((!AfterLegalize && !LN0->isVolatile()) ||
2995 TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT)) {
2996 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2997 LN0->getBasePtr(), LN0->getSrcValue(),
2998 LN0->getSrcValueOffset(), EVT,
2999 LN0->isVolatile(),
3000 LN0->getAlignment());
3001 CombineTo(N, ExtLoad);
3002 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3003 ExtLoad.getValue(1));
3004 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3005 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003006 }
3007
3008 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
3009 if (N0.getOpcode() == ISD::SETCC) {
3010 SDOperand SCC =
3011 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
3012 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
3013 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
3014 if (SCC.Val) return SCC;
3015 }
3016
3017 return SDOperand();
3018}
3019
3020SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
3021 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00003022 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003023
3024 // fold (aext c1) -> c1
3025 if (isa<ConstantSDNode>(N0))
3026 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
3027 // fold (aext (aext x)) -> (aext x)
3028 // fold (aext (zext x)) -> (zext x)
3029 // fold (aext (sext x)) -> (sext x)
3030 if (N0.getOpcode() == ISD::ANY_EXTEND ||
3031 N0.getOpcode() == ISD::ZERO_EXTEND ||
3032 N0.getOpcode() == ISD::SIGN_EXTEND)
3033 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
3034
3035 // fold (aext (truncate (load x))) -> (aext (smaller load x))
3036 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
3037 if (N0.getOpcode() == ISD::TRUNCATE) {
3038 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
3039 if (NarrowLoad.Val) {
3040 if (NarrowLoad.Val != N0.Val)
3041 CombineTo(N0.Val, NarrowLoad);
3042 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
3043 }
3044 }
3045
3046 // fold (aext (truncate x))
3047 if (N0.getOpcode() == ISD::TRUNCATE) {
3048 SDOperand TruncOp = N0.getOperand(0);
3049 if (TruncOp.getValueType() == VT)
3050 return TruncOp; // x iff x size == zext size.
Duncan Sandsec142ee2008-06-08 20:54:56 +00003051 if (TruncOp.getValueType().bitsGT(VT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003052 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
3053 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
3054 }
3055
3056 // fold (aext (and (trunc x), cst)) -> (and x, cst).
3057 if (N0.getOpcode() == ISD::AND &&
3058 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
3059 N0.getOperand(1).getOpcode() == ISD::Constant) {
3060 SDOperand X = N0.getOperand(0).getOperand(0);
Duncan Sandsec142ee2008-06-08 20:54:56 +00003061 if (X.getValueType().bitsLT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003062 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
Duncan Sandsec142ee2008-06-08 20:54:56 +00003063 } else if (X.getValueType().bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003064 X = DAG.getNode(ISD::TRUNCATE, VT, X);
3065 }
Dan Gohmand047c3e2008-03-03 23:51:38 +00003066 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Duncan Sands92c43912008-06-06 12:08:01 +00003067 Mask.zext(VT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003068 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
3069 }
3070
3071 // fold (aext (load x)) -> (aext (truncate (extload x)))
3072 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Duncan Sands2418bec2008-06-13 19:07:40 +00003073 ((!AfterLegalize && !cast<LoadSDNode>(N0)->isVolatile()) ||
3074 TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003075 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3076 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3077 LN0->getBasePtr(), LN0->getSrcValue(),
3078 LN0->getSrcValueOffset(),
3079 N0.getValueType(),
3080 LN0->isVolatile(),
3081 LN0->getAlignment());
3082 CombineTo(N, ExtLoad);
3083 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3084 ExtLoad.getValue(1));
3085 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3086 }
3087
3088 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
3089 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
3090 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
3091 if (N0.getOpcode() == ISD::LOAD &&
3092 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3093 N0.hasOneUse()) {
3094 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003095 MVT EVT = LN0->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003096 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
3097 LN0->getChain(), LN0->getBasePtr(),
3098 LN0->getSrcValue(),
3099 LN0->getSrcValueOffset(), EVT,
3100 LN0->isVolatile(),
3101 LN0->getAlignment());
3102 CombineTo(N, ExtLoad);
3103 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3104 ExtLoad.getValue(1));
3105 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3106 }
3107
3108 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
3109 if (N0.getOpcode() == ISD::SETCC) {
3110 SDOperand SCC =
3111 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
3112 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
3113 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
3114 if (SCC.Val)
3115 return SCC;
3116 }
3117
3118 return SDOperand();
3119}
3120
Chris Lattnere8671c52007-10-13 06:35:54 +00003121/// GetDemandedBits - See if the specified operand can be simplified with the
3122/// knowledge that only the bits specified by Mask are used. If so, return the
3123/// simpler operand, otherwise return a null SDOperand.
Dan Gohman07961cd2008-02-25 21:11:39 +00003124SDOperand DAGCombiner::GetDemandedBits(SDOperand V, const APInt &Mask) {
Chris Lattnere8671c52007-10-13 06:35:54 +00003125 switch (V.getOpcode()) {
3126 default: break;
3127 case ISD::OR:
3128 case ISD::XOR:
3129 // If the LHS or RHS don't contribute bits to the or, drop them.
3130 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
3131 return V.getOperand(1);
3132 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
3133 return V.getOperand(0);
3134 break;
Chris Lattnerb77ea552007-10-13 06:58:48 +00003135 case ISD::SRL:
3136 // Only look at single-use SRLs.
3137 if (!V.Val->hasOneUse())
3138 break;
3139 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3140 // See if we can recursively simplify the LHS.
3141 unsigned Amt = RHSC->getValue();
Dan Gohman07961cd2008-02-25 21:11:39 +00003142 APInt NewMask = Mask << Amt;
3143 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Chris Lattnerb77ea552007-10-13 06:58:48 +00003144 if (SimplifyLHS.Val) {
3145 return DAG.getNode(ISD::SRL, V.getValueType(),
3146 SimplifyLHS, V.getOperand(1));
3147 }
3148 }
Chris Lattnere8671c52007-10-13 06:35:54 +00003149 }
3150 return SDOperand();
3151}
3152
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003153/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3154/// bits and then truncated to a narrower type and where N is a multiple
3155/// of number of bits of the narrower type, transform it to a narrower load
3156/// from address + N / num of bits of new type. If the result is to be
3157/// extended, also fold the extension to form a extending load.
3158SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3159 unsigned Opc = N->getOpcode();
3160 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3161 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00003162 MVT VT = N->getValueType(0);
3163 MVT EVT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003164
3165 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3166 // extended to VT.
3167 if (Opc == ISD::SIGN_EXTEND_INREG) {
3168 ExtType = ISD::SEXTLOAD;
3169 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
3170 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3171 return SDOperand();
3172 }
3173
Duncan Sands92c43912008-06-06 12:08:01 +00003174 unsigned EVTBits = EVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003175 unsigned ShAmt = 0;
3176 bool CombineSRL = false;
3177 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3178 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3179 ShAmt = N01->getValue();
3180 // Is the shift amount a multiple of size of VT?
3181 if ((ShAmt & (EVTBits-1)) == 0) {
3182 N0 = N0.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00003183 if (N0.getValueType().getSizeInBits() <= EVTBits)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003184 return SDOperand();
3185 CombineSRL = true;
3186 }
3187 }
3188 }
3189
Duncan Sands2418bec2008-06-13 19:07:40 +00003190 // Do not generate loads of extended integer types since these can be
3191 // expensive (and would be wrong if the type is not byte sized).
3192 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() && VT.isSimple() &&
3193 VT.isByteSized() && // Exclude MVT::i1, which is simple.
3194 // Do not change the width of a volatile load.
3195 !cast<LoadSDNode>(N0)->isVolatile()) {
Duncan Sands92c43912008-06-06 12:08:01 +00003196 assert(N0.getValueType().getSizeInBits() > EVTBits &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003197 "Cannot truncate to larger type!");
3198 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003199 MVT PtrType = N0.getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003200 // For big endian targets, we need to adjust the offset to the pointer to
3201 // load the correct bytes.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00003202 if (TLI.isBigEndian()) {
Duncan Sands92c43912008-06-06 12:08:01 +00003203 unsigned LVTStoreBits = N0.getValueType().getStoreSizeInBits();
3204 unsigned EVTStoreBits = EVT.getStoreSizeInBits();
Duncan Sands4f18d4f2007-11-09 08:57:19 +00003205 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3206 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003207 uint64_t PtrOff = ShAmt / 8;
Duncan Sandsa3691432007-10-28 12:59:45 +00003208 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003209 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3210 DAG.getConstant(PtrOff, PtrType));
3211 AddToWorkList(NewPtr.Val);
3212 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3213 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
3214 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Duncan Sandsa3691432007-10-28 12:59:45 +00003215 LN0->isVolatile(), NewAlign)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003216 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
3217 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsa3691432007-10-28 12:59:45 +00003218 LN0->isVolatile(), NewAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003219 AddToWorkList(N);
3220 if (CombineSRL) {
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003221 WorkListRemover DeadNodes(*this);
3222 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
3223 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003224 CombineTo(N->getOperand(0).Val, Load);
3225 } else
3226 CombineTo(N0.Val, Load, Load.getValue(1));
3227 if (ShAmt) {
3228 if (Opc == ISD::SIGN_EXTEND_INREG)
3229 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3230 else
3231 return DAG.getNode(Opc, VT, Load);
3232 }
3233 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3234 }
3235
3236 return SDOperand();
3237}
3238
3239
3240SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
3241 SDOperand N0 = N->getOperand(0);
3242 SDOperand N1 = N->getOperand(1);
Duncan Sands92c43912008-06-06 12:08:01 +00003243 MVT VT = N->getValueType(0);
3244 MVT EVT = cast<VTSDNode>(N1)->getVT();
3245 unsigned VTBits = VT.getSizeInBits();
3246 unsigned EVTBits = EVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003247
3248 // fold (sext_in_reg c1) -> c1
3249 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
3250 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
3251
3252 // If the input is already sign extended, just drop the extension.
Duncan Sands92c43912008-06-06 12:08:01 +00003253 if (DAG.ComputeNumSignBits(N0) >= VT.getSizeInBits()-EVTBits+1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003254 return N0;
3255
3256 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3257 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sandsec142ee2008-06-08 20:54:56 +00003258 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003259 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
3260 }
3261
3262 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman07961cd2008-02-25 21:11:39 +00003263 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003264 return DAG.getZeroExtendInReg(N0, EVT);
3265
3266 // fold operands of sext_in_reg based on knowledge that the top bits are not
3267 // demanded.
3268 if (SimplifyDemandedBits(SDOperand(N, 0)))
3269 return SDOperand(N, 0);
3270
3271 // fold (sext_in_reg (load x)) -> (smaller sextload x)
3272 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3273 SDOperand NarrowLoad = ReduceLoadWidth(N);
3274 if (NarrowLoad.Val)
3275 return NarrowLoad;
3276
3277 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3278 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3279 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3280 if (N0.getOpcode() == ISD::SRL) {
3281 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Duncan Sands92c43912008-06-06 12:08:01 +00003282 if (ShAmt->getValue()+EVTBits <= VT.getSizeInBits()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003283 // We can turn this into an SRA iff the input to the SRL is already sign
3284 // extended enough.
3285 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00003286 if (VT.getSizeInBits()-(ShAmt->getValue()+EVTBits) < InSignBits)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003287 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3288 }
3289 }
3290
3291 // fold (sext_inreg (extload x)) -> (sextload x)
3292 if (ISD::isEXTLoad(N0.Val) &&
3293 ISD::isUNINDEXEDLoad(N0.Val) &&
Dan Gohman9a4c92c2008-01-30 00:15:11 +00003294 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands2418bec2008-06-13 19:07:40 +00003295 ((!AfterLegalize && !cast<LoadSDNode>(N0)->isVolatile()) ||
3296 TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003297 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3298 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3299 LN0->getBasePtr(), LN0->getSrcValue(),
3300 LN0->getSrcValueOffset(), EVT,
3301 LN0->isVolatile(),
3302 LN0->getAlignment());
3303 CombineTo(N, ExtLoad);
3304 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
3305 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3306 }
3307 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
3308 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3309 N0.hasOneUse() &&
Dan Gohman9a4c92c2008-01-30 00:15:11 +00003310 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands2418bec2008-06-13 19:07:40 +00003311 ((!AfterLegalize && !cast<LoadSDNode>(N0)->isVolatile()) ||
3312 TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003313 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3314 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3315 LN0->getBasePtr(), LN0->getSrcValue(),
3316 LN0->getSrcValueOffset(), EVT,
3317 LN0->isVolatile(),
3318 LN0->getAlignment());
3319 CombineTo(N, ExtLoad);
3320 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
3321 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3322 }
3323 return SDOperand();
3324}
3325
3326SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
3327 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00003328 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003329
3330 // noop truncate
3331 if (N0.getValueType() == N->getValueType(0))
3332 return N0;
3333 // fold (truncate c1) -> c1
3334 if (isa<ConstantSDNode>(N0))
3335 return DAG.getNode(ISD::TRUNCATE, VT, N0);
3336 // fold (truncate (truncate x)) -> (truncate x)
3337 if (N0.getOpcode() == ISD::TRUNCATE)
3338 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
3339 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
3340 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3341 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sandsec142ee2008-06-08 20:54:56 +00003342 if (N0.getOperand(0).getValueType().bitsLT(VT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003343 // if the source is smaller than the dest, we still need an extend
3344 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00003345 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003346 // if the source is larger than the dest, than we just need the truncate
3347 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
3348 else
3349 // if the source and dest are the same type, we can drop both the extend
3350 // and the truncate
3351 return N0.getOperand(0);
3352 }
3353
Chris Lattnere8671c52007-10-13 06:35:54 +00003354 // See if we can simplify the input to this truncate through knowledge that
3355 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3356 // -> trunc y
Dan Gohman07961cd2008-02-25 21:11:39 +00003357 SDOperand Shorter =
3358 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
Duncan Sands92c43912008-06-06 12:08:01 +00003359 VT.getSizeInBits()));
Chris Lattnere8671c52007-10-13 06:35:54 +00003360 if (Shorter.Val)
3361 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3362
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003363 // fold (truncate (load x)) -> (smaller load x)
3364 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
3365 return ReduceLoadWidth(N);
3366}
3367
Evan Chengb6290462008-05-12 23:04:07 +00003368static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
3369 SDOperand Elt = N->getOperand(i);
3370 if (Elt.getOpcode() != ISD::MERGE_VALUES)
3371 return Elt.Val;
3372 return Elt.getOperand(Elt.ResNo).Val;
3373}
3374
3375/// CombineConsecutiveLoads - build_pair (load, load) -> load
3376/// if load locations are consecutive.
Duncan Sands92c43912008-06-06 12:08:01 +00003377SDOperand DAGCombiner::CombineConsecutiveLoads(SDNode *N, MVT VT) {
Evan Chengb6290462008-05-12 23:04:07 +00003378 assert(N->getOpcode() == ISD::BUILD_PAIR);
3379
3380 SDNode *LD1 = getBuildPairElt(N, 0);
3381 if (!ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse())
3382 return SDOperand();
Duncan Sands92c43912008-06-06 12:08:01 +00003383 MVT LD1VT = LD1->getValueType(0);
Evan Chengb6290462008-05-12 23:04:07 +00003384 SDNode *LD2 = getBuildPairElt(N, 1);
3385 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3386 if (ISD::isNON_EXTLoad(LD2) &&
3387 LD2->hasOneUse() &&
Duncan Sands2418bec2008-06-13 19:07:40 +00003388 // If both are volatile this would reduce the number of volatile loads.
3389 // If one is volatile it might be ok, but play conservative and bail out.
3390 !cast<LoadSDNode>(LD1)->isVolatile() &&
3391 !cast<LoadSDNode>(LD2)->isVolatile() &&
Duncan Sands92c43912008-06-06 12:08:01 +00003392 TLI.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1, MFI)) {
Evan Chengb6290462008-05-12 23:04:07 +00003393 LoadSDNode *LD = cast<LoadSDNode>(LD1);
3394 unsigned Align = LD->getAlignment();
3395 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00003396 getABITypeAlignment(VT.getTypeForMVT());
Duncan Sands2418bec2008-06-13 19:07:40 +00003397 if (NewAlign <= Align &&
3398 (!AfterLegalize || TLI.isOperationLegal(ISD::LOAD, VT)))
Evan Chengb6290462008-05-12 23:04:07 +00003399 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(),
3400 LD->getSrcValue(), LD->getSrcValueOffset(),
Duncan Sands2418bec2008-06-13 19:07:40 +00003401 false, Align);
Evan Chengb6290462008-05-12 23:04:07 +00003402 }
3403 return SDOperand();
3404}
3405
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003406SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3407 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00003408 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003409
3410 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3411 // Only do this before legalize, since afterward the target may be depending
3412 // on the bitconvert.
3413 // First check to see if this is all constant.
3414 if (!AfterLegalize &&
3415 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
Duncan Sands92c43912008-06-06 12:08:01 +00003416 VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003417 bool isSimple = true;
3418 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3419 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3420 N0.getOperand(i).getOpcode() != ISD::Constant &&
3421 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3422 isSimple = false;
3423 break;
3424 }
3425
Duncan Sands92c43912008-06-06 12:08:01 +00003426 MVT DestEltVT = N->getValueType(0).getVectorElementType();
3427 assert(!DestEltVT.isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003428 "Element type of vector ValueType must not be vector!");
3429 if (isSimple) {
3430 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3431 }
3432 }
3433
3434 // If the input is a constant, let getNode() fold it.
3435 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3436 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3437 if (Res.Val != N) return Res;
3438 }
3439
3440 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3441 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3442
3443 // fold (conv (load x)) -> (load (conv*)x)
Evan Chengd7ba7ed2007-10-06 08:19:55 +00003444 // If the resultant load doesn't need a higher alignment than the original!
3445 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Duncan Sands2418bec2008-06-13 19:07:40 +00003446 // Do not change the width of a volatile load.
3447 !cast<LoadSDNode>(N0)->isVolatile() &&
3448 (!AfterLegalize || TLI.isOperationLegal(ISD::LOAD, VT))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003449 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3450 unsigned Align = TLI.getTargetMachine().getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00003451 getABITypeAlignment(VT.getTypeForMVT());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003452 unsigned OrigAlign = LN0->getAlignment();
3453 if (Align <= OrigAlign) {
3454 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3455 LN0->getSrcValue(), LN0->getSrcValueOffset(),
3456 LN0->isVolatile(), Align);
3457 AddToWorkList(N);
3458 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3459 Load.getValue(1));
3460 return Load;
3461 }
3462 }
Duncan Sands2418bec2008-06-13 19:07:40 +00003463
Chris Lattneref26cbc2008-01-27 17:42:27 +00003464 // Fold bitconvert(fneg(x)) -> xor(bitconvert(x), signbit)
3465 // Fold bitconvert(fabs(x)) -> and(bitconvert(x), ~signbit)
3466 // This often reduces constant pool loads.
3467 if ((N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FABS) &&
Duncan Sands92c43912008-06-06 12:08:01 +00003468 N0.Val->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Chris Lattneref26cbc2008-01-27 17:42:27 +00003469 SDOperand NewConv = DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3470 AddToWorkList(NewConv.Val);
3471
Duncan Sands92c43912008-06-06 12:08:01 +00003472 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattneref26cbc2008-01-27 17:42:27 +00003473 if (N0.getOpcode() == ISD::FNEG)
3474 return DAG.getNode(ISD::XOR, VT, NewConv, DAG.getConstant(SignBit, VT));
3475 assert(N0.getOpcode() == ISD::FABS);
3476 return DAG.getNode(ISD::AND, VT, NewConv, DAG.getConstant(~SignBit, VT));
3477 }
3478
3479 // Fold bitconvert(fcopysign(cst, x)) -> bitconvert(x)&sign | cst&~sign'
3480 // Note that we don't handle copysign(x,cst) because this can always be folded
3481 // to an fneg or fabs.
3482 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse() &&
Chris Lattner336672f2008-01-27 23:32:17 +00003483 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands92c43912008-06-06 12:08:01 +00003484 VT.isInteger() && !VT.isVector()) {
3485 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
3486 SDOperand X = DAG.getNode(ISD::BIT_CONVERT,
3487 MVT::getIntegerVT(OrigXWidth),
Chris Lattneref26cbc2008-01-27 17:42:27 +00003488 N0.getOperand(1));
3489 AddToWorkList(X.Val);
3490
3491 // If X has a different width than the result/lhs, sext it or truncate it.
Duncan Sands92c43912008-06-06 12:08:01 +00003492 unsigned VTWidth = VT.getSizeInBits();
Chris Lattneref26cbc2008-01-27 17:42:27 +00003493 if (OrigXWidth < VTWidth) {
3494 X = DAG.getNode(ISD::SIGN_EXTEND, VT, X);
3495 AddToWorkList(X.Val);
3496 } else if (OrigXWidth > VTWidth) {
3497 // To get the sign bit in the right place, we have to shift it right
3498 // before truncating.
3499 X = DAG.getNode(ISD::SRL, X.getValueType(), X,
3500 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
3501 AddToWorkList(X.Val);
3502 X = DAG.getNode(ISD::TRUNCATE, VT, X);
3503 AddToWorkList(X.Val);
3504 }
3505
Duncan Sands92c43912008-06-06 12:08:01 +00003506 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattneref26cbc2008-01-27 17:42:27 +00003507 X = DAG.getNode(ISD::AND, VT, X, DAG.getConstant(SignBit, VT));
3508 AddToWorkList(X.Val);
3509
3510 SDOperand Cst = DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3511 Cst = DAG.getNode(ISD::AND, VT, Cst, DAG.getConstant(~SignBit, VT));
3512 AddToWorkList(Cst.Val);
3513
3514 return DAG.getNode(ISD::OR, VT, X, Cst);
3515 }
Evan Chengb6290462008-05-12 23:04:07 +00003516
3517 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
3518 if (N0.getOpcode() == ISD::BUILD_PAIR) {
3519 SDOperand CombineLD = CombineConsecutiveLoads(N0.Val, VT);
3520 if (CombineLD.Val)
3521 return CombineLD;
3522 }
Chris Lattneref26cbc2008-01-27 17:42:27 +00003523
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003524 return SDOperand();
3525}
3526
Evan Chengb6290462008-05-12 23:04:07 +00003527SDOperand DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Duncan Sands92c43912008-06-06 12:08:01 +00003528 MVT VT = N->getValueType(0);
Evan Chengb6290462008-05-12 23:04:07 +00003529 return CombineConsecutiveLoads(N, VT);
3530}
3531
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003532/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
3533/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3534/// destination element value type.
3535SDOperand DAGCombiner::
Duncan Sands92c43912008-06-06 12:08:01 +00003536ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT DstEltVT) {
3537 MVT SrcEltVT = BV->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003538
3539 // If this is already the right type, we're done.
3540 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3541
Duncan Sands92c43912008-06-06 12:08:01 +00003542 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
3543 unsigned DstBitSize = DstEltVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003544
3545 // If this is a conversion of N elements of one type to N elements of another
3546 // type, convert each element. This handles FP<->INT cases.
3547 if (SrcBitSize == DstBitSize) {
3548 SmallVector<SDOperand, 8> Ops;
3549 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
3550 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
3551 AddToWorkList(Ops.back().Val);
3552 }
Duncan Sands92c43912008-06-06 12:08:01 +00003553 MVT VT = MVT::getVectorVT(DstEltVT,
3554 BV->getValueType(0).getVectorNumElements());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003555 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
3556 }
3557
3558 // Otherwise, we're growing or shrinking the elements. To avoid having to
3559 // handle annoying details of growing/shrinking FP values, we convert them to
3560 // int first.
Duncan Sands92c43912008-06-06 12:08:01 +00003561 if (SrcEltVT.isFloatingPoint()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003562 // Convert the input float vector to a int vector where the elements are the
3563 // same sizes.
3564 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Duncan Sands6a437fb2008-06-09 11:32:28 +00003565 MVT IntVT = MVT::getIntegerVT(SrcEltVT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003566 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
3567 SrcEltVT = IntVT;
3568 }
3569
3570 // Now we know the input is an integer vector. If the output is a FP type,
3571 // convert to integer first, then to FP of the right size.
Duncan Sands92c43912008-06-06 12:08:01 +00003572 if (DstEltVT.isFloatingPoint()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003573 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Duncan Sands6a437fb2008-06-09 11:32:28 +00003574 MVT TmpVT = MVT::getIntegerVT(DstEltVT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003575 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
3576
3577 // Next, convert to FP elements of the same size.
3578 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
3579 }
3580
3581 // Okay, we know the src/dst types are both integers of differing types.
3582 // Handling growing first.
Duncan Sands92c43912008-06-06 12:08:01 +00003583 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003584 if (SrcBitSize < DstBitSize) {
3585 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3586
3587 SmallVector<SDOperand, 8> Ops;
3588 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
3589 i += NumInputsPerOutput) {
3590 bool isLE = TLI.isLittleEndian();
Dan Gohmand047c3e2008-03-03 23:51:38 +00003591 APInt NewBits = APInt(DstBitSize, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003592 bool EltIsUndef = true;
3593 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3594 // Shift the previously computed bits over.
3595 NewBits <<= SrcBitSize;
3596 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3597 if (Op.getOpcode() == ISD::UNDEF) continue;
3598 EltIsUndef = false;
3599
Dan Gohmand047c3e2008-03-03 23:51:38 +00003600 NewBits |=
3601 APInt(cast<ConstantSDNode>(Op)->getAPIntValue()).zext(DstBitSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003602 }
3603
3604 if (EltIsUndef)
3605 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3606 else
3607 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3608 }
3609
Duncan Sands92c43912008-06-06 12:08:01 +00003610 MVT VT = MVT::getVectorVT(DstEltVT, Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003611 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
3612 }
3613
3614 // Finally, this must be the case where we are shrinking elements: each input
3615 // turns into multiple outputs.
Evan Chengd1045a62008-02-18 23:04:32 +00003616 bool isS2V = ISD::isScalarToVector(BV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003617 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Duncan Sands92c43912008-06-06 12:08:01 +00003618 MVT VT = MVT::getVectorVT(DstEltVT, NumOutputsPerInput*BV->getNumOperands());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003619 SmallVector<SDOperand, 8> Ops;
3620 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
3621 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3622 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3623 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3624 continue;
3625 }
Dan Gohmand047c3e2008-03-03 23:51:38 +00003626 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getAPIntValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003627 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Dan Gohmand047c3e2008-03-03 23:51:38 +00003628 APInt ThisVal = APInt(OpVal).trunc(DstBitSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003629 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Dan Gohmand047c3e2008-03-03 23:51:38 +00003630 if (isS2V && i == 0 && j == 0 && APInt(ThisVal).zext(SrcBitSize) == OpVal)
Evan Chengd1045a62008-02-18 23:04:32 +00003631 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
3632 return DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Ops[0]);
Dan Gohmand047c3e2008-03-03 23:51:38 +00003633 OpVal = OpVal.lshr(DstBitSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003634 }
3635
3636 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00003637 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003638 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3639 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003640 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
3641}
3642
3643
3644
3645SDOperand DAGCombiner::visitFADD(SDNode *N) {
3646 SDOperand N0 = N->getOperand(0);
3647 SDOperand N1 = N->getOperand(1);
3648 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3649 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00003650 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003651
3652 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00003653 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003654 SDOperand FoldedVOp = SimplifyVBinOp(N);
3655 if (FoldedVOp.Val) return FoldedVOp;
3656 }
3657
3658 // fold (fadd c1, c2) -> c1+c2
Dale Johannesenb89072e2007-10-16 23:38:29 +00003659 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003660 return DAG.getNode(ISD::FADD, VT, N0, N1);
3661 // canonicalize constant to RHS
3662 if (N0CFP && !N1CFP)
3663 return DAG.getNode(ISD::FADD, VT, N1, N0);
3664 // fold (A + (-B)) -> A-B
Chris Lattnere0992b82008-02-26 07:04:54 +00003665 if (isNegatibleForFree(N1, AfterLegalize) == 2)
3666 return DAG.getNode(ISD::FSUB, VT, N0,
3667 GetNegatedExpression(N1, DAG, AfterLegalize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003668 // fold ((-A) + B) -> B-A
Chris Lattnere0992b82008-02-26 07:04:54 +00003669 if (isNegatibleForFree(N0, AfterLegalize) == 2)
3670 return DAG.getNode(ISD::FSUB, VT, N1,
3671 GetNegatedExpression(N0, DAG, AfterLegalize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003672
3673 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3674 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3675 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3676 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3677 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3678
3679 return SDOperand();
3680}
3681
3682SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3683 SDOperand N0 = N->getOperand(0);
3684 SDOperand N1 = N->getOperand(1);
3685 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3686 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00003687 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003688
3689 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00003690 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003691 SDOperand FoldedVOp = SimplifyVBinOp(N);
3692 if (FoldedVOp.Val) return FoldedVOp;
3693 }
3694
3695 // fold (fsub c1, c2) -> c1-c2
Dale Johannesenb89072e2007-10-16 23:38:29 +00003696 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003697 return DAG.getNode(ISD::FSUB, VT, N0, N1);
3698 // fold (0-B) -> -B
Dale Johannesen7604c1b2007-08-31 23:34:27 +00003699 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Chris Lattnere0992b82008-02-26 07:04:54 +00003700 if (isNegatibleForFree(N1, AfterLegalize))
3701 return GetNegatedExpression(N1, DAG, AfterLegalize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003702 return DAG.getNode(ISD::FNEG, VT, N1);
3703 }
3704 // fold (A-(-B)) -> A+B
Chris Lattnere0992b82008-02-26 07:04:54 +00003705 if (isNegatibleForFree(N1, AfterLegalize))
3706 return DAG.getNode(ISD::FADD, VT, N0,
3707 GetNegatedExpression(N1, DAG, AfterLegalize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003708
3709 return SDOperand();
3710}
3711
3712SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3713 SDOperand N0 = N->getOperand(0);
3714 SDOperand N1 = N->getOperand(1);
3715 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3716 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00003717 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003718
3719 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00003720 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003721 SDOperand FoldedVOp = SimplifyVBinOp(N);
3722 if (FoldedVOp.Val) return FoldedVOp;
3723 }
3724
3725 // fold (fmul c1, c2) -> c1*c2
Dale Johannesenb89072e2007-10-16 23:38:29 +00003726 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003727 return DAG.getNode(ISD::FMUL, VT, N0, N1);
3728 // canonicalize constant to RHS
3729 if (N0CFP && !N1CFP)
3730 return DAG.getNode(ISD::FMUL, VT, N1, N0);
3731 // fold (fmul X, 2.0) -> (fadd X, X)
3732 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3733 return DAG.getNode(ISD::FADD, VT, N0, N0);
3734 // fold (fmul X, -1.0) -> (fneg X)
3735 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3736 return DAG.getNode(ISD::FNEG, VT, N0);
3737
3738 // -X * -Y -> X*Y
Chris Lattnere0992b82008-02-26 07:04:54 +00003739 if (char LHSNeg = isNegatibleForFree(N0, AfterLegalize)) {
3740 if (char RHSNeg = isNegatibleForFree(N1, AfterLegalize)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003741 // Both can be negated for free, check to see if at least one is cheaper
3742 // negated.
3743 if (LHSNeg == 2 || RHSNeg == 2)
Chris Lattnere0992b82008-02-26 07:04:54 +00003744 return DAG.getNode(ISD::FMUL, VT,
3745 GetNegatedExpression(N0, DAG, AfterLegalize),
3746 GetNegatedExpression(N1, DAG, AfterLegalize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003747 }
3748 }
3749
3750 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3751 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3752 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3753 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3754 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3755
3756 return SDOperand();
3757}
3758
3759SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3760 SDOperand N0 = N->getOperand(0);
3761 SDOperand N1 = N->getOperand(1);
3762 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3763 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00003764 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003765
3766 // fold vector ops
Duncan Sands92c43912008-06-06 12:08:01 +00003767 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003768 SDOperand FoldedVOp = SimplifyVBinOp(N);
3769 if (FoldedVOp.Val) return FoldedVOp;
3770 }
3771
3772 // fold (fdiv c1, c2) -> c1/c2
Dale Johannesenb89072e2007-10-16 23:38:29 +00003773 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003774 return DAG.getNode(ISD::FDIV, VT, N0, N1);
3775
3776
3777 // -X / -Y -> X*Y
Chris Lattnere0992b82008-02-26 07:04:54 +00003778 if (char LHSNeg = isNegatibleForFree(N0, AfterLegalize)) {
3779 if (char RHSNeg = isNegatibleForFree(N1, AfterLegalize)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003780 // Both can be negated for free, check to see if at least one is cheaper
3781 // negated.
3782 if (LHSNeg == 2 || RHSNeg == 2)
Chris Lattnere0992b82008-02-26 07:04:54 +00003783 return DAG.getNode(ISD::FDIV, VT,
3784 GetNegatedExpression(N0, DAG, AfterLegalize),
3785 GetNegatedExpression(N1, DAG, AfterLegalize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003786 }
3787 }
3788
3789 return SDOperand();
3790}
3791
3792SDOperand DAGCombiner::visitFREM(SDNode *N) {
3793 SDOperand N0 = N->getOperand(0);
3794 SDOperand N1 = N->getOperand(1);
3795 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3796 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00003797 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003798
3799 // fold (frem c1, c2) -> fmod(c1,c2)
Dale Johannesenb89072e2007-10-16 23:38:29 +00003800 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003801 return DAG.getNode(ISD::FREM, VT, N0, N1);
3802
3803 return SDOperand();
3804}
3805
3806SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3807 SDOperand N0 = N->getOperand(0);
3808 SDOperand N1 = N->getOperand(1);
3809 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3810 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands92c43912008-06-06 12:08:01 +00003811 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003812
Dale Johannesenb89072e2007-10-16 23:38:29 +00003813 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003814 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3815
3816 if (N1CFP) {
Dale Johannesenc53301c2007-08-26 01:18:27 +00003817 const APFloat& V = N1CFP->getValueAPF();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003818 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3819 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen7f2c1d12007-08-25 22:10:57 +00003820 if (!V.isNegative())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003821 return DAG.getNode(ISD::FABS, VT, N0);
3822 else
3823 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3824 }
3825
3826 // copysign(fabs(x), y) -> copysign(x, y)
3827 // copysign(fneg(x), y) -> copysign(x, y)
3828 // copysign(copysign(x,z), y) -> copysign(x, y)
3829 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3830 N0.getOpcode() == ISD::FCOPYSIGN)
3831 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3832
3833 // copysign(x, abs(y)) -> abs(x)
3834 if (N1.getOpcode() == ISD::FABS)
3835 return DAG.getNode(ISD::FABS, VT, N0);
3836
3837 // copysign(x, copysign(y,z)) -> copysign(x, z)
3838 if (N1.getOpcode() == ISD::FCOPYSIGN)
3839 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3840
3841 // copysign(x, fp_extend(y)) -> copysign(x, y)
3842 // copysign(x, fp_round(y)) -> copysign(x, y)
3843 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3844 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3845
3846 return SDOperand();
3847}
3848
3849
3850
3851SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
3852 SDOperand N0 = N->getOperand(0);
3853 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003854 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003855
3856 // fold (sint_to_fp c1) -> c1fp
Dale Johannesenb89072e2007-10-16 23:38:29 +00003857 if (N0C && N0.getValueType() != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003858 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
3859 return SDOperand();
3860}
3861
3862SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
3863 SDOperand N0 = N->getOperand(0);
3864 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003865 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003866
3867 // fold (uint_to_fp c1) -> c1fp
Dale Johannesenb89072e2007-10-16 23:38:29 +00003868 if (N0C && N0.getValueType() != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003869 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
3870 return SDOperand();
3871}
3872
3873SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
3874 SDOperand N0 = N->getOperand(0);
3875 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003876 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003877
3878 // fold (fp_to_sint c1fp) -> c1
3879 if (N0CFP)
3880 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
3881 return SDOperand();
3882}
3883
3884SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
3885 SDOperand N0 = N->getOperand(0);
3886 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003887 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003888
3889 // fold (fp_to_uint c1fp) -> c1
Dale Johannesenb89072e2007-10-16 23:38:29 +00003890 if (N0CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003891 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
3892 return SDOperand();
3893}
3894
3895SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
3896 SDOperand N0 = N->getOperand(0);
Chris Lattner5872a362008-01-17 07:00:52 +00003897 SDOperand N1 = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003898 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003899 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003900
3901 // fold (fp_round c1fp) -> c1fp
Dale Johannesenb89072e2007-10-16 23:38:29 +00003902 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Chris Lattner5872a362008-01-17 07:00:52 +00003903 return DAG.getNode(ISD::FP_ROUND, VT, N0, N1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003904
3905 // fold (fp_round (fp_extend x)) -> x
3906 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3907 return N0.getOperand(0);
3908
Chris Lattner7afb8552008-01-24 06:45:35 +00003909 // fold (fp_round (fp_round x)) -> (fp_round x)
3910 if (N0.getOpcode() == ISD::FP_ROUND) {
3911 // This is a value preserving truncation if both round's are.
3912 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
3913 N0.Val->getConstantOperandVal(1) == 1;
3914 return DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0),
3915 DAG.getIntPtrConstant(IsTrunc));
3916 }
3917
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003918 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3919 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
Chris Lattner5872a362008-01-17 07:00:52 +00003920 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0), N1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003921 AddToWorkList(Tmp.Val);
3922 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3923 }
3924
3925 return SDOperand();
3926}
3927
3928SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
3929 SDOperand N0 = N->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00003930 MVT VT = N->getValueType(0);
3931 MVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003932 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3933
3934 // fold (fp_round_inreg c1fp) -> c1fp
3935 if (N0CFP) {
Dale Johannesen7604c1b2007-08-31 23:34:27 +00003936 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003937 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
3938 }
3939 return SDOperand();
3940}
3941
3942SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
3943 SDOperand N0 = N->getOperand(0);
3944 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00003945 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003946
Chris Lattner6f981fc2007-12-29 06:55:23 +00003947 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00003948 if (N->hasOneUse() &&
3949 N->use_begin()->getSDOperand().getOpcode() == ISD::FP_ROUND)
Chris Lattner6f981fc2007-12-29 06:55:23 +00003950 return SDOperand();
Chris Lattner5872a362008-01-17 07:00:52 +00003951
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003952 // fold (fp_extend c1fp) -> c1fp
Dale Johannesenb89072e2007-10-16 23:38:29 +00003953 if (N0CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003954 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattner5872a362008-01-17 07:00:52 +00003955
3956 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
3957 // value of X.
3958 if (N0.getOpcode() == ISD::FP_ROUND && N0.Val->getConstantOperandVal(1) == 1){
3959 SDOperand In = N0.getOperand(0);
3960 if (In.getValueType() == VT) return In;
Duncan Sandsec142ee2008-06-08 20:54:56 +00003961 if (VT.bitsLT(In.getValueType()))
Chris Lattner5872a362008-01-17 07:00:52 +00003962 return DAG.getNode(ISD::FP_ROUND, VT, In, N0.getOperand(1));
3963 return DAG.getNode(ISD::FP_EXTEND, VT, In);
3964 }
3965
3966 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Dale Johannesen2550e3a2007-10-19 20:29:00 +00003967 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Duncan Sands2418bec2008-06-13 19:07:40 +00003968 ((!AfterLegalize && !cast<LoadSDNode>(N0)->isVolatile()) ||
3969 TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003970 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3971 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3972 LN0->getBasePtr(), LN0->getSrcValue(),
3973 LN0->getSrcValueOffset(),
3974 N0.getValueType(),
3975 LN0->isVolatile(),
3976 LN0->getAlignment());
3977 CombineTo(N, ExtLoad);
Chris Lattner5872a362008-01-17 07:00:52 +00003978 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad,
3979 DAG.getIntPtrConstant(1)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003980 ExtLoad.getValue(1));
3981 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3982 }
Duncan Sands2418bec2008-06-13 19:07:40 +00003983
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003984 return SDOperand();
3985}
3986
3987SDOperand DAGCombiner::visitFNEG(SDNode *N) {
3988 SDOperand N0 = N->getOperand(0);
3989
Chris Lattnere0992b82008-02-26 07:04:54 +00003990 if (isNegatibleForFree(N0, AfterLegalize))
3991 return GetNegatedExpression(N0, DAG, AfterLegalize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003992
Chris Lattneref26cbc2008-01-27 17:42:27 +00003993 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
3994 // constant pool values.
Chris Lattner336672f2008-01-27 23:32:17 +00003995 if (N0.getOpcode() == ISD::BIT_CONVERT && N0.Val->hasOneUse() &&
Duncan Sands92c43912008-06-06 12:08:01 +00003996 N0.getOperand(0).getValueType().isInteger() &&
3997 !N0.getOperand(0).getValueType().isVector()) {
Chris Lattneref26cbc2008-01-27 17:42:27 +00003998 SDOperand Int = N0.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00003999 MVT IntVT = Int.getValueType();
4000 if (IntVT.isInteger() && !IntVT.isVector()) {
Chris Lattneref26cbc2008-01-27 17:42:27 +00004001 Int = DAG.getNode(ISD::XOR, IntVT, Int,
Duncan Sands92c43912008-06-06 12:08:01 +00004002 DAG.getConstant(IntVT.getIntegerVTSignBit(), IntVT));
Chris Lattneref26cbc2008-01-27 17:42:27 +00004003 AddToWorkList(Int.Val);
4004 return DAG.getNode(ISD::BIT_CONVERT, N->getValueType(0), Int);
4005 }
4006 }
4007
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004008 return SDOperand();
4009}
4010
4011SDOperand DAGCombiner::visitFABS(SDNode *N) {
4012 SDOperand N0 = N->getOperand(0);
4013 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands92c43912008-06-06 12:08:01 +00004014 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004015
4016 // fold (fabs c1) -> fabs(c1)
Dale Johannesenb89072e2007-10-16 23:38:29 +00004017 if (N0CFP && VT != MVT::ppcf128)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004018 return DAG.getNode(ISD::FABS, VT, N0);
4019 // fold (fabs (fabs x)) -> (fabs x)
4020 if (N0.getOpcode() == ISD::FABS)
4021 return N->getOperand(0);
4022 // fold (fabs (fneg x)) -> (fabs x)
4023 // fold (fabs (fcopysign x, y)) -> (fabs x)
4024 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
4025 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
4026
Chris Lattneref26cbc2008-01-27 17:42:27 +00004027 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
4028 // constant pool values.
Chris Lattner336672f2008-01-27 23:32:17 +00004029 if (N0.getOpcode() == ISD::BIT_CONVERT && N0.Val->hasOneUse() &&
Duncan Sands92c43912008-06-06 12:08:01 +00004030 N0.getOperand(0).getValueType().isInteger() &&
4031 !N0.getOperand(0).getValueType().isVector()) {
Chris Lattneref26cbc2008-01-27 17:42:27 +00004032 SDOperand Int = N0.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00004033 MVT IntVT = Int.getValueType();
4034 if (IntVT.isInteger() && !IntVT.isVector()) {
Chris Lattneref26cbc2008-01-27 17:42:27 +00004035 Int = DAG.getNode(ISD::AND, IntVT, Int,
Duncan Sands92c43912008-06-06 12:08:01 +00004036 DAG.getConstant(~IntVT.getIntegerVTSignBit(), IntVT));
Chris Lattneref26cbc2008-01-27 17:42:27 +00004037 AddToWorkList(Int.Val);
4038 return DAG.getNode(ISD::BIT_CONVERT, N->getValueType(0), Int);
4039 }
4040 }
4041
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004042 return SDOperand();
4043}
4044
4045SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
4046 SDOperand Chain = N->getOperand(0);
4047 SDOperand N1 = N->getOperand(1);
4048 SDOperand N2 = N->getOperand(2);
4049 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4050
4051 // never taken branch, fold to chain
4052 if (N1C && N1C->isNullValue())
4053 return Chain;
4054 // unconditional branch
Dan Gohman9d24dc72008-03-13 22:13:53 +00004055 if (N1C && N1C->getAPIntValue() == 1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004056 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
4057 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
4058 // on the target.
4059 if (N1.getOpcode() == ISD::SETCC &&
4060 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
4061 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
4062 N1.getOperand(0), N1.getOperand(1), N2);
4063 }
4064 return SDOperand();
4065}
4066
4067// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
4068//
4069SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
4070 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
4071 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
4072
Duncan Sands6a437fb2008-06-09 11:32:28 +00004073 // Use SimplifySetCC to simplify SETCC's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004074 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
4075 if (Simp.Val) AddToWorkList(Simp.Val);
4076
4077 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
4078
4079 // fold br_cc true, dest -> br dest (unconditional branch)
Dan Gohman9d24dc72008-03-13 22:13:53 +00004080 if (SCCC && !SCCC->isNullValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004081 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
4082 N->getOperand(4));
4083 // fold br_cc false, dest -> unconditional fall through
4084 if (SCCC && SCCC->isNullValue())
4085 return N->getOperand(0);
4086
4087 // fold to a simpler setcc
4088 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
4089 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
4090 Simp.getOperand(2), Simp.getOperand(0),
4091 Simp.getOperand(1), N->getOperand(4));
4092 return SDOperand();
4093}
4094
4095
4096/// CombineToPreIndexedLoadStore - Try turning a load / store and a
4097/// pre-indexed load / store when the base pointer is a add or subtract
4098/// and it has other uses besides the load / store. After the
4099/// transformation, the new indexed load / store has effectively folded
4100/// the add / subtract in and all of its other uses are redirected to the
4101/// new load / store.
4102bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
4103 if (!AfterLegalize)
4104 return false;
4105
4106 bool isLoad = true;
4107 SDOperand Ptr;
Duncan Sands92c43912008-06-06 12:08:01 +00004108 MVT VT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004109 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner3bc08502008-01-17 19:59:44 +00004110 if (LD->isIndexed())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004111 return false;
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004112 VT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004113 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
4114 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
4115 return false;
4116 Ptr = LD->getBasePtr();
4117 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner3bc08502008-01-17 19:59:44 +00004118 if (ST->isIndexed())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004119 return false;
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004120 VT = ST->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004121 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
4122 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
4123 return false;
4124 Ptr = ST->getBasePtr();
4125 isLoad = false;
4126 } else
4127 return false;
4128
4129 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
4130 // out. There is no reason to make this a preinc/predec.
4131 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
4132 Ptr.Val->hasOneUse())
4133 return false;
4134
4135 // Ask the target to do addressing mode selection.
4136 SDOperand BasePtr;
4137 SDOperand Offset;
4138 ISD::MemIndexedMode AM = ISD::UNINDEXED;
4139 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
4140 return false;
4141 // Don't create a indexed load / store with zero offset.
4142 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00004143 cast<ConstantSDNode>(Offset)->isNullValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004144 return false;
4145
4146 // Try turning it into a pre-indexed load / store except when:
4147 // 1) The new base ptr is a frame index.
4148 // 2) If N is a store and the new base ptr is either the same as or is a
4149 // predecessor of the value being stored.
4150 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
4151 // that would create a cycle.
4152 // 4) All uses are load / store ops that use it as old base ptr.
4153
4154 // Check #1. Preinc'ing a frame index would require copying the stack pointer
4155 // (plus the implicit offset) to a register to preinc anyway.
4156 if (isa<FrameIndexSDNode>(BasePtr))
4157 return false;
4158
4159 // Check #2.
4160 if (!isLoad) {
4161 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Chengd9387682008-03-04 00:41:45 +00004162 if (Val == BasePtr || BasePtr.Val->isPredecessorOf(Val.Val))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004163 return false;
4164 }
4165
4166 // Now check for #3 and #4.
4167 bool RealUse = false;
4168 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
4169 E = Ptr.Val->use_end(); I != E; ++I) {
Roman Levenstein05650fd2008-04-07 10:06:32 +00004170 SDNode *Use = I->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004171 if (Use == N)
4172 continue;
Evan Chengd9387682008-03-04 00:41:45 +00004173 if (Use->isPredecessorOf(N))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004174 return false;
4175
4176 if (!((Use->getOpcode() == ISD::LOAD &&
4177 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
Anton Korobeynikov53422f62008-02-20 11:10:28 +00004178 (Use->getOpcode() == ISD::STORE &&
4179 cast<StoreSDNode>(Use)->getBasePtr() == Ptr)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004180 RealUse = true;
4181 }
4182 if (!RealUse)
4183 return false;
4184
4185 SDOperand Result;
4186 if (isLoad)
4187 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
4188 else
4189 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4190 ++PreIndexedNodes;
4191 ++NodesCombined;
4192 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
4193 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4194 DOUT << '\n';
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004195 WorkListRemover DeadNodes(*this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004196 if (isLoad) {
4197 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004198 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004199 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004200 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004201 } else {
4202 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004203 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004204 }
4205
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004206 // Finally, since the node is now dead, remove it from the graph.
4207 DAG.DeleteNode(N);
4208
4209 // Replace the uses of Ptr with uses of the updated base value.
4210 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004211 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004212 removeFromWorkList(Ptr.Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004213 DAG.DeleteNode(Ptr.Val);
4214
4215 return true;
4216}
4217
4218/// CombineToPostIndexedLoadStore - Try combine a load / store with a
4219/// add / sub of the base pointer node into a post-indexed load / store.
4220/// The transformation folded the add / subtract into the new indexed
4221/// load / store effectively and all of its uses are redirected to the
4222/// new load / store.
4223bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
4224 if (!AfterLegalize)
4225 return false;
4226
4227 bool isLoad = true;
4228 SDOperand Ptr;
Duncan Sands92c43912008-06-06 12:08:01 +00004229 MVT VT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004230 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner3bc08502008-01-17 19:59:44 +00004231 if (LD->isIndexed())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004232 return false;
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004233 VT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004234 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
4235 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
4236 return false;
4237 Ptr = LD->getBasePtr();
4238 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner3bc08502008-01-17 19:59:44 +00004239 if (ST->isIndexed())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004240 return false;
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004241 VT = ST->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004242 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
4243 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
4244 return false;
4245 Ptr = ST->getBasePtr();
4246 isLoad = false;
4247 } else
4248 return false;
4249
4250 if (Ptr.Val->hasOneUse())
4251 return false;
4252
4253 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
4254 E = Ptr.Val->use_end(); I != E; ++I) {
Roman Levenstein05650fd2008-04-07 10:06:32 +00004255 SDNode *Op = I->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004256 if (Op == N ||
4257 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
4258 continue;
4259
4260 SDOperand BasePtr;
4261 SDOperand Offset;
4262 ISD::MemIndexedMode AM = ISD::UNINDEXED;
4263 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
4264 if (Ptr == Offset)
4265 std::swap(BasePtr, Offset);
4266 if (Ptr != BasePtr)
4267 continue;
4268 // Don't create a indexed load / store with zero offset.
4269 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00004270 cast<ConstantSDNode>(Offset)->isNullValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004271 continue;
4272
4273 // Try turning it into a post-indexed load / store except when
4274 // 1) All uses are load / store ops that use it as base ptr.
4275 // 2) Op must be independent of N, i.e. Op is neither a predecessor
4276 // nor a successor of N. Otherwise, if Op is folded that would
4277 // create a cycle.
4278
4279 // Check for #1.
4280 bool TryNext = false;
4281 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
4282 EE = BasePtr.Val->use_end(); II != EE; ++II) {
Roman Levenstein05650fd2008-04-07 10:06:32 +00004283 SDNode *Use = II->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004284 if (Use == Ptr.Val)
4285 continue;
4286
4287 // If all the uses are load / store addresses, then don't do the
4288 // transformation.
4289 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
4290 bool RealUse = false;
4291 for (SDNode::use_iterator III = Use->use_begin(),
4292 EEE = Use->use_end(); III != EEE; ++III) {
Roman Levenstein05650fd2008-04-07 10:06:32 +00004293 SDNode *UseUse = III->getUser();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004294 if (!((UseUse->getOpcode() == ISD::LOAD &&
4295 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
Anton Korobeynikov53422f62008-02-20 11:10:28 +00004296 (UseUse->getOpcode() == ISD::STORE &&
4297 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004298 RealUse = true;
4299 }
4300
4301 if (!RealUse) {
4302 TryNext = true;
4303 break;
4304 }
4305 }
4306 }
4307 if (TryNext)
4308 continue;
4309
4310 // Check for #2
Evan Chengd9387682008-03-04 00:41:45 +00004311 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004312 SDOperand Result = isLoad
4313 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4314 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4315 ++PostIndexedNodes;
4316 ++NodesCombined;
4317 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
4318 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4319 DOUT << '\n';
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004320 WorkListRemover DeadNodes(*this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004321 if (isLoad) {
4322 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004323 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004324 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004325 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004326 } else {
4327 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004328 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004329 }
4330
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004331 // Finally, since the node is now dead, remove it from the graph.
4332 DAG.DeleteNode(N);
4333
4334 // Replace the uses of Use with uses of the updated base value.
4335 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4336 Result.getValue(isLoad ? 1 : 0),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004337 &DeadNodes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004338 removeFromWorkList(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004339 DAG.DeleteNode(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004340 return true;
4341 }
4342 }
4343 }
4344 return false;
4345}
4346
Chris Lattner4e137af2008-01-25 07:20:16 +00004347/// InferAlignment - If we can infer some alignment information from this
4348/// pointer, return it.
4349static unsigned InferAlignment(SDOperand Ptr, SelectionDAG &DAG) {
4350 // If this is a direct reference to a stack slot, use information about the
4351 // stack slot's alignment.
Chris Lattner1e3362f2008-01-26 19:45:50 +00004352 int FrameIdx = 1 << 31;
4353 int64_t FrameOffset = 0;
Chris Lattner4e137af2008-01-25 07:20:16 +00004354 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
Chris Lattner1e3362f2008-01-26 19:45:50 +00004355 FrameIdx = FI->getIndex();
4356 } else if (Ptr.getOpcode() == ISD::ADD &&
4357 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4358 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4359 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4360 FrameOffset = Ptr.getConstantOperandVal(1);
Chris Lattner4e137af2008-01-25 07:20:16 +00004361 }
Chris Lattner1e3362f2008-01-26 19:45:50 +00004362
4363 if (FrameIdx != (1 << 31)) {
4364 // FIXME: Handle FI+CST.
4365 const MachineFrameInfo &MFI = *DAG.getMachineFunction().getFrameInfo();
4366 if (MFI.isFixedObjectIndex(FrameIdx)) {
4367 int64_t ObjectOffset = MFI.getObjectOffset(FrameIdx);
4368
4369 // The alignment of the frame index can be determined from its offset from
4370 // the incoming frame position. If the frame object is at offset 32 and
4371 // the stack is guaranteed to be 16-byte aligned, then we know that the
4372 // object is 16-byte aligned.
4373 unsigned StackAlign = DAG.getTarget().getFrameInfo()->getStackAlignment();
4374 unsigned Align = MinAlign(ObjectOffset, StackAlign);
4375
4376 // Finally, the frame object itself may have a known alignment. Factor
4377 // the alignment + offset into a new alignment. For example, if we know
4378 // the FI is 8 byte aligned, but the pointer is 4 off, we really have a
4379 // 4-byte alignment of the resultant pointer. Likewise align 4 + 4-byte
4380 // offset = 4-byte alignment, align 4 + 1-byte offset = align 1, etc.
4381 unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
4382 FrameOffset);
4383 return std::max(Align, FIInfoAlign);
4384 }
4385 }
Chris Lattner4e137af2008-01-25 07:20:16 +00004386
4387 return 0;
4388}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004389
4390SDOperand DAGCombiner::visitLOAD(SDNode *N) {
4391 LoadSDNode *LD = cast<LoadSDNode>(N);
4392 SDOperand Chain = LD->getChain();
4393 SDOperand Ptr = LD->getBasePtr();
Chris Lattner4e137af2008-01-25 07:20:16 +00004394
4395 // Try to infer better alignment information than the load already has.
4396 if (LD->isUnindexed()) {
4397 if (unsigned Align = InferAlignment(Ptr, DAG)) {
4398 if (Align > LD->getAlignment())
4399 return DAG.getExtLoad(LD->getExtensionType(), LD->getValueType(0),
4400 Chain, Ptr, LD->getSrcValue(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004401 LD->getSrcValueOffset(), LD->getMemoryVT(),
Chris Lattner4e137af2008-01-25 07:20:16 +00004402 LD->isVolatile(), Align);
4403 }
4404 }
4405
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004406
4407 // If load is not volatile and there are no uses of the loaded value (and
4408 // the updated indexed value in case of indexed loads), change uses of the
4409 // chain value into uses of the chain input (i.e. delete the dead load).
4410 if (!LD->isVolatile()) {
4411 if (N->getValueType(1) == MVT::Other) {
4412 // Unindexed loads.
Evan Chenge8b886a2008-01-16 23:11:54 +00004413 if (N->hasNUsesOfValue(0, 0)) {
4414 // It's not safe to use the two value CombineTo variant here. e.g.
4415 // v1, chain2 = load chain1, loc
4416 // v2, chain3 = load chain2, loc
4417 // v3 = add v2, c
Chris Lattnerbb67c192008-01-24 07:57:06 +00004418 // Now we replace use of chain2 with chain1. This makes the second load
4419 // isomorphic to the one we are deleting, and thus makes this load live.
Evan Chenge8b886a2008-01-16 23:11:54 +00004420 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
Chris Lattnerbb67c192008-01-24 07:57:06 +00004421 DOUT << "\nWith chain: "; DEBUG(Chain.Val->dump(&DAG));
4422 DOUT << "\n";
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004423 WorkListRemover DeadNodes(*this);
4424 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Chain, &DeadNodes);
Chris Lattnerbb67c192008-01-24 07:57:06 +00004425 if (N->use_empty()) {
4426 removeFromWorkList(N);
4427 DAG.DeleteNode(N);
4428 }
Evan Chenge8b886a2008-01-16 23:11:54 +00004429 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
4430 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004431 } else {
4432 // Indexed loads.
4433 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4434 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
Evan Chenge8b886a2008-01-16 23:11:54 +00004435 SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4436 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4437 DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4438 DOUT << " and 2 other values\n";
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004439 WorkListRemover DeadNodes(*this);
4440 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &DeadNodes);
Evan Chenge8b886a2008-01-16 23:11:54 +00004441 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
Chris Lattner667f9c12008-01-17 07:20:38 +00004442 DAG.getNode(ISD::UNDEF, N->getValueType(1)),
Chris Lattner7bcb18f2008-02-03 06:49:24 +00004443 &DeadNodes);
4444 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 2), Chain, &DeadNodes);
Evan Chenge8b886a2008-01-16 23:11:54 +00004445 removeFromWorkList(N);
Evan Chenge8b886a2008-01-16 23:11:54 +00004446 DAG.DeleteNode(N);
4447 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004448 }
4449 }
4450 }
4451
4452 // If this load is directly stored, replace the load value with the stored
4453 // value.
4454 // TODO: Handle store large -> read small portion.
4455 // TODO: Handle TRUNCSTORE/LOADEXT
Dan Gohman729b5ff2008-03-31 20:32:52 +00004456 if (LD->getExtensionType() == ISD::NON_EXTLOAD &&
4457 !LD->isVolatile()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004458 if (ISD::isNON_TRUNCStore(Chain.Val)) {
4459 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4460 if (PrevST->getBasePtr() == Ptr &&
4461 PrevST->getValue().getValueType() == N->getValueType(0))
4462 return CombineTo(N, Chain.getOperand(1), Chain);
4463 }
4464 }
4465
4466 if (CombinerAA) {
4467 // Walk up chain skipping non-aliasing memory nodes.
4468 SDOperand BetterChain = FindBetterChain(N, Chain);
4469
4470 // If there is a better chain.
4471 if (Chain != BetterChain) {
4472 SDOperand ReplLoad;
4473
4474 // Replace the chain to void dependency.
4475 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4476 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Duncan Sandsa3691432007-10-28 12:59:45 +00004477 LD->getSrcValue(), LD->getSrcValueOffset(),
4478 LD->isVolatile(), LD->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004479 } else {
4480 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4481 LD->getValueType(0),
4482 BetterChain, Ptr, LD->getSrcValue(),
4483 LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004484 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004485 LD->isVolatile(),
4486 LD->getAlignment());
4487 }
4488
4489 // Create token factor to keep old chain connected.
4490 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4491 Chain, ReplLoad.getValue(1));
4492
4493 // Replace uses with load result and token factor. Don't add users
4494 // to work list.
4495 return CombineTo(N, ReplLoad.getValue(0), Token, false);
4496 }
4497 }
4498
4499 // Try transforming N to an indexed load.
4500 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
4501 return SDOperand(N, 0);
4502
4503 return SDOperand();
4504}
4505
Chris Lattner2e023772008-01-08 23:08:06 +00004506
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004507SDOperand DAGCombiner::visitSTORE(SDNode *N) {
4508 StoreSDNode *ST = cast<StoreSDNode>(N);
4509 SDOperand Chain = ST->getChain();
4510 SDOperand Value = ST->getValue();
4511 SDOperand Ptr = ST->getBasePtr();
4512
Chris Lattner4e137af2008-01-25 07:20:16 +00004513 // Try to infer better alignment information than the store already has.
4514 if (ST->isUnindexed()) {
4515 if (unsigned Align = InferAlignment(Ptr, DAG)) {
4516 if (Align > ST->getAlignment())
4517 return DAG.getTruncStore(Chain, Value, Ptr, ST->getSrcValue(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004518 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattner4e137af2008-01-25 07:20:16 +00004519 ST->isVolatile(), Align);
4520 }
4521 }
Duncan Sands2418bec2008-06-13 19:07:40 +00004522
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004523 // If this is a store of a bit convert, store the input value if the
4524 // resultant store does not need a higher alignment than the original.
4525 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
Chris Lattner3bc08502008-01-17 19:59:44 +00004526 ST->isUnindexed()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004527 unsigned Align = ST->getAlignment();
Duncan Sands92c43912008-06-06 12:08:01 +00004528 MVT SVT = Value.getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004529 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00004530 getABITypeAlignment(SVT.getTypeForMVT());
Duncan Sands2418bec2008-06-13 19:07:40 +00004531 if (Align <= OrigAlign &&
4532 ((!AfterLegalize && !ST->isVolatile()) ||
4533 TLI.isOperationLegal(ISD::STORE, SVT)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004534 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
4535 ST->getSrcValueOffset(), ST->isVolatile(), Align);
4536 }
Duncan Sands2418bec2008-06-13 19:07:40 +00004537
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004538 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
4539 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sands2418bec2008-06-13 19:07:40 +00004540 // NOTE: If the original store is volatile, this transform must not increase
4541 // the number of stores. For example, on x86-32 an f64 can be stored in one
4542 // processor operation but an i64 (which is not legal) requires two. So the
4543 // transform should not be done in this case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004544 if (Value.getOpcode() != ISD::TargetConstantFP) {
4545 SDOperand Tmp;
Duncan Sands92c43912008-06-06 12:08:01 +00004546 switch (CFP->getValueType(0).getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004547 default: assert(0 && "Unknown FP type");
Dale Johannesen1b4181d2007-09-18 18:36:59 +00004548 case MVT::f80: // We don't do this for these yet.
4549 case MVT::f128:
4550 case MVT::ppcf128:
4551 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004552 case MVT::f32:
Duncan Sands2418bec2008-06-13 19:07:40 +00004553 if ((!AfterLegalize && !ST->isVolatile()) ||
4554 TLI.isOperationLegal(ISD::STORE, MVT::i32)) {
Dale Johannesenfbd9cda2007-09-12 03:30:33 +00004555 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4556 convertToAPInt().getZExtValue(), MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004557 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
4558 ST->getSrcValueOffset(), ST->isVolatile(),
4559 ST->getAlignment());
4560 }
4561 break;
4562 case MVT::f64:
Duncan Sands2418bec2008-06-13 19:07:40 +00004563 if ((!AfterLegalize && !ST->isVolatile()) ||
4564 TLI.isOperationLegal(ISD::STORE, MVT::i64)) {
Dale Johannesenfbd9cda2007-09-12 03:30:33 +00004565 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4566 getZExtValue(), MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004567 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
4568 ST->getSrcValueOffset(), ST->isVolatile(),
4569 ST->getAlignment());
Duncan Sands2418bec2008-06-13 19:07:40 +00004570 } else if (!ST->isVolatile() &&
4571 TLI.isOperationLegal(ISD::STORE, MVT::i32)) {
Duncan Sandsa3691432007-10-28 12:59:45 +00004572 // Many FP stores are not made apparent until after legalize, e.g. for
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004573 // argument passing. Since this is so common, custom legalize the
4574 // 64-bit integer store into two 32-bit stores.
Dale Johannesenfbd9cda2007-09-12 03:30:33 +00004575 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004576 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4577 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00004578 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004579
4580 int SVOffset = ST->getSrcValueOffset();
4581 unsigned Alignment = ST->getAlignment();
4582 bool isVolatile = ST->isVolatile();
4583
4584 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
4585 ST->getSrcValueOffset(),
4586 isVolatile, ST->getAlignment());
4587 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4588 DAG.getConstant(4, Ptr.getValueType()));
4589 SVOffset += 4;
Duncan Sandsa3691432007-10-28 12:59:45 +00004590 Alignment = MinAlign(Alignment, 4U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004591 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
4592 SVOffset, isVolatile, Alignment);
4593 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4594 }
4595 break;
4596 }
4597 }
4598 }
4599
4600 if (CombinerAA) {
4601 // Walk up chain skipping non-aliasing memory nodes.
4602 SDOperand BetterChain = FindBetterChain(N, Chain);
4603
4604 // If there is a better chain.
4605 if (Chain != BetterChain) {
4606 // Replace the chain to avoid dependency.
4607 SDOperand ReplStore;
4608 if (ST->isTruncatingStore()) {
4609 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Chris Lattner667f9c12008-01-17 07:20:38 +00004610 ST->getSrcValue(),ST->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004611 ST->getMemoryVT(),
Chris Lattner667f9c12008-01-17 07:20:38 +00004612 ST->isVolatile(), ST->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004613 } else {
4614 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Chris Lattner667f9c12008-01-17 07:20:38 +00004615 ST->getSrcValue(), ST->getSrcValueOffset(),
4616 ST->isVolatile(), ST->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004617 }
4618
4619 // Create token to keep both nodes around.
4620 SDOperand Token =
4621 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4622
4623 // Don't add users to work list.
4624 return CombineTo(N, Token, false);
4625 }
4626 }
4627
4628 // Try transforming N to an indexed store.
4629 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
4630 return SDOperand(N, 0);
4631
Chris Lattner447d8e82007-12-29 06:26:16 +00004632 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattner3bc08502008-01-17 19:59:44 +00004633 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Duncan Sands92c43912008-06-06 12:08:01 +00004634 Value.getValueType().isInteger()) {
Chris Lattnere8671c52007-10-13 06:35:54 +00004635 // See if we can simplify the input to this truncstore with knowledge that
4636 // only the low bits are being used. For example:
4637 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4638 SDOperand Shorter =
Dan Gohman07961cd2008-02-25 21:11:39 +00004639 GetDemandedBits(Value,
4640 APInt::getLowBitsSet(Value.getValueSizeInBits(),
Duncan Sands92c43912008-06-06 12:08:01 +00004641 ST->getMemoryVT().getSizeInBits()));
Chris Lattnere8671c52007-10-13 06:35:54 +00004642 AddToWorkList(Value.Val);
4643 if (Shorter.Val)
4644 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004645 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattnere8671c52007-10-13 06:35:54 +00004646 ST->isVolatile(), ST->getAlignment());
Chris Lattnerb77ea552007-10-13 06:58:48 +00004647
4648 // Otherwise, see if we can simplify the operation with
4649 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman11607792008-02-27 00:25:32 +00004650 if (SimplifyDemandedBits(Value,
4651 APInt::getLowBitsSet(
4652 Value.getValueSizeInBits(),
Duncan Sands92c43912008-06-06 12:08:01 +00004653 ST->getMemoryVT().getSizeInBits())))
Chris Lattnerb77ea552007-10-13 06:58:48 +00004654 return SDOperand(N, 0);
Chris Lattnere8671c52007-10-13 06:35:54 +00004655 }
4656
Chris Lattner447d8e82007-12-29 06:26:16 +00004657 // If this is a load followed by a store to the same location, then the store
4658 // is dead/noop.
4659 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004660 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattner3bc08502008-01-17 19:59:44 +00004661 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner2e023772008-01-08 23:08:06 +00004662 // There can't be any side effects between the load and store, such as
4663 // a call or store.
Chris Lattner10d94f92008-01-16 05:49:24 +00004664 Chain.reachesChainWithoutSideEffects(SDOperand(Ld, 1))) {
Chris Lattner447d8e82007-12-29 06:26:16 +00004665 // The store is dead, remove it.
4666 return Chain;
4667 }
4668 }
Duncan Sands2418bec2008-06-13 19:07:40 +00004669
Chris Lattner3bc08502008-01-17 19:59:44 +00004670 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
4671 // truncating store. We can do this even if this is already a truncstore.
4672 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Duncan Sands2418bec2008-06-13 19:07:40 +00004673 && Value.Val->hasOneUse() && ST->isUnindexed() &&
Chris Lattner3bc08502008-01-17 19:59:44 +00004674 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004675 ST->getMemoryVT())) {
Chris Lattner3bc08502008-01-17 19:59:44 +00004676 return DAG.getTruncStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004677 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattner3bc08502008-01-17 19:59:44 +00004678 ST->isVolatile(), ST->getAlignment());
4679 }
Duncan Sands2418bec2008-06-13 19:07:40 +00004680
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004681 return SDOperand();
4682}
4683
4684SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4685 SDOperand InVec = N->getOperand(0);
4686 SDOperand InVal = N->getOperand(1);
4687 SDOperand EltNo = N->getOperand(2);
4688
4689 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4690 // vector with the inserted element.
4691 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4692 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4693 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
4694 if (Elt < Ops.size())
4695 Ops[Elt] = InVal;
4696 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4697 &Ops[0], Ops.size());
4698 }
4699
4700 return SDOperand();
4701}
4702
Evan Chengd7ba7ed2007-10-06 08:19:55 +00004703SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Evan Cheng411fc172008-05-13 08:35:03 +00004704 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
4705 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
4706 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
4707
4708 // Perform only after legalization to ensure build_vector / vector_shuffle
4709 // optimizations have already been done.
4710 if (!AfterLegalize) return SDOperand();
4711
Evan Chengd7ba7ed2007-10-06 08:19:55 +00004712 SDOperand InVec = N->getOperand(0);
4713 SDOperand EltNo = N->getOperand(1);
4714
Evan Chengd7ba7ed2007-10-06 08:19:55 +00004715 if (isa<ConstantSDNode>(EltNo)) {
4716 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4717 bool NewLoad = false;
Duncan Sands92c43912008-06-06 12:08:01 +00004718 MVT VT = InVec.getValueType();
4719 MVT EVT = VT.getVectorElementType();
4720 MVT LVT = EVT;
Evan Cheng411fc172008-05-13 08:35:03 +00004721 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
Duncan Sands92c43912008-06-06 12:08:01 +00004722 MVT BCVT = InVec.getOperand(0).getValueType();
Duncan Sandsec142ee2008-06-08 20:54:56 +00004723 if (!BCVT.isVector() || EVT.bitsGT(BCVT.getVectorElementType()))
Evan Cheng411fc172008-05-13 08:35:03 +00004724 return SDOperand();
4725 InVec = InVec.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00004726 EVT = BCVT.getVectorElementType();
Evan Cheng411fc172008-05-13 08:35:03 +00004727 NewLoad = true;
4728 }
Evan Chengd7ba7ed2007-10-06 08:19:55 +00004729
Evan Cheng411fc172008-05-13 08:35:03 +00004730 LoadSDNode *LN0 = NULL;
4731 if (ISD::isNormalLoad(InVec.Val))
4732 LN0 = cast<LoadSDNode>(InVec);
4733 else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4734 InVec.getOperand(0).getValueType() == EVT &&
4735 ISD::isNormalLoad(InVec.getOperand(0).Val)) {
4736 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4737 } else if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE) {
4738 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
4739 // =>
4740 // (load $addr+1*size)
4741 unsigned Idx = cast<ConstantSDNode>(InVec.getOperand(2).
4742 getOperand(Elt))->getValue();
4743 unsigned NumElems = InVec.getOperand(2).getNumOperands();
4744 InVec = (Idx < NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
4745 if (InVec.getOpcode() == ISD::BIT_CONVERT)
4746 InVec = InVec.getOperand(0);
4747 if (ISD::isNormalLoad(InVec.Val)) {
4748 LN0 = cast<LoadSDNode>(InVec);
4749 Elt = (Idx < NumElems) ? Idx : Idx - NumElems;
Evan Chengd7ba7ed2007-10-06 08:19:55 +00004750 }
4751 }
Evan Cheng411fc172008-05-13 08:35:03 +00004752 if (!LN0 || !LN0->hasOneUse())
4753 return SDOperand();
4754
4755 unsigned Align = LN0->getAlignment();
4756 if (NewLoad) {
4757 // Check the resultant load doesn't need a higher alignment than the
4758 // original load.
4759 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00004760 getABITypeAlignment(LVT.getTypeForMVT());
Duncan Sands2418bec2008-06-13 19:07:40 +00004761 if (NewAlign > Align ||
4762 (AfterLegalize && !TLI.isOperationLegal(ISD::LOAD, LVT)))
Evan Cheng411fc172008-05-13 08:35:03 +00004763 return SDOperand();
4764 Align = NewAlign;
4765 }
4766
4767 SDOperand NewPtr = LN0->getBasePtr();
4768 if (Elt) {
Duncan Sands92c43912008-06-06 12:08:01 +00004769 unsigned PtrOff = LVT.getSizeInBits() * Elt / 8;
4770 MVT PtrType = NewPtr.getValueType();
Evan Cheng411fc172008-05-13 08:35:03 +00004771 if (TLI.isBigEndian())
Duncan Sands92c43912008-06-06 12:08:01 +00004772 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Evan Cheng411fc172008-05-13 08:35:03 +00004773 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
4774 DAG.getConstant(PtrOff, PtrType));
4775 }
4776 return DAG.getLoad(LVT, LN0->getChain(), NewPtr,
4777 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4778 LN0->isVolatile(), Align);
Evan Chengd7ba7ed2007-10-06 08:19:55 +00004779 }
4780 return SDOperand();
4781}
4782
4783
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004784SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4785 unsigned NumInScalars = N->getNumOperands();
Duncan Sands92c43912008-06-06 12:08:01 +00004786 MVT VT = N->getValueType(0);
4787 unsigned NumElts = VT.getVectorNumElements();
4788 MVT EltType = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004789
4790 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4791 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4792 // at most two distinct vectors, turn this into a shuffle node.
4793 SDOperand VecIn1, VecIn2;
4794 for (unsigned i = 0; i != NumInScalars; ++i) {
4795 // Ignore undef inputs.
4796 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4797
4798 // If this input is something other than a EXTRACT_VECTOR_ELT with a
4799 // constant index, bail out.
4800 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
4801 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4802 VecIn1 = VecIn2 = SDOperand(0, 0);
4803 break;
4804 }
4805
4806 // If the input vector type disagrees with the result of the build_vector,
4807 // we can't make a shuffle.
4808 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
4809 if (ExtractedFromVec.getValueType() != VT) {
4810 VecIn1 = VecIn2 = SDOperand(0, 0);
4811 break;
4812 }
4813
4814 // Otherwise, remember this. We allow up to two distinct input vectors.
4815 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4816 continue;
4817
4818 if (VecIn1.Val == 0) {
4819 VecIn1 = ExtractedFromVec;
4820 } else if (VecIn2.Val == 0) {
4821 VecIn2 = ExtractedFromVec;
4822 } else {
4823 // Too many inputs.
4824 VecIn1 = VecIn2 = SDOperand(0, 0);
4825 break;
4826 }
4827 }
4828
4829 // If everything is good, we can make a shuffle operation.
4830 if (VecIn1.Val) {
4831 SmallVector<SDOperand, 8> BuildVecIndices;
4832 for (unsigned i = 0; i != NumInScalars; ++i) {
4833 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
4834 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
4835 continue;
4836 }
4837
4838 SDOperand Extract = N->getOperand(i);
4839
4840 // If extracting from the first vector, just use the index directly.
4841 if (Extract.getOperand(0) == VecIn1) {
4842 BuildVecIndices.push_back(Extract.getOperand(1));
4843 continue;
4844 }
4845
4846 // Otherwise, use InIdx + VecSize
4847 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Chris Lattner5872a362008-01-17 07:00:52 +00004848 BuildVecIndices.push_back(DAG.getIntPtrConstant(Idx+NumInScalars));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004849 }
4850
4851 // Add count and size info.
Duncan Sands92c43912008-06-06 12:08:01 +00004852 MVT BuildVecVT = MVT::getVectorVT(TLI.getPointerTy(), NumElts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004853
4854 // Return the new VECTOR_SHUFFLE node.
4855 SDOperand Ops[5];
4856 Ops[0] = VecIn1;
4857 if (VecIn2.Val) {
4858 Ops[1] = VecIn2;
4859 } else {
4860 // Use an undef build_vector as input for the second operand.
4861 std::vector<SDOperand> UnOps(NumInScalars,
4862 DAG.getNode(ISD::UNDEF,
4863 EltType));
4864 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
4865 &UnOps[0], UnOps.size());
4866 AddToWorkList(Ops[1].Val);
4867 }
4868 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
4869 &BuildVecIndices[0], BuildVecIndices.size());
4870 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
4871 }
4872
4873 return SDOperand();
4874}
4875
4876SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4877 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4878 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4879 // inputs come from at most two distinct vectors, turn this into a shuffle
4880 // node.
4881
4882 // If we only have one input vector, we don't need to do any concatenation.
4883 if (N->getNumOperands() == 1) {
4884 return N->getOperand(0);
4885 }
4886
4887 return SDOperand();
4888}
4889
4890SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
4891 SDOperand ShufMask = N->getOperand(2);
4892 unsigned NumElts = ShufMask.getNumOperands();
4893
4894 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4895 bool isIdentity = true;
4896 for (unsigned i = 0; i != NumElts; ++i) {
4897 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4898 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4899 isIdentity = false;
4900 break;
4901 }
4902 }
4903 if (isIdentity) return N->getOperand(0);
4904
4905 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4906 isIdentity = true;
4907 for (unsigned i = 0; i != NumElts; ++i) {
4908 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4909 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4910 isIdentity = false;
4911 break;
4912 }
4913 }
4914 if (isIdentity) return N->getOperand(1);
4915
4916 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4917 // needed at all.
4918 bool isUnary = true;
4919 bool isSplat = true;
4920 int VecNum = -1;
4921 unsigned BaseIdx = 0;
4922 for (unsigned i = 0; i != NumElts; ++i)
4923 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4924 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4925 int V = (Idx < NumElts) ? 0 : 1;
4926 if (VecNum == -1) {
4927 VecNum = V;
4928 BaseIdx = Idx;
4929 } else {
4930 if (BaseIdx != Idx)
4931 isSplat = false;
4932 if (VecNum != V) {
4933 isUnary = false;
4934 break;
4935 }
4936 }
4937 }
4938
4939 SDOperand N0 = N->getOperand(0);
4940 SDOperand N1 = N->getOperand(1);
4941 // Normalize unary shuffle so the RHS is undef.
4942 if (isUnary && VecNum == 1)
4943 std::swap(N0, N1);
4944
4945 // If it is a splat, check if the argument vector is a build_vector with
4946 // all scalar elements the same.
4947 if (isSplat) {
4948 SDNode *V = N0.Val;
4949
4950 // If this is a bit convert that changes the element type of the vector but
4951 // not the number of vector elements, look through it. Be careful not to
4952 // look though conversions that change things like v4f32 to v2f64.
4953 if (V->getOpcode() == ISD::BIT_CONVERT) {
4954 SDOperand ConvInput = V->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00004955 if (ConvInput.getValueType().getVectorNumElements() == NumElts)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004956 V = ConvInput.Val;
4957 }
4958
4959 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4960 unsigned NumElems = V->getNumOperands();
4961 if (NumElems > BaseIdx) {
4962 SDOperand Base;
4963 bool AllSame = true;
4964 for (unsigned i = 0; i != NumElems; ++i) {
4965 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4966 Base = V->getOperand(i);
4967 break;
4968 }
4969 }
4970 // Splat of <u, u, u, u>, return <u, u, u, u>
4971 if (!Base.Val)
4972 return N0;
4973 for (unsigned i = 0; i != NumElems; ++i) {
Evan Cheng8d68c2b2007-09-18 21:54:37 +00004974 if (V->getOperand(i) != Base) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004975 AllSame = false;
4976 break;
4977 }
4978 }
4979 // Splat of <x, x, x, x>, return <x, x, x, x>
4980 if (AllSame)
4981 return N0;
4982 }
4983 }
4984 }
4985
4986 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4987 // into an undef.
4988 if (isUnary || N0 == N1) {
4989 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4990 // first operand.
4991 SmallVector<SDOperand, 8> MappedOps;
4992 for (unsigned i = 0; i != NumElts; ++i) {
4993 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4994 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4995 MappedOps.push_back(ShufMask.getOperand(i));
4996 } else {
4997 unsigned NewIdx =
4998 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4999 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
5000 }
5001 }
5002 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
5003 &MappedOps[0], MappedOps.size());
5004 AddToWorkList(ShufMask.Val);
5005 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
5006 N0,
5007 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
5008 ShufMask);
5009 }
5010
5011 return SDOperand();
5012}
5013
5014/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
5015/// an AND to a vector_shuffle with the destination vector and a zero vector.
5016/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
5017/// vector_shuffle V, Zero, <0, 4, 2, 4>
5018SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
5019 SDOperand LHS = N->getOperand(0);
5020 SDOperand RHS = N->getOperand(1);
5021 if (N->getOpcode() == ISD::AND) {
5022 if (RHS.getOpcode() == ISD::BIT_CONVERT)
5023 RHS = RHS.getOperand(0);
5024 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
5025 std::vector<SDOperand> IdxOps;
5026 unsigned NumOps = RHS.getNumOperands();
5027 unsigned NumElts = NumOps;
Duncan Sands92c43912008-06-06 12:08:01 +00005028 MVT EVT = RHS.getValueType().getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005029 for (unsigned i = 0; i != NumElts; ++i) {
5030 SDOperand Elt = RHS.getOperand(i);
5031 if (!isa<ConstantSDNode>(Elt))
5032 return SDOperand();
5033 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
5034 IdxOps.push_back(DAG.getConstant(i, EVT));
5035 else if (cast<ConstantSDNode>(Elt)->isNullValue())
5036 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
5037 else
5038 return SDOperand();
5039 }
5040
5041 // Let's see if the target supports this vector_shuffle.
5042 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
5043 return SDOperand();
5044
5045 // Return the new VECTOR_SHUFFLE node.
Duncan Sands92c43912008-06-06 12:08:01 +00005046 MVT VT = MVT::getVectorVT(EVT, NumElts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005047 std::vector<SDOperand> Ops;
5048 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
5049 Ops.push_back(LHS);
5050 AddToWorkList(LHS.Val);
5051 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
5052 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
5053 &ZeroOps[0], ZeroOps.size()));
5054 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
5055 &IdxOps[0], IdxOps.size()));
5056 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
5057 &Ops[0], Ops.size());
5058 if (VT != LHS.getValueType()) {
5059 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
5060 }
5061 return Result;
5062 }
5063 }
5064 return SDOperand();
5065}
5066
5067/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
5068SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
5069 // After legalize, the target may be depending on adds and other
5070 // binary ops to provide legal ways to construct constants or other
5071 // things. Simplifying them may result in a loss of legality.
5072 if (AfterLegalize) return SDOperand();
5073
Duncan Sands92c43912008-06-06 12:08:01 +00005074 MVT VT = N->getValueType(0);
5075 assert(VT.isVector() && "SimplifyVBinOp only works on vectors!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005076
Duncan Sands92c43912008-06-06 12:08:01 +00005077 MVT EltType = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005078 SDOperand LHS = N->getOperand(0);
5079 SDOperand RHS = N->getOperand(1);
5080 SDOperand Shuffle = XformToShuffleWithZero(N);
5081 if (Shuffle.Val) return Shuffle;
5082
5083 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
5084 // this operation.
5085 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
5086 RHS.getOpcode() == ISD::BUILD_VECTOR) {
5087 SmallVector<SDOperand, 8> Ops;
5088 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
5089 SDOperand LHSOp = LHS.getOperand(i);
5090 SDOperand RHSOp = RHS.getOperand(i);
5091 // If these two elements can't be folded, bail out.
5092 if ((LHSOp.getOpcode() != ISD::UNDEF &&
5093 LHSOp.getOpcode() != ISD::Constant &&
5094 LHSOp.getOpcode() != ISD::ConstantFP) ||
5095 (RHSOp.getOpcode() != ISD::UNDEF &&
5096 RHSOp.getOpcode() != ISD::Constant &&
5097 RHSOp.getOpcode() != ISD::ConstantFP))
5098 break;
5099 // Can't fold divide by zero.
5100 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
5101 N->getOpcode() == ISD::FDIV) {
5102 if ((RHSOp.getOpcode() == ISD::Constant &&
5103 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
5104 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesen7604c1b2007-08-31 23:34:27 +00005105 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005106 break;
5107 }
5108 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
5109 AddToWorkList(Ops.back().Val);
5110 assert((Ops.back().getOpcode() == ISD::UNDEF ||
5111 Ops.back().getOpcode() == ISD::Constant ||
5112 Ops.back().getOpcode() == ISD::ConstantFP) &&
5113 "Scalar binop didn't fold!");
5114 }
5115
5116 if (Ops.size() == LHS.getNumOperands()) {
Duncan Sands92c43912008-06-06 12:08:01 +00005117 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005118 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
5119 }
5120 }
5121
5122 return SDOperand();
5123}
5124
5125SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
5126 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
5127
5128 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
5129 cast<CondCodeSDNode>(N0.getOperand(2))->get());
5130 // If we got a simplified select_cc node back from SimplifySelectCC, then
5131 // break it down into a new SETCC node, and a new SELECT node, and then return
5132 // the SELECT node, since we were called with a SELECT node.
5133 if (SCC.Val) {
5134 // Check to see if we got a select_cc back (to turn into setcc/select).
5135 // Otherwise, just return whatever node we got back, like fabs.
5136 if (SCC.getOpcode() == ISD::SELECT_CC) {
5137 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
5138 SCC.getOperand(0), SCC.getOperand(1),
5139 SCC.getOperand(4));
5140 AddToWorkList(SETCC.Val);
5141 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
5142 SCC.getOperand(3), SETCC);
5143 }
5144 return SCC;
5145 }
5146 return SDOperand();
5147}
5148
5149/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
5150/// are the two values being selected between, see if we can simplify the
5151/// select. Callers of this should assume that TheSelect is deleted if this
5152/// returns true. As such, they should return the appropriate thing (e.g. the
5153/// node) back to the top-level of the DAG combiner loop to avoid it being
5154/// looked at.
5155///
5156bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
5157 SDOperand RHS) {
5158
5159 // If this is a select from two identical things, try to pull the operation
5160 // through the select.
5161 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
5162 // If this is a load and the token chain is identical, replace the select
5163 // of two loads with a load through a select of the address to load from.
5164 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
5165 // constants have been dropped into the constant pool.
5166 if (LHS.getOpcode() == ISD::LOAD &&
Duncan Sands2418bec2008-06-13 19:07:40 +00005167 // Do not let this transformation reduce the number of volatile loads.
5168 !cast<LoadSDNode>(LHS)->isVolatile() &&
5169 !cast<LoadSDNode>(RHS)->isVolatile() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005170 // Token chains must be identical.
5171 LHS.getOperand(0) == RHS.getOperand(0)) {
5172 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
5173 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
5174
5175 // If this is an EXTLOAD, the VT's must match.
Dan Gohman9a4c92c2008-01-30 00:15:11 +00005176 if (LLD->getMemoryVT() == RLD->getMemoryVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005177 // FIXME: this conflates two src values, discarding one. This is not
5178 // the right thing to do, but nothing uses srcvalues now. When they do,
5179 // turn SrcValue into a list of locations.
5180 SDOperand Addr;
5181 if (TheSelect->getOpcode() == ISD::SELECT) {
5182 // Check that the condition doesn't reach either load. If so, folding
5183 // this will induce a cycle into the DAG.
Evan Chengd9387682008-03-04 00:41:45 +00005184 if (!LLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5185 !RLD->isPredecessorOf(TheSelect->getOperand(0).Val)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005186 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
5187 TheSelect->getOperand(0), LLD->getBasePtr(),
5188 RLD->getBasePtr());
5189 }
5190 } else {
5191 // Check that the condition doesn't reach either load. If so, folding
5192 // this will induce a cycle into the DAG.
Evan Chengd9387682008-03-04 00:41:45 +00005193 if (!LLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5194 !RLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5195 !LLD->isPredecessorOf(TheSelect->getOperand(1).Val) &&
5196 !RLD->isPredecessorOf(TheSelect->getOperand(1).Val)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005197 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
5198 TheSelect->getOperand(0),
5199 TheSelect->getOperand(1),
5200 LLD->getBasePtr(), RLD->getBasePtr(),
5201 TheSelect->getOperand(4));
5202 }
5203 }
5204
5205 if (Addr.Val) {
5206 SDOperand Load;
5207 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
5208 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
5209 Addr,LLD->getSrcValue(),
5210 LLD->getSrcValueOffset(),
5211 LLD->isVolatile(),
5212 LLD->getAlignment());
5213 else {
5214 Load = DAG.getExtLoad(LLD->getExtensionType(),
5215 TheSelect->getValueType(0),
5216 LLD->getChain(), Addr, LLD->getSrcValue(),
5217 LLD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00005218 LLD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005219 LLD->isVolatile(),
5220 LLD->getAlignment());
5221 }
5222 // Users of the select now use the result of the load.
5223 CombineTo(TheSelect, Load);
5224
5225 // Users of the old loads now use the new load's chain. We know the
5226 // old-load value is dead now.
5227 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
5228 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
5229 return true;
5230 }
5231 }
5232 }
5233 }
5234
5235 return false;
5236}
5237
5238SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
5239 SDOperand N2, SDOperand N3,
5240 ISD::CondCode CC, bool NotExtCompare) {
5241
Duncan Sands92c43912008-06-06 12:08:01 +00005242 MVT VT = N2.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005243 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
5244 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
5245 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
5246
5247 // Determine if the condition we're dealing with is constant
Scott Michel502151f2008-03-10 15:42:14 +00005248 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultType(N0), N0, N1, CC, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005249 if (SCC.Val) AddToWorkList(SCC.Val);
5250 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
5251
5252 // fold select_cc true, x, y -> x
Dan Gohman9d24dc72008-03-13 22:13:53 +00005253 if (SCCC && !SCCC->isNullValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005254 return N2;
5255 // fold select_cc false, x, y -> y
Dan Gohman9d24dc72008-03-13 22:13:53 +00005256 if (SCCC && SCCC->isNullValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005257 return N3;
5258
5259 // Check to see if we can simplify the select into an fabs node
5260 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
5261 // Allow either -0.0 or 0.0
Dale Johannesen7f2c1d12007-08-25 22:10:57 +00005262 if (CFP->getValueAPF().isZero()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005263 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
5264 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
5265 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
5266 N2 == N3.getOperand(0))
5267 return DAG.getNode(ISD::FABS, VT, N0);
5268
5269 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
5270 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
5271 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
5272 N2.getOperand(0) == N3)
5273 return DAG.getNode(ISD::FABS, VT, N3);
5274 }
5275 }
5276
5277 // Check to see if we can perform the "gzip trick", transforming
5278 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
5279 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Duncan Sands92c43912008-06-06 12:08:01 +00005280 N0.getValueType().isInteger() &&
5281 N2.getValueType().isInteger() &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00005282 (N1C->isNullValue() || // (a < 0) ? b : 0
5283 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Duncan Sands92c43912008-06-06 12:08:01 +00005284 MVT XType = N0.getValueType();
5285 MVT AType = N2.getValueType();
Duncan Sandsec142ee2008-06-08 20:54:56 +00005286 if (XType.bitsGE(AType)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005287 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
5288 // single-bit constant.
Dan Gohman9d24dc72008-03-13 22:13:53 +00005289 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
5290 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands92c43912008-06-06 12:08:01 +00005291 ShCtV = XType.getSizeInBits()-ShCtV-1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005292 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
5293 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
5294 AddToWorkList(Shift.Val);
Duncan Sandsec142ee2008-06-08 20:54:56 +00005295 if (XType.bitsGT(AType)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005296 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
5297 AddToWorkList(Shift.Val);
5298 }
5299 return DAG.getNode(ISD::AND, AType, Shift, N2);
5300 }
5301 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
Duncan Sands92c43912008-06-06 12:08:01 +00005302 DAG.getConstant(XType.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005303 TLI.getShiftAmountTy()));
5304 AddToWorkList(Shift.Val);
Duncan Sandsec142ee2008-06-08 20:54:56 +00005305 if (XType.bitsGT(AType)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005306 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
5307 AddToWorkList(Shift.Val);
5308 }
5309 return DAG.getNode(ISD::AND, AType, Shift, N2);
5310 }
5311 }
5312
5313 // fold select C, 16, 0 -> shl C, 4
Dan Gohman9d24dc72008-03-13 22:13:53 +00005314 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005315 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
5316
5317 // If the caller doesn't want us to simplify this into a zext of a compare,
5318 // don't do it.
Dan Gohman9d24dc72008-03-13 22:13:53 +00005319 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005320 return SDOperand();
5321
5322 // Get a SetCC of the condition
5323 // FIXME: Should probably make sure that setcc is legal if we ever have a
5324 // target where it isn't.
5325 SDOperand Temp, SCC;
5326 // cast from setcc result type to select result type
5327 if (AfterLegalize) {
Scott Michel502151f2008-03-10 15:42:14 +00005328 SCC = DAG.getSetCC(TLI.getSetCCResultType(N0), N0, N1, CC);
Duncan Sandsec142ee2008-06-08 20:54:56 +00005329 if (N2.getValueType().bitsLT(SCC.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005330 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
5331 else
5332 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
5333 } else {
5334 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
5335 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
5336 }
5337 AddToWorkList(SCC.Val);
5338 AddToWorkList(Temp.Val);
5339
Dan Gohman9d24dc72008-03-13 22:13:53 +00005340 if (N2C->getAPIntValue() == 1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005341 return Temp;
5342 // shl setcc result by log2 n2c
5343 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
Dan Gohman9d24dc72008-03-13 22:13:53 +00005344 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005345 TLI.getShiftAmountTy()));
5346 }
5347
5348 // Check to see if this is the equivalent of setcc
5349 // FIXME: Turn all of these into setcc if setcc if setcc is legal
5350 // otherwise, go ahead with the folds.
Dan Gohman9d24dc72008-03-13 22:13:53 +00005351 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Duncan Sands92c43912008-06-06 12:08:01 +00005352 MVT XType = N0.getValueType();
Scott Michel502151f2008-03-10 15:42:14 +00005353 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(N0))) {
5354 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultType(N0), N0, N1, CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005355 if (Res.getValueType() != VT)
5356 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
5357 return Res;
5358 }
5359
5360 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
5361 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
5362 TLI.isOperationLegal(ISD::CTLZ, XType)) {
5363 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
5364 return DAG.getNode(ISD::SRL, XType, Ctlz,
Duncan Sands92c43912008-06-06 12:08:01 +00005365 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005366 TLI.getShiftAmountTy()));
5367 }
5368 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
5369 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
5370 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
5371 N0);
5372 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
5373 DAG.getConstant(~0ULL, XType));
5374 return DAG.getNode(ISD::SRL, XType,
5375 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
Duncan Sands92c43912008-06-06 12:08:01 +00005376 DAG.getConstant(XType.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005377 TLI.getShiftAmountTy()));
5378 }
5379 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
5380 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
5381 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
Duncan Sands92c43912008-06-06 12:08:01 +00005382 DAG.getConstant(XType.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005383 TLI.getShiftAmountTy()));
5384 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
5385 }
5386 }
5387
5388 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
5389 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5390 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
5391 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
Duncan Sands92c43912008-06-06 12:08:01 +00005392 N2.getOperand(0) == N1 && N0.getValueType().isInteger()) {
5393 MVT XType = N0.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005394 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
Duncan Sands92c43912008-06-06 12:08:01 +00005395 DAG.getConstant(XType.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005396 TLI.getShiftAmountTy()));
5397 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5398 AddToWorkList(Shift.Val);
5399 AddToWorkList(Add.Val);
5400 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5401 }
5402 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
5403 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5404 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
5405 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
5406 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Duncan Sands92c43912008-06-06 12:08:01 +00005407 MVT XType = N0.getValueType();
5408 if (SubC->isNullValue() && XType.isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005409 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
Duncan Sands92c43912008-06-06 12:08:01 +00005410 DAG.getConstant(XType.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005411 TLI.getShiftAmountTy()));
5412 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5413 AddToWorkList(Shift.Val);
5414 AddToWorkList(Add.Val);
5415 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5416 }
5417 }
5418 }
5419
5420 return SDOperand();
5421}
5422
5423/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Duncan Sands92c43912008-06-06 12:08:01 +00005424SDOperand DAGCombiner::SimplifySetCC(MVT VT, SDOperand N0,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005425 SDOperand N1, ISD::CondCode Cond,
5426 bool foldBooleans) {
5427 TargetLowering::DAGCombinerInfo
5428 DagCombineInfo(DAG, !AfterLegalize, false, this);
5429 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
5430}
5431
5432/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
5433/// return a DAG expression to select that will generate the same value by
5434/// multiplying by a magic number. See:
5435/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5436SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
5437 std::vector<SDNode*> Built;
5438 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
5439
5440 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
5441 ii != ee; ++ii)
5442 AddToWorkList(*ii);
5443 return S;
5444}
5445
5446/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
5447/// return a DAG expression to select that will generate the same value by
5448/// multiplying by a magic number. See:
5449/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5450SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
5451 std::vector<SDNode*> Built;
5452 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
5453
5454 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
5455 ii != ee; ++ii)
5456 AddToWorkList(*ii);
5457 return S;
5458}
5459
5460/// FindBaseOffset - Return true if base is known not to alias with anything
5461/// but itself. Provides base object and offset as results.
5462static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5463 // Assume it is a primitive operation.
5464 Base = Ptr; Offset = 0;
5465
5466 // If it's an adding a simple constant then integrate the offset.
5467 if (Base.getOpcode() == ISD::ADD) {
5468 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5469 Base = Base.getOperand(0);
5470 Offset += C->getValue();
5471 }
5472 }
5473
5474 // If it's any of the following then it can't alias with anything but itself.
5475 return isa<FrameIndexSDNode>(Base) ||
5476 isa<ConstantPoolSDNode>(Base) ||
5477 isa<GlobalAddressSDNode>(Base);
5478}
5479
5480/// isAlias - Return true if there is any possibility that the two addresses
5481/// overlap.
5482bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5483 const Value *SrcValue1, int SrcValueOffset1,
5484 SDOperand Ptr2, int64_t Size2,
5485 const Value *SrcValue2, int SrcValueOffset2)
5486{
5487 // If they are the same then they must be aliases.
5488 if (Ptr1 == Ptr2) return true;
5489
5490 // Gather base node and offset information.
5491 SDOperand Base1, Base2;
5492 int64_t Offset1, Offset2;
5493 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5494 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5495
5496 // If they have a same base address then...
5497 if (Base1 == Base2) {
5498 // Check to see if the addresses overlap.
5499 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5500 }
5501
5502 // If we know both bases then they can't alias.
5503 if (KnownBase1 && KnownBase2) return false;
5504
5505 if (CombinerGlobalAA) {
5506 // Use alias analysis information.
Dan Gohmane142c2e2007-08-27 16:32:11 +00005507 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5508 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5509 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005510 AliasAnalysis::AliasResult AAResult =
5511 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
5512 if (AAResult == AliasAnalysis::NoAlias)
5513 return false;
5514 }
5515
5516 // Otherwise we have to assume they alias.
5517 return true;
5518}
5519
5520/// FindAliasInfo - Extracts the relevant alias information from the memory
5521/// node. Returns true if the operand was a load.
5522bool DAGCombiner::FindAliasInfo(SDNode *N,
5523 SDOperand &Ptr, int64_t &Size,
5524 const Value *&SrcValue, int &SrcValueOffset) {
5525 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5526 Ptr = LD->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +00005527 Size = LD->getMemoryVT().getSizeInBits() >> 3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005528 SrcValue = LD->getSrcValue();
5529 SrcValueOffset = LD->getSrcValueOffset();
5530 return true;
5531 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
5532 Ptr = ST->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +00005533 Size = ST->getMemoryVT().getSizeInBits() >> 3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005534 SrcValue = ST->getSrcValue();
5535 SrcValueOffset = ST->getSrcValueOffset();
5536 } else {
5537 assert(0 && "FindAliasInfo expected a memory operand");
5538 }
5539
5540 return false;
5541}
5542
5543/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5544/// looking for aliasing nodes and adding them to the Aliases vector.
5545void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
5546 SmallVector<SDOperand, 8> &Aliases) {
5547 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
5548 std::set<SDNode *> Visited; // Visited node set.
5549
5550 // Get alias information for node.
5551 SDOperand Ptr;
5552 int64_t Size;
5553 const Value *SrcValue;
5554 int SrcValueOffset;
5555 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
5556
5557 // Starting off.
5558 Chains.push_back(OriginalChain);
5559
5560 // Look at each chain and determine if it is an alias. If so, add it to the
5561 // aliases list. If not, then continue up the chain looking for the next
5562 // candidate.
5563 while (!Chains.empty()) {
5564 SDOperand Chain = Chains.back();
5565 Chains.pop_back();
5566
5567 // Don't bother if we've been before.
5568 if (Visited.find(Chain.Val) != Visited.end()) continue;
5569 Visited.insert(Chain.Val);
5570
5571 switch (Chain.getOpcode()) {
5572 case ISD::EntryToken:
5573 // Entry token is ideal chain operand, but handled in FindBetterChain.
5574 break;
5575
5576 case ISD::LOAD:
5577 case ISD::STORE: {
5578 // Get alias information for Chain.
5579 SDOperand OpPtr;
5580 int64_t OpSize;
5581 const Value *OpSrcValue;
5582 int OpSrcValueOffset;
5583 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5584 OpSrcValue, OpSrcValueOffset);
5585
5586 // If chain is alias then stop here.
5587 if (!(IsLoad && IsOpLoad) &&
5588 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5589 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
5590 Aliases.push_back(Chain);
5591 } else {
5592 // Look further up the chain.
5593 Chains.push_back(Chain.getOperand(0));
5594 // Clean up old chain.
5595 AddToWorkList(Chain.Val);
5596 }
5597 break;
5598 }
5599
5600 case ISD::TokenFactor:
5601 // We have to check each of the operands of the token factor, so we queue
5602 // then up. Adding the operands to the queue (stack) in reverse order
5603 // maintains the original order and increases the likelihood that getNode
5604 // will find a matching token factor (CSE.)
5605 for (unsigned n = Chain.getNumOperands(); n;)
5606 Chains.push_back(Chain.getOperand(--n));
5607 // Eliminate the token factor if we can.
5608 AddToWorkList(Chain.Val);
5609 break;
5610
5611 default:
5612 // For all other instructions we will just have to take what we can get.
5613 Aliases.push_back(Chain);
5614 break;
5615 }
5616 }
5617}
5618
5619/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5620/// for a better chain (aliasing node.)
5621SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5622 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
5623
5624 // Accumulate all the aliases to this node.
5625 GatherAllAliases(N, OldChain, Aliases);
5626
5627 if (Aliases.size() == 0) {
5628 // If no operands then chain to entry token.
5629 return DAG.getEntryNode();
5630 } else if (Aliases.size() == 1) {
5631 // If a single operand then chain to it. We don't need to revisit it.
5632 return Aliases[0];
5633 }
5634
5635 // Construct a custom tailored token factor.
5636 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5637 &Aliases[0], Aliases.size());
5638
5639 // Make sure the old chain gets cleaned up.
5640 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5641
5642 return NewChain;
5643}
5644
5645// SelectionDAG::Combine - This is the entry point for the file.
5646//
5647void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
5648 if (!RunningAfterLegalize && ViewDAGCombine1)
5649 viewGraph();
5650 if (RunningAfterLegalize && ViewDAGCombine2)
5651 viewGraph();
5652 /// run - This is the main entry point to this class.
5653 ///
5654 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
5655}